Contract
0x7116dce05810cfa0bf9cef29f42ef955b81bed54
1
Contract Overview
Balance:
0 FTM
Token:
My Name Tag:
Not Available
TokenTracker:
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x7c372c1c2cf9f595c15f28d6527117a1adf018ce6dff94163bbe891972729ee9 | 8601695 | 432 days 23 hrs ago | 0xaf1fd6827c3d388a8cdea8eb259cf3a775ab6594 | Contract Creation | 0 FTM |
[ Download CSV Export ]
Contract Name:
MiniMarket
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2022-04-01 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/IERC1155Receiver.sol pragma solidity ^0.8.0; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/IERC1155.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol pragma solidity ^0.8.0; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/ERC1155.sol pragma solidity ^0.8.0; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } } /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } } /** * @dev Extension of ERC1155 that adds tracking of total supply per id. * * Useful for scenarios where Fungible and Non-fungible tokens have to be * clearly identified. Note: While a totalSupply of 1 might mean the * corresponding is an NFT, there is no guarantees that no other token with the * same id are not going to be minted. */ abstract contract ERC1155Supply is ERC1155 { mapping(uint256 => uint256) private _totalSupply; /** * @dev Total amount of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Indicates whether any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return ERC1155Supply.totalSupply(id) > 0; } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 supply = _totalSupply[id]; require(supply >= amount, "ERC1155: burn amount exceeds totalSupply"); unchecked { _totalSupply[id] = supply - amount; } } } } } /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } pragma solidity ^0.8.0; interface IFusion { function fusionLevelCheck(uint256 tokenId) external returns(uint256 level); } interface IOwner { function ownerOf(uint256 tokenId) external returns (address); } contract MiniMarket is ERC1155Supply, Ownable, ReentrancyGuard { using SafeERC20 for IERC20; string public name; string public symbol; uint256 public constant MiniCandy = 0; uint256 public constant unBlacklist = 1; uint256 public constant jobLvlUp = 2; uint256 public constant fusionLvlUp1 = 3; uint256 public constant fusionLvlUp2 = 4; uint256 public constant fusionLvlUp3 = 5; uint256 public constant fusionLvlUp4 = 6; IERC20 public MvGLD; address public MiniFren; address public Chilla; address public Guinea; address public Land; mapping(uint => string) public tokenURI; mapping(uint256 => mapping(uint256 => bool)) public claimedFusion; mapping (uint256 => uint256) public genesisLevelChilla; mapping (uint256 => uint256) public genesisLevelGuinea; mapping (uint256 => uint256) public genesisLevelLand; constructor(IERC20 _MvGLD, address _MiniFren, address _Chilla, address _Guinea, address _Land) ERC1155("") { name = "MiniVerse Market"; symbol = "MvMarket"; MvGLD = _MvGLD; MiniFren = _MiniFren; Chilla = _Chilla; Guinea = _Guinea; Land = _Land; } function burnNew( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatchNew( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } function ownerMint(address _to, uint256 _id, uint _amount) public onlyOwner { _mint(_to, _id, _amount, ""); } function mintMiniCandy(uint256 _amount) public nonReentrant() { MvGLD.safeTransferFrom(msg.sender, address(this), 6 ether * _amount); _mint(msg.sender, MiniCandy, _amount, ""); } function mintUnBlacklist(uint256 _amount) public nonReentrant() { MvGLD.safeTransferFrom(msg.sender, address(this), 10 ether * _amount); _mint(msg.sender, unBlacklist, _amount, ""); } function mintJobLevelUp(uint256 _amount) public nonReentrant() { MvGLD.safeTransferFrom(msg.sender, address(this), 20 ether * _amount); _mint(msg.sender, jobLvlUp, _amount, ""); } function mintFusionLevelUp(uint256 _tokenId) public nonReentrant() { require(IOwner(MiniFren).ownerOf(_tokenId) == msg.sender, "Not tokenId owner"); if(IFusion(MiniFren).fusionLevelCheck(_tokenId) == 1){ require(claimedFusion[_tokenId][1] == false, "Already Claimed Level 1"); claimedFusion[_tokenId][1] = true; _mint(msg.sender, fusionLvlUp1, _tokenId, ""); }else if(IFusion(MiniFren).fusionLevelCheck(_tokenId) == 2){ require(claimedFusion[_tokenId][2] == false, "Already Claimed Level 2"); claimedFusion[_tokenId][2] = true; _mint(msg.sender, fusionLvlUp1, _tokenId, ""); }else if(IFusion(MiniFren).fusionLevelCheck(_tokenId) == 3){ require(claimedFusion[_tokenId][3] == false, "Already Claimed Level 3"); claimedFusion[_tokenId][3] = true; _mint(msg.sender, fusionLvlUp2, _tokenId, ""); }else if(IFusion(MiniFren).fusionLevelCheck(_tokenId) == 4){ require(claimedFusion[_tokenId][4] == false, "Already Claimed Level 4"); claimedFusion[_tokenId][4] = true; _mint(msg.sender, fusionLvlUp2, _tokenId, ""); }else if(IFusion(MiniFren).fusionLevelCheck(_tokenId) == 5){ require(claimedFusion[_tokenId][5] == false, "Already Claimed Level 5"); claimedFusion[_tokenId][5] = true; _mint(msg.sender, fusionLvlUp3, _tokenId, ""); }else if(IFusion(MiniFren).fusionLevelCheck(_tokenId) == 6){ require(claimedFusion[_tokenId][6] == false, "Already Claimed Level 6"); claimedFusion[_tokenId][6] = true; _mint(msg.sender, fusionLvlUp3, _tokenId, ""); }else if(IFusion(MiniFren).fusionLevelCheck(_tokenId) == 7){ require(claimedFusion[_tokenId][7] == false, "Already Claimed Level 7"); claimedFusion[_tokenId][7] = true; _mint(msg.sender, fusionLvlUp3, _tokenId, ""); }else if(IFusion(MiniFren).fusionLevelCheck(_tokenId) == 8){ require(claimedFusion[_tokenId][8] == false, "Already Claimed Level 8"); claimedFusion[_tokenId][8] = true; _mint(msg.sender, fusionLvlUp3, _tokenId, ""); }else if(IFusion(MiniFren).fusionLevelCheck(_tokenId) == 9){ require(claimedFusion[_tokenId][9] == false, "Already Claimed Level 9"); claimedFusion[_tokenId][9] = true; _mint(msg.sender, fusionLvlUp4, _tokenId, ""); }else if(IFusion(MiniFren).fusionLevelCheck(_tokenId) == 10){ require(claimedFusion[_tokenId][10] == false, "Already Claimed Level 10"); claimedFusion[_tokenId][10] = true; _mint(msg.sender, fusionLvlUp4, _tokenId, ""); }else if(IFusion(MiniFren).fusionLevelCheck(_tokenId) == 11){ require(claimedFusion[_tokenId][11] == false, "Already Claimed Level 11"); claimedFusion[_tokenId][11] = true; _mint(msg.sender, fusionLvlUp4, _tokenId, ""); }else if(IFusion(MiniFren).fusionLevelCheck(_tokenId) == 12){ require(claimedFusion[_tokenId][12] == false, "Already Claimed Level 12"); claimedFusion[_tokenId][12] = true; _mint(msg.sender, fusionLvlUp4, _tokenId, ""); }else{ revert("Reverted Not Fused"); } } function genesisLevelUpChilla(uint256 _tokenId) internal { require(IOwner(Chilla).ownerOf(_tokenId) == msg.sender, "Not tokenId owner"); if (genesisLevelChilla[_tokenId] == 12){ revert("Max Level"); }else if (genesisLevelChilla[_tokenId] < 2) { lootBurn(msg.sender, fusionLvlUp1, 1); genesisLevelChilla[_tokenId]++; }else if (genesisLevelChilla[_tokenId] < 4) { lootBurn(msg.sender, fusionLvlUp2, 1); genesisLevelChilla[_tokenId]++; }else if (genesisLevelChilla[_tokenId] < 8) { lootBurn(msg.sender, fusionLvlUp3, 1); genesisLevelChilla[_tokenId]++; }else { lootBurn(msg.sender, fusionLvlUp4, 1); genesisLevelChilla[_tokenId]++; } } function genesisLevelUpChillaInterface(uint256 _tokenId) public nonReentrant { genesisLevelUpChilla(_tokenId); } function genesisLevelUpGuinea(uint256 _tokenId) internal { require(IOwner(Guinea).ownerOf(_tokenId) == msg.sender, "Not tokenId owner"); if (genesisLevelGuinea[_tokenId] == 12){ revert("Max Level"); }else if (genesisLevelGuinea[_tokenId] < 2) { lootBurn(msg.sender, fusionLvlUp1, 1); genesisLevelGuinea[_tokenId]++; }else if (genesisLevelGuinea[_tokenId] < 4) { lootBurn(msg.sender, fusionLvlUp2, 1); genesisLevelGuinea[_tokenId]++; }else if (genesisLevelGuinea[_tokenId] < 8) { lootBurn(msg.sender, fusionLvlUp3, 1); genesisLevelGuinea[_tokenId]++; }else { lootBurn(msg.sender, fusionLvlUp4, 1); genesisLevelGuinea[_tokenId]++; } } function genesisLevelUpGuineaInterface(uint256 _tokenId) public nonReentrant { genesisLevelUpGuinea(_tokenId); } function genesisLevelUpLand(uint256 _tokenId) internal { require(IOwner(Land).ownerOf(_tokenId) == msg.sender, "Not tokenId owner"); if (genesisLevelLand[_tokenId] == 3){ revert("Max Level"); }else { lootBurn(msg.sender, fusionLvlUp1, 1); genesisLevelLand[_tokenId]++; } } function genesisLevelUpLandInterface(uint256 _tokenId) public nonReentrant { genesisLevelUpLand(_tokenId); } function lootBurn(address owner, uint256 _id, uint _amount) public { burnNew(owner, _id, _amount); } // view function uri(uint _id) public override view returns (string memory) { return tokenURI[_id]; } function fusionClaimed(uint256 _tokenId, uint256 _level) public view returns (bool){ return claimedFusion[_tokenId][_level]; } function genesisLevelCheckChilla(uint256 tokenId) public view returns(uint256 level){ return genesisLevelChilla[tokenId]; } function genesisLevelCheckGuinea(uint256 tokenId) public view returns(uint256 level){ return genesisLevelGuinea[tokenId]; } function genesisLevelCheckLand(uint256 tokenId) public view returns(uint256 level){ return genesisLevelLand[tokenId]; } // only owner function setURI(uint _id, string memory _uri) external onlyOwner { tokenURI[_id] = _uri; emit URI(_uri, _id); } function setFren(address _address) external onlyOwner { MiniFren = _address; } function setChilla(address _address) external onlyOwner { Chilla = _address; } function setGuinea(address _address) external onlyOwner { Guinea = _address; } function setMvGld(IERC20 _address) external onlyOwner { MvGLD = _address; } function levelGuinea(uint256 tokenId, uint256 level) public onlyOwner{ genesisLevelGuinea[tokenId] = level; } function levelChilla(uint256 tokenId, uint256 level) public onlyOwner{ genesisLevelChilla[tokenId] = level; } function levelLand(uint256 tokenId, uint256 level) public onlyOwner{ genesisLevelLand[tokenId] = level; } function withdrawTokens(address _erc20Address, uint256 _amount) external onlyOwner() { IERC20(_erc20Address).safeTransfer(msg.sender, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"_MvGLD","type":"address"},{"internalType":"address","name":"_MiniFren","type":"address"},{"internalType":"address","name":"_Chilla","type":"address"},{"internalType":"address","name":"_Guinea","type":"address"},{"internalType":"address","name":"_Land","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"Chilla","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Guinea","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Land","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MiniCandy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MiniFren","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MvGLD","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatchNew","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnNew","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedFusion","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_level","type":"uint256"}],"name":"fusionClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fusionLvlUp1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fusionLvlUp2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fusionLvlUp3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fusionLvlUp4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"genesisLevelCheckChilla","outputs":[{"internalType":"uint256","name":"level","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"genesisLevelCheckGuinea","outputs":[{"internalType":"uint256","name":"level","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"genesisLevelCheckLand","outputs":[{"internalType":"uint256","name":"level","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"genesisLevelChilla","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"genesisLevelGuinea","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"genesisLevelLand","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"genesisLevelUpChillaInterface","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"genesisLevelUpGuineaInterface","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"genesisLevelUpLandInterface","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"jobLvlUp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"level","type":"uint256"}],"name":"levelChilla","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"level","type":"uint256"}],"name":"levelGuinea","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"level","type":"uint256"}],"name":"levelLand","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"lootBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mintFusionLevelUp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintJobLevelUp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintMiniCandy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintUnBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"address","name":"_address","type":"address"}],"name":"setChilla","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setFren","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setGuinea","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_address","type":"address"}],"name":"setMvGld","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","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":"","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unBlacklist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20Address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620043e4380380620043e483398101604081905262000034916200023f565b6040805160208101909152600081526200004e816200012e565b506200005a3362000147565b60016005556040805180820190915260108082526f135a5b9a55995c9cd94813585c9ad95d60821b6020909201918252620000989160069162000199565b5060408051808201909152600880825267135d93585c9ad95d60c21b6020909201918252620000ca9160079162000199565b50600880546001600160a01b03199081166001600160a01b039788161790915560098054821695871695909517909455600a8054851693861693909317909255600b80548416918516919091179055600c8054909216921691909117905562000315565b80516200014390600290602084019062000199565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a790620002bf565b90600052602060002090601f016020900481019282620001cb576000855562000216565b82601f10620001e657805160ff191683800117855562000216565b8280016001018555821562000216579182015b8281111562000216578251825591602001919060010190620001f9565b506200022492915062000228565b5090565b5b8082111562000224576000815560010162000229565b600080600080600060a086880312156200025857600080fd5b85516200026581620002fc565b60208701519095506200027881620002fc565b60408701519094506200028b81620002fc565b60608701519093506200029e81620002fc565b6080870151909250620002b181620002fc565b809150509295509295909350565b600181811c90821680620002d457607f821691505b60208210811415620002f657634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b03811681146200031257600080fd5b50565b6140bf80620003256000396000f3fe608060405234801561001057600080fd5b50600436106103775760003560e01c8063862440e2116101d3578063c94db8f411610104578063e0b361a3116100a2578063e985e9c51161007c578063e985e9c5146107d2578063f242432a1461080e578063f2fde38b14610821578063f86c872c1461083457600080fd5b8063e0b361a314610799578063e4510a6d146107ac578063e694085a146107bf57600080fd5b8063d1cefc54116100de578063d1cefc5414610756578063d472cc911461075e578063d4d35a0e14610771578063d6d6439b1461077957600080fd5b8063c94db8f414610728578063cb7242731461073b578063ce65851f1461074e57600080fd5b8063af4218dc11610171578063bd85b0391161014b578063bd85b039146106cf578063c4eecf9f146106ef578063c57a746514610702578063c87b56dd1461071557600080fd5b8063af4218dc14610694578063b177bad8146106b4578063b786282f146106bc57600080fd5b806395d89b41116101ad57806395d89b41146106435780639f0654991461064b578063a22cb46514610653578063a3a194611461066657600080fd5b8063862440e21461060c5780638ae91f821461061f5780638da5cb5b1461063257600080fd5b806337012df5116102ad5780634f558e791161024b57806376aa23d21161022557806376aa23d2146105a657806376e35161146105b9578063844705c6146105d9578063853e917e146105ec57600080fd5b80634f558e7914610569578063715018a61461058b57806371d3d0091461059357600080fd5b806343015eb21161028757806343015eb21461051b578063440ea2871461052e5780634d0af905146105365780634e1273f41461054957600080fd5b806337012df5146104ed578063388b9fe0146104f55780633b5828fc1461050857600080fd5b806315ca897f1161031a5780632d0d0578116102f45780632d0d0578146104865780632eb2c2d61461049957806330ab78be146104ac5780633597c7ac146104da57600080fd5b806315ca897f146104405780632671cdf01461045357806329b548ab1461046657600080fd5b806306b091f91161035657806306b091f9146103f057806306fdde03146104055780630e89341c1461041a57806313d5118a1461042d57600080fd5b8062fdd58e1461037c57806301f909c4146103a257806301ffc9a7146103cd575b600080fd5b61038f61038a366004613816565b610854565b6040519081526020015b60405180910390f35b6009546103b5906001600160a01b031681565b6040516001600160a01b039091168152602001610399565b6103e06103db366004613967565b6108eb565b6040519015158152602001610399565b6104036103fe366004613816565b61093d565b005b61040d61097f565b6040516103999190613ba2565b61040d6104283660046139a1565b610a0d565b61040361043b3660046139a1565b610aaf565b600c546103b5906001600160a01b031681565b610403610461366004613772565b610ae8565b61038f6104743660046139a1565b60106020526000908152604090205481565b600a546103b5906001600160a01b031681565b6104036104a736600461365b565b610b30565b6103e06104ba366004613a24565b600e60209081526000928352604080842090915290825290205460ff1681565b6104036104e83660046139a1565b610bc7565b61038f600481565b610403610503366004613842565b611b17565b6104036105163660046135e8565b611b5c565b6008546103b5906001600160a01b031681565b61038f600281565b610403610544366004613a24565b611ba8565b61055c610557366004613877565b611be4565b6040516103999190613b61565b6103e06105773660046139a1565b600090815260036020526040902054151590565b610403611d0e565b6104036105a13660046135e8565b611d44565b600b546103b5906001600160a01b031681565b61038f6105c73660046139a1565b6000908152600f602052604090205490565b6104036105e73660046139a1565b611d90565b61038f6105fa3660046139a1565b60009081526011602052604090205490565b61040361061a3660046139d3565b611e00565b61040361062d3660046139a1565b611e86565b6004546001600160a01b03166103b5565b61040d611ee1565b61038f600381565b6104036106613660046137e8565b611eee565b6103e0610674366004613a24565b6000918252600e6020908152604080842092845291905290205460ff1690565b61038f6106a23660046139a1565b60116020526000908152604090205481565b61038f600081565b6104036106ca366004613a24565b611ef9565b61038f6106dd3660046139a1565b60009081526003602052604090205490565b6104036106fd3660046135e8565b611f35565b6104036107103660046139a1565b611f81565b61040d6107233660046139a1565b611fb2565b610403610736366004613a24565b611fcb565b610403610749366004613842565b612007565b61038f600581565b61038f600681565b61040361076c3660046139a1565b612012565b61038f600181565b61038f6107873660046139a1565b600f6020526000908152604090205481565b6104036107a7366004613842565b61206d565b6104036107ba3660046139a1565b6120b0565b6104036107cd3660046135e8565b6120e1565b6103e06107e0366004613622565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61040361081c366004613709565b61212d565b61040361082f3660046135e8565b612172565b61038f6108423660046139a1565b60009081526010602052604090205490565b60006001600160a01b0383166108c55760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061091c57506001600160e01b031982166303a24d0760e21b145b8061093757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6004546001600160a01b031633146109675760405162461bcd60e51b81526004016108bc90613daa565b61097b6001600160a01b038316338361220d565b5050565b6006805461098c90613ee5565b80601f01602080910402602001604051908101604052809291908181526020018280546109b890613ee5565b8015610a055780601f106109da57610100808354040283529160200191610a05565b820191906000526020600020905b8154815290600101906020018083116109e857829003601f168201915b505050505081565b6000818152600d60205260409020805460609190610a2a90613ee5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5690613ee5565b8015610aa35780601f10610a7857610100808354040283529160200191610aa3565b820191906000526020600020905b815481529060010190602001808311610a8657829003601f168201915b50505050509050919050565b60026005541415610ad25760405162461bcd60e51b81526004016108bc90613e27565b6002600555610ae081612270565b506001600555565b6001600160a01b038316331480610b045750610b0483336107e0565b610b205760405162461bcd60e51b81526004016108bc90613c6c565b610b2b838383612372565b505050565b6001600160a01b038516331480610b4c5750610b4c85336107e0565b610bb35760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108bc565b610bc08585858585612500565b5050505050565b60026005541415610bea5760405162461bcd60e51b81526004016108bc90613e27565b60026005556009546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381600087803b158015610c3557600080fd5b505af1158015610c49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6d9190613605565b6001600160a01b031614610c935760405162461bcd60e51b81526004016108bc90613bfd565b600954604051635d83d7df60e11b8152600481018390526001600160a01b039091169063bb07afbe90602401602060405180830381600087803b158015610cd957600080fd5b505af1158015610ced573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1191906139ba565b60011415610dca576000818152600e602090815260408083206001845290915290205460ff1615610d845760405162461bcd60e51b815260206004820152601760248201527f416c726561647920436c61696d6564204c6576656c203100000000000000000060448201526064016108bc565b6000818152600e602090815260408083206001808552908352818420805460ff1916909117905580519182019052908152610dc590339060039084906126aa565b610ae0565b600954604051635d83d7df60e11b8152600481018390526001600160a01b039091169063bb07afbe90602401602060405180830381600087803b158015610e1057600080fd5b505af1158015610e24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4891906139ba565b60021415610efa576000818152600e602090815260408083206002845290915290205460ff1615610ebb5760405162461bcd60e51b815260206004820152601760248201527f416c726561647920436c61696d6564204c6576656c203200000000000000000060448201526064016108bc565b6000818152600e60209081526040808320600284528252808320805460ff1916600117905580519182019052908152610dc590339060039084906126aa565b600954604051635d83d7df60e11b8152600481018390526001600160a01b039091169063bb07afbe90602401602060405180830381600087803b158015610f4057600080fd5b505af1158015610f54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7891906139ba565b6003141561102a576000818152600e602090815260408083206003845290915290205460ff1615610feb5760405162461bcd60e51b815260206004820152601760248201527f416c726561647920436c61696d6564204c6576656c203300000000000000000060448201526064016108bc565b6000818152600e60209081526040808320600384528252808320805460ff1916600117905580519182019052908152610dc590339060049084906126aa565b600954604051635d83d7df60e11b8152600481018390526001600160a01b039091169063bb07afbe90602401602060405180830381600087803b15801561107057600080fd5b505af1158015611084573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a891906139ba565b6004141561115a576000818152600e602090815260408083206004845290915290205460ff161561111b5760405162461bcd60e51b815260206004820152601760248201527f416c726561647920436c61696d6564204c6576656c203400000000000000000060448201526064016108bc565b6000818152600e602090815260408083206004808552908352818420805460ff191660011790558151928301909152918152610dc591339184906126aa565b600954604051635d83d7df60e11b8152600481018390526001600160a01b039091169063bb07afbe90602401602060405180830381600087803b1580156111a057600080fd5b505af11580156111b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d891906139ba565b6005141561128a576000818152600e602090815260408083206005845290915290205460ff161561124b5760405162461bcd60e51b815260206004820152601760248201527f416c726561647920436c61696d6564204c6576656c203500000000000000000060448201526064016108bc565b6000818152600e602090815260408083206005808552908352818420805460ff191660011790558151928301909152918152610dc591339184906126aa565b600954604051635d83d7df60e11b8152600481018390526001600160a01b039091169063bb07afbe90602401602060405180830381600087803b1580156112d057600080fd5b505af11580156112e4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130891906139ba565b600614156113ba576000818152600e602090815260408083206006845290915290205460ff161561137b5760405162461bcd60e51b815260206004820152601760248201527f416c726561647920436c61696d6564204c6576656c203600000000000000000060448201526064016108bc565b6000818152600e60209081526040808320600684528252808320805460ff1916600117905580519182019052908152610dc590339060059084906126aa565b600954604051635d83d7df60e11b8152600481018390526001600160a01b039091169063bb07afbe90602401602060405180830381600087803b15801561140057600080fd5b505af1158015611414573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061143891906139ba565b600714156114ea576000818152600e602090815260408083206007845290915290205460ff16156114ab5760405162461bcd60e51b815260206004820152601760248201527f416c726561647920436c61696d6564204c6576656c203700000000000000000060448201526064016108bc565b6000818152600e60209081526040808320600784528252808320805460ff1916600117905580519182019052908152610dc590339060059084906126aa565b600954604051635d83d7df60e11b8152600481018390526001600160a01b039091169063bb07afbe90602401602060405180830381600087803b15801561153057600080fd5b505af1158015611544573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156891906139ba565b6008141561161a576000818152600e602090815260408083206008845290915290205460ff16156115db5760405162461bcd60e51b815260206004820152601760248201527f416c726561647920436c61696d6564204c6576656c203800000000000000000060448201526064016108bc565b6000818152600e60209081526040808320600884528252808320805460ff1916600117905580519182019052908152610dc590339060059084906126aa565b600954604051635d83d7df60e11b8152600481018390526001600160a01b039091169063bb07afbe90602401602060405180830381600087803b15801561166057600080fd5b505af1158015611674573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169891906139ba565b6009141561174a576000818152600e602090815260408083206009845290915290205460ff161561170b5760405162461bcd60e51b815260206004820152601760248201527f416c726561647920436c61696d6564204c6576656c203900000000000000000060448201526064016108bc565b6000818152600e60209081526040808320600984528252808320805460ff1916600117905580519182019052908152610dc590339060069084906126aa565b600954604051635d83d7df60e11b8152600481018390526001600160a01b039091169063bb07afbe90602401602060405180830381600087803b15801561179057600080fd5b505af11580156117a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c891906139ba565b600a141561187a576000818152600e60209081526040808320600a845290915290205460ff161561183b5760405162461bcd60e51b815260206004820152601860248201527f416c726561647920436c61696d6564204c6576656c203130000000000000000060448201526064016108bc565b6000818152600e60209081526040808320600a84528252808320805460ff1916600117905580519182019052908152610dc590339060069084906126aa565b600954604051635d83d7df60e11b8152600481018390526001600160a01b039091169063bb07afbe90602401602060405180830381600087803b1580156118c057600080fd5b505af11580156118d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f891906139ba565b600b14156119aa576000818152600e60209081526040808320600b845290915290205460ff161561196b5760405162461bcd60e51b815260206004820152601860248201527f416c726561647920436c61696d6564204c6576656c203131000000000000000060448201526064016108bc565b6000818152600e60209081526040808320600b84528252808320805460ff1916600117905580519182019052908152610dc590339060069084906126aa565b600954604051635d83d7df60e11b8152600481018390526001600160a01b039091169063bb07afbe90602401602060405180830381600087803b1580156119f057600080fd5b505af1158015611a04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a2891906139ba565b600c1415611ada576000818152600e60209081526040808320600c845290915290205460ff1615611a9b5760405162461bcd60e51b815260206004820152601860248201527f416c726561647920436c61696d6564204c6576656c203132000000000000000060448201526064016108bc565b6000818152600e60209081526040808320600c84528252808320805460ff1916600117905580519182019052908152610dc590339060069084906126aa565b60405162461bcd60e51b815260206004820152601260248201527114995d995c9d195908139bdd08119d5cd95960721b60448201526064016108bc565b6004546001600160a01b03163314611b415760405162461bcd60e51b81526004016108bc90613daa565b610b2b838383604051806020016040528060008152506126aa565b6004546001600160a01b03163314611b865760405162461bcd60e51b81526004016108bc90613daa565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6004546001600160a01b03163314611bd25760405162461bcd60e51b81526004016108bc90613daa565b60009182526011602052604090912055565b60608151835114611c495760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016108bc565b6000835167ffffffffffffffff811115611c6557611c65613f94565b604051908082528060200260200182016040528015611c8e578160200160208202803683370190505b50905060005b8451811015611d0657611cd9858281518110611cb257611cb2613f7e565b6020026020010151858381518110611ccc57611ccc613f7e565b6020026020010151610854565b828281518110611ceb57611ceb613f7e565b6020908102919091010152611cff81613f4d565b9050611c94565b509392505050565b6004546001600160a01b03163314611d385760405162461bcd60e51b81526004016108bc90613daa565b611d4260006127ba565b565b6004546001600160a01b03163314611d6e5760405162461bcd60e51b81526004016108bc90613daa565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60026005541415611db35760405162461bcd60e51b81526004016108bc90613e27565b6002600555611de43330611dd0846801158e460913d00000613e9a565b6008546001600160a01b031692919061280c565b610ae033600283604051806020016040528060008152506126aa565b6004546001600160a01b03163314611e2a5760405162461bcd60e51b81526004016108bc90613daa565b6000828152600d602090815260409091208251611e499284019061345a565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051611e7a9190613ba2565b60405180910390a25050565b60026005541415611ea95760405162461bcd60e51b81526004016108bc90613e27565b6002600555611ec53330611dd084678ac7230489e80000613e9a565b610ae033600183604051806020016040528060008152506126aa565b6007805461098c90613ee5565b61097b33838361284a565b6004546001600160a01b03163314611f235760405162461bcd60e51b81526004016108bc90613daa565b60009182526010602052604090912055565b6004546001600160a01b03163314611f5f5760405162461bcd60e51b81526004016108bc90613daa565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60026005541415611fa45760405162461bcd60e51b81526004016108bc90613e27565b6002600555610ae08161292b565b600d602052600090815260409020805461098c90613ee5565b6004546001600160a01b03163314611ff55760405162461bcd60e51b81526004016108bc90613daa565b6000918252600f602052604090912055565b610b2b83838361206d565b600260055414156120355760405162461bcd60e51b81526004016108bc90613e27565b60026005556120513330611dd0846753444835ec580000613e9a565b610ae033600083604051806020016040528060008152506126aa565b6001600160a01b038316331480612089575061208983336107e0565b6120a55760405162461bcd60e51b81526004016108bc90613c6c565b610b2b838383612a91565b600260055414156120d35760405162461bcd60e51b81526004016108bc90613e27565b6002600555610ae081612b92565b6004546001600160a01b0316331461210b5760405162461bcd60e51b81526004016108bc90613daa565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038516331480612149575061214985336107e0565b6121655760405162461bcd60e51b81526004016108bc90613c6c565b610bc08585858585612cf8565b6004546001600160a01b0316331461219c5760405162461bcd60e51b81526004016108bc90613daa565b6001600160a01b0381166122015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108bc565b61220a816127ba565b50565b6040516001600160a01b038316602482015260448101829052610b2b90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612e15565b600c546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381600087803b1580156122b657600080fd5b505af11580156122ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ee9190613605565b6001600160a01b0316146123145760405162461bcd60e51b81526004016108bc90613bfd565b600081815260116020526040902054600314156123435760405162461bcd60e51b81526004016108bc90613cb5565b6123503360036001612007565b600081815260116020526040812080549161236a83613f4d565b919050555050565b6001600160a01b0383166123985760405162461bcd60e51b81526004016108bc90613d1d565b80518251146123b95760405162461bcd60e51b81526004016108bc90613ddf565b60003390506123dc81856000868660405180602001604052806000815250612ee7565b60005b83518110156124a15760008482815181106123fc576123fc613f7e565b60200260200101519050600084838151811061241a5761241a613f7e565b602090810291909101810151600084815280835260408082206001600160a01b038c16835290935291909120549091508181101561246a5760405162461bcd60e51b81526004016108bc90613c28565b6000928352602083815260408085206001600160a01b038b168652909152909220910390558061249981613f4d565b9150506123df565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb86866040516124f2929190613b74565b60405180910390a450505050565b81518351146125215760405162461bcd60e51b81526004016108bc90613ddf565b6001600160a01b0384166125475760405162461bcd60e51b81526004016108bc90613cd8565b33612556818787878787612ee7565b60005b845181101561263c57600085828151811061257657612576613f7e565b60200260200101519050600085838151811061259457612594613f7e565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156125e45760405162461bcd60e51b81526004016108bc90613d60565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290612621908490613e82565b925050819055505050508061263590613f4d565b9050612559565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161268c929190613b74565b60405180910390a46126a2818787878787613060565b505050505050565b6001600160a01b03841661270a5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108bc565b3361272a8160008761271b886131cb565b612724886131cb565b87612ee7565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061275a908490613e82565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610bc081600087878787613216565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040516001600160a01b03808516602483015283166044820152606481018290526128449085906323b872dd60e01b90608401612239565b50505050565b816001600160a01b0316836001600160a01b031614156128be5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016108bc565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600a546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381600087803b15801561297157600080fd5b505af1158015612985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129a99190613605565b6001600160a01b0316146129cf5760405162461bcd60e51b81526004016108bc90613bfd565b6000818152600f6020526040902054600c14156129fe5760405162461bcd60e51b81526004016108bc90613cb5565b6000818152600f602052604090205460021115612a3c57612a223360036001612007565b6000818152600f6020526040812080549161236a83613f4d565b6000818152600f602052604090205460041115612a6057612a223360046001612007565b6000818152600f602052604090205460081115612a8457612a223360056001612007565b612a223360066001612007565b6001600160a01b038316612ab75760405162461bcd60e51b81526004016108bc90613d1d565b33612ae681856000612ac8876131cb565b612ad1876131cb565b60405180602001604052806000815250612ee7565b6000838152602081815260408083206001600160a01b038816845290915290205482811015612b275760405162461bcd60e51b81526004016108bc90613c28565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b600b546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381600087803b158015612bd857600080fd5b505af1158015612bec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c109190613605565b6001600160a01b031614612c365760405162461bcd60e51b81526004016108bc90613bfd565b600081815260106020526040902054600c1415612c655760405162461bcd60e51b81526004016108bc90613cb5565b60008181526010602052604090205460021115612ca357612c893360036001612007565b600081815260106020526040812080549161236a83613f4d565b60008181526010602052604090205460041115612cc757612c893360046001612007565b60008181526010602052604090205460081115612ceb57612c893360056001612007565b612c893360066001612007565b6001600160a01b038416612d1e5760405162461bcd60e51b81526004016108bc90613cd8565b33612d2e81878761271b886131cb565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015612d6f5760405162461bcd60e51b81526004016108bc90613d60565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290612dac908490613e82565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612e0c828888888888613216565b50505050505050565b6000612e6a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166132e09092919063ffffffff16565b805190915015610b2b5780806020019051810190612e88919061394a565b610b2b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016108bc565b6001600160a01b038516612f6e5760005b8351811015612f6c57828181518110612f1357612f13613f7e565b602002602001015160036000868481518110612f3157612f31613f7e565b602002602001015181526020019081526020016000206000828254612f569190613e82565b90915550612f65905081613f4d565b9050612ef8565b505b6001600160a01b0384166126a25760005b8351811015612e0c576000848281518110612f9c57612f9c613f7e565b602002602001015190506000848381518110612fba57612fba613f7e565b602002602001015190506000600360008481526020019081526020016000205490508181101561303d5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b60648201526084016108bc565b6000928352600360205260409092209103905561305981613f4d565b9050612f7f565b6001600160a01b0384163b156126a25760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906130a49089908990889088908890600401613ac9565b602060405180830381600087803b1580156130be57600080fd5b505af19250505080156130ee575060408051601f3d908101601f191682019092526130eb91810190613984565b60015b61319b576130fa613faa565b806308c379a01415613134575061310f613fc6565b8061311a5750613136565b8060405162461bcd60e51b81526004016108bc9190613ba2565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016108bc565b6001600160e01b0319811663bc197c8160e01b14612e0c5760405162461bcd60e51b81526004016108bc90613bb5565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061320557613205613f7e565b602090810291909101015292915050565b6001600160a01b0384163b156126a25760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061325a9089908990889088908890600401613b27565b602060405180830381600087803b15801561327457600080fd5b505af19250505080156132a4575060408051601f3d908101601f191682019092526132a191810190613984565b60015b6132b0576130fa613faa565b6001600160e01b0319811663f23a6e6160e01b14612e0c5760405162461bcd60e51b81526004016108bc90613bb5565b60606132ef84846000856132f9565b90505b9392505050565b60608247101561335a5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016108bc565b843b6133a85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108bc565b600080866001600160a01b031685876040516133c49190613aad565b60006040518083038185875af1925050503d8060008114613401576040519150601f19603f3d011682016040523d82523d6000602084013e613406565b606091505b5091509150613416828286613421565b979650505050505050565b606083156134305750816132f2565b8251156134405782518084602001fd5b8160405162461bcd60e51b81526004016108bc9190613ba2565b82805461346690613ee5565b90600052602060002090601f01602090048101928261348857600085556134ce565b82601f106134a157805160ff19168380011785556134ce565b828001600101855582156134ce579182015b828111156134ce5782518255916020019190600101906134b3565b506134da9291506134de565b5090565b5b808211156134da57600081556001016134df565b600067ffffffffffffffff83111561350d5761350d613f94565b604051613524601f8501601f191660200182613f20565b80915083815284848401111561353957600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261356257600080fd5b8135602061356f82613e5e565b60405161357c8282613f20565b8381528281019150858301600585901b8701840188101561359c57600080fd5b60005b858110156135bb5781358452928401929084019060010161359f565b5090979650505050505050565b600082601f8301126135d957600080fd5b6132f2838335602085016134f3565b6000602082840312156135fa57600080fd5b81356132f281614050565b60006020828403121561361757600080fd5b81516132f281614050565b6000806040838503121561363557600080fd5b823561364081614050565b9150602083013561365081614050565b809150509250929050565b600080600080600060a0868803121561367357600080fd5b853561367e81614050565b9450602086013561368e81614050565b9350604086013567ffffffffffffffff808211156136ab57600080fd5b6136b789838a01613551565b945060608801359150808211156136cd57600080fd5b6136d989838a01613551565b935060808801359150808211156136ef57600080fd5b506136fc888289016135c8565b9150509295509295909350565b600080600080600060a0868803121561372157600080fd5b853561372c81614050565b9450602086013561373c81614050565b93506040860135925060608601359150608086013567ffffffffffffffff81111561376657600080fd5b6136fc888289016135c8565b60008060006060848603121561378757600080fd5b833561379281614050565b9250602084013567ffffffffffffffff808211156137af57600080fd5b6137bb87838801613551565b935060408601359150808211156137d157600080fd5b506137de86828701613551565b9150509250925092565b600080604083850312156137fb57600080fd5b823561380681614050565b9150602083013561365081614065565b6000806040838503121561382957600080fd5b823561383481614050565b946020939093013593505050565b60008060006060848603121561385757600080fd5b833561386281614050565b95602085013595506040909401359392505050565b6000806040838503121561388a57600080fd5b823567ffffffffffffffff808211156138a257600080fd5b818501915085601f8301126138b657600080fd5b813560206138c382613e5e565b6040516138d08282613f20565b8381528281019150858301600585901b870184018b10156138f057600080fd5b600096505b8487101561391c57803561390881614050565b8352600196909601959183019183016138f5565b509650508601359250508082111561393357600080fd5b5061394085828601613551565b9150509250929050565b60006020828403121561395c57600080fd5b81516132f281614065565b60006020828403121561397957600080fd5b81356132f281614073565b60006020828403121561399657600080fd5b81516132f281614073565b6000602082840312156139b357600080fd5b5035919050565b6000602082840312156139cc57600080fd5b5051919050565b600080604083850312156139e657600080fd5b82359150602083013567ffffffffffffffff811115613a0457600080fd5b8301601f81018513613a1557600080fd5b613940858235602084016134f3565b60008060408385031215613a3757600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b83811015613a7657815187529582019590820190600101613a5a565b509495945050505050565b60008151808452613a99816020860160208601613eb9565b601f01601f19169290920160200192915050565b60008251613abf818460208701613eb9565b9190910192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090613af590830186613a46565b8281036060840152613b078186613a46565b90508281036080840152613b1b8185613a81565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061341690830184613a81565b6020815260006132f26020830184613a46565b604081526000613b876040830185613a46565b8281036020840152613b998185613a46565b95945050505050565b6020815260006132f26020830184613a81565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6020808252601190820152702737ba103a37b5b2b724b21037bbb732b960791b604082015260600190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526009908201526813585e0813195d995b60ba1b604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600067ffffffffffffffff821115613e7857613e78613f94565b5060051b60200190565b60008219821115613e9557613e95613f68565b500190565b6000816000190483118215151615613eb457613eb4613f68565b500290565b60005b83811015613ed4578181015183820152602001613ebc565b838111156128445750506000910152565b600181811c90821680613ef957607f821691505b60208210811415613f1a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715613f4657613f46613f94565b6040525050565b6000600019821415613f6157613f61613f68565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115613fc35760046000803e5060005160e01c5b90565b600060443d1015613fd45790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561400457505050505090565b828501915081518181111561401c5750505050505090565b843d87010160208285010111156140365750505050505090565b61404560208286010187613f20565b509095945050505050565b6001600160a01b038116811461220a57600080fd5b801515811461220a57600080fd5b6001600160e01b03198116811461220a57600080fdfea2646970667358221220d6d212d509a4bfbcdb920929ace9d487b8b55aab20893b325eb12614c5f0565064736f6c63430008070033000000000000000000000000fea5420b39256a9bec47b138b22f011444e96f12000000000000000000000000fea5420b39256a9bec47b138b22f011444e96f1200000000000000000000000036fb71bcd8e07f33f7d284b0aaea101fb7f12a8700000000000000000000000059128480e6767d2ec0e811e78ccb538c4433310d000000000000000000000000c3b2dd9fec174c7c613a14936a37bda00d780716
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000fea5420b39256a9bec47b138b22f011444e96f12000000000000000000000000fea5420b39256a9bec47b138b22f011444e96f1200000000000000000000000036fb71bcd8e07f33f7d284b0aaea101fb7f12a8700000000000000000000000059128480e6767d2ec0e811e78ccb538c4433310d000000000000000000000000c3b2dd9fec174c7c613a14936a37bda00d780716
-----Decoded View---------------
Arg [0] : _MvGLD (address): 0xfea5420b39256a9bec47b138b22f011444e96f12
Arg [1] : _MiniFren (address): 0xfea5420b39256a9bec47b138b22f011444e96f12
Arg [2] : _Chilla (address): 0x36fb71bcd8e07f33f7d284b0aaea101fb7f12a87
Arg [3] : _Guinea (address): 0x59128480e6767d2ec0e811e78ccb538c4433310d
Arg [4] : _Land (address): 0xc3b2dd9fec174c7c613a14936a37bda00d780716
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000fea5420b39256a9bec47b138b22f011444e96f12
Arg [1] : 000000000000000000000000fea5420b39256a9bec47b138b22f011444e96f12
Arg [2] : 00000000000000000000000036fb71bcd8e07f33f7d284b0aaea101fb7f12a87
Arg [3] : 00000000000000000000000059128480e6767d2ec0e811e78ccb538c4433310d
Arg [4] : 000000000000000000000000c3b2dd9fec174c7c613a14936a37bda00d780716
Deployed ByteCode Sourcemap
48525:9751:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22800:231;;;;;;:::i;:::-;;:::i;:::-;;;27525:25:1;;;27513:2;27498:18;22800:231:0;;;;;;;;49003:23;;;;;-1:-1:-1;;;;;49003:23:0;;;;;;-1:-1:-1;;;;;10607:32:1;;;10589:51;;10577:2;10562:18;49003:23:0;10443:203:1;21823:310:0;;;;;;:::i;:::-;;:::i;:::-;;;13607:14:1;;13600:22;13582:41;;13570:2;13555:18;21823:310:0;13442:187:1;58118:153:0;;;;;;:::i;:::-;;:::i;:::-;;48624:18;;;:::i;:::-;;;;;;;:::i;56555:101::-;;;;;;:::i;:::-;;:::i;56300:117::-;;;;;;:::i;:::-;;:::i;49083:19::-;;;;;-1:-1:-1;;;;;49083:19:0;;;50022:356;;;;;;:::i;:::-;;:::i;49280:54::-;;;;;;:::i;:::-;;;;;;;;;;;;;;49031:21;;;;;-1:-1:-1;;;;;49031:21:0;;;24739:442;;;;;;:::i;:::-;;:::i;49151:65::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;51110:3116;;;;;;:::i;:::-;;:::i;48844:40::-;;48883:1;48844:40;;50384:117;;;;;;:::i;:::-;;:::i;57548:88::-;;;;;;:::i;:::-;;:::i;48979:19::-;;;;;-1:-1:-1;;;;;48979:19:0;;;48758:36;;48793:1;48758:36;;57993:118;;;;;;:::i;:::-;;:::i;23197:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37971:122::-;;;;;;:::i;:::-;38028:4;37849:16;;;:12;:16;;;;;;-1:-1:-1;;;37971:122:0;2527:103;;;:::i;57454:88::-;;;;;;:::i;:::-;;:::i;49057:21::-;;;;;-1:-1:-1;;;;;49057:21:0;;;56804:132;;;;;;:::i;:::-;56874:13;56903:27;;;:18;:27;;;;;;;56804:132;50909:194;;;;;;:::i;:::-;;:::i;57080:128::-;;;;;;:::i;:::-;57148:13;57177:25;;;:16;:25;;;;;;;57080:128;57230:124;;;;;;:::i;:::-;;:::i;50704:198::-;;;;;;:::i;:::-;;:::i;1876:87::-;1949:6;;-1:-1:-1;;;;;1949:6:0;1876:87;;48647:20;;;:::i;48799:40::-;;48838:1;48799:40;;23794:155;;;;;;:::i;:::-;;:::i;56662:136::-;;;;;;:::i;:::-;56740:4;56761:23;;;:13;:23;;;;;;;;:31;;;;;;;;;;;;56662:136;49339:52;;;;;;:::i;:::-;;;;;;;;;;;;;;48672:37;;48708:1;48672:37;;57734:122;;;;;;:::i;:::-;;:::i;37760:113::-;;;;;;:::i;:::-;37822:7;37849:16;;;:12;:16;;;;;;;37760:113;57643:85;;;;;;:::i;:::-;;:::i;54978:121::-;;;;;;:::i;:::-;;:::i;49107:39::-;;;;;;:::i;:::-;;:::i;57863:122::-;;;;;;:::i;:::-;;:::i;56423:109::-;;;;;;:::i;:::-;;:::i;48889:40::-;;48928:1;48889:40;;48934;;48973:1;48934:40;;50505:193;;;;;;:::i;:::-;;:::i;48714:39::-;;48752:1;48714:39;;49221:54;;;;;;:::i;:::-;;;;;;;;;;;;;;49688:324;;;;;;:::i;:::-;;:::i;55849:121::-;;;;;;:::i;:::-;;:::i;57360:88::-;;;;;;:::i;:::-;;:::i;24021:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24144:27:0;;;24120:4;24144:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;24021:168;24261:401;;;;;;:::i;:::-;;:::i;2785:201::-;;;;;;:::i;:::-;;:::i;56942:132::-;;;;;;:::i;:::-;57012:13;57041:27;;;:18;:27;;;;;;;56942:132;22800:231;22886:7;-1:-1:-1;;;;;22914:21:0;;22906:77;;;;-1:-1:-1;;;22906:77:0;;16165:2:1;22906:77:0;;;16147:21:1;16204:2;16184:18;;;16177:30;16243:34;16223:18;;;16216:62;-1:-1:-1;;;16294:18:1;;;16287:41;16345:19;;22906:77:0;;;;;;;;;-1:-1:-1;23001:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;23001:22:0;;;;;;;;;;;;22800:231::o;21823:310::-;21925:4;-1:-1:-1;;;;;;21962:41:0;;-1:-1:-1;;;21962:41:0;;:110;;-1:-1:-1;;;;;;;22020:52:0;;-1:-1:-1;;;22020:52:0;21962:110;:163;;;-1:-1:-1;;;;;;;;;;13356:40:0;;;22089:36;21942:183;21823:310;-1:-1:-1;;21823:310:0:o;58118:153::-;1949:6;;-1:-1:-1;;;;;1949:6:0;682:10;2096:23;2088:68;;;;-1:-1:-1;;;2088:68:0;;;;;;;:::i;:::-;58210:55:::1;-1:-1:-1::0;;;;;58210:34:0;::::1;58245:10;58257:7:::0;58210:34:::1;:55::i;:::-;58118:153:::0;;:::o;48624:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56555:101::-;56637:13;;;;:8;:13;;;;;56630:20;;56608:13;;56637;56630:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56555:101;;;:::o;56300:117::-;44604:1;45202:7;;:19;;45194:63;;;;-1:-1:-1;;;45194:63:0;;;;;;;:::i;:::-;44604:1;45335:7;:18;56384:28:::1;56403:8:::0;56384:18:::1;:28::i;:::-;-1:-1:-1::0;44560:1:0;45514:7;:22;56300:117::o;50022:356::-;-1:-1:-1;;;;;50190:23:0;;682:10;50190:23;;:66;;-1:-1:-1;50217:39:0;50234:7;682:10;24021:168;:::i;50217:39::-;50168:157;;;;-1:-1:-1;;;50168:157:0;;;;;;;:::i;:::-;50338:32;50349:7;50358:3;50363:6;50338:10;:32::i;:::-;50022:356;;;:::o;24739:442::-;-1:-1:-1;;;;;24972:20:0;;682:10;24972:20;;:60;;-1:-1:-1;24996:36:0;25013:4;682:10;24021:168;:::i;24996:36::-;24950:160;;;;-1:-1:-1;;;24950:160:0;;20709:2:1;24950:160:0;;;20691:21:1;20748:2;20728:18;;;20721:30;20787:34;20767:18;;;20760:62;-1:-1:-1;;;20838:18:1;;;20831:48;20896:19;;24950:160:0;20507:414:1;24950:160:0;25121:52;25144:4;25150:2;25154:3;25159:7;25168:4;25121:22;:52::i;:::-;24739:442;;;;;:::o;51110:3116::-;44604:1;45202:7;;:19;;45194:63;;;;-1:-1:-1;;;45194:63:0;;;;;;;:::i;:::-;44604:1;45335:7;:18;51201:8:::1;::::0;51194:34:::1;::::0;-1:-1:-1;;;51194:34:0;;::::1;::::0;::::1;27525:25:1::0;;;51232:10:0::1;::::0;-1:-1:-1;;;;;51201:8:0::1;::::0;51194:24:::1;::::0;27498:18:1;;51194:34:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;51194:48:0::1;;51186:78;;;;-1:-1:-1::0;;;51186:78:0::1;;;;;;;:::i;:::-;51285:8;::::0;51277:44:::1;::::0;-1:-1:-1;;;51277:44:0;;::::1;::::0;::::1;27525:25:1::0;;;-1:-1:-1;;;;;51285:8:0;;::::1;::::0;51277:34:::1;::::0;27498:18:1;;51277:44:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51325:1;51277:49;51274:2948;;;51343:23;::::0;;;:13:::1;:23;::::0;;;;;;;51367:1:::1;51343:26:::0;;;;;;;;::::1;;:35;51335:71;;;::::0;-1:-1:-1;;;51335:71:0;;24116:2:1;51335:71:0::1;::::0;::::1;24098:21:1::0;24155:2;24135:18;;;24128:30;24194:25;24174:18;;;24167:53;24237:18;;51335:71:0::1;23914:347:1::0;51335:71:0::1;51414:23;::::0;;;:13:::1;:23;::::0;;;;;;;51444:4:::1;51414:26:::0;;;;;;;;;:34;;-1:-1:-1;;51414:34:0::1;::::0;;::::1;::::0;;51456:45;;;;::::1;::::0;;;;;::::1;::::0;51462:10:::1;::::0;48838:1:::1;::::0;51428:8;;51456:5:::1;:45::i;:::-;51274:2948;;;51526:8;::::0;51518:44:::1;::::0;-1:-1:-1;;;51518:44:0;;::::1;::::0;::::1;27525:25:1::0;;;-1:-1:-1;;;;;51526:8:0;;::::1;::::0;51518:34:::1;::::0;27498:18:1;;51518:44:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51566:1;51518:49;51515:2707;;;51584:23;::::0;;;:13:::1;:23;::::0;;;;;;;51608:1:::1;51584:26:::0;;;;;;;;::::1;;:35;51576:71;;;::::0;-1:-1:-1;;;51576:71:0;;18895:2:1;51576:71:0::1;::::0;::::1;18877:21:1::0;18934:2;18914:18;;;18907:30;18973:25;18953:18;;;18946:53;19016:18;;51576:71:0::1;18693:347:1::0;51576:71:0::1;51655:23;::::0;;;:13:::1;:23;::::0;;;;;;;51679:1:::1;51655:26:::0;;;;;;;:34;;-1:-1:-1;;51655:34:0::1;51685:4;51655:34;::::0;;51697:45;;;;::::1;::::0;;;;;::::1;::::0;51703:10:::1;::::0;48838:1:::1;::::0;51669:8;;51697:5:::1;:45::i;51515:2707::-;51767:8;::::0;51759:44:::1;::::0;-1:-1:-1;;;51759:44:0;;::::1;::::0;::::1;27525:25:1::0;;;-1:-1:-1;;;;;51767:8:0;;::::1;::::0;51759:34:::1;::::0;27498:18:1;;51759:44:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51807:1;51759:49;51756:2466;;;51825:23;::::0;;;:13:::1;:23;::::0;;;;;;;51849:1:::1;51825:26:::0;;;;;;;;::::1;;:35;51817:71;;;::::0;-1:-1:-1;;;51817:71:0;;19247:2:1;51817:71:0::1;::::0;::::1;19229:21:1::0;19286:2;19266:18;;;19259:30;19325:25;19305:18;;;19298:53;19368:18;;51817:71:0::1;19045:347:1::0;51817:71:0::1;51896:23;::::0;;;:13:::1;:23;::::0;;;;;;;51920:1:::1;51896:26:::0;;;;;;;:34;;-1:-1:-1;;51896:34:0::1;51926:4;51896:34;::::0;;51938:45;;;;::::1;::::0;;;;;::::1;::::0;51944:10:::1;::::0;48883:1:::1;::::0;51910:8;;51938:5:::1;:45::i;51756:2466::-;52008:8;::::0;52000:44:::1;::::0;-1:-1:-1;;;52000:44:0;;::::1;::::0;::::1;27525:25:1::0;;;-1:-1:-1;;;;;52008:8:0;;::::1;::::0;52000:34:::1;::::0;27498:18:1;;52000:44:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52048:1;52000:49;51997:2225;;;52066:23;::::0;;;:13:::1;:23;::::0;;;;;;;52090:1:::1;52066:26:::0;;;;;;;;::::1;;:35;52058:71;;;::::0;-1:-1:-1;;;52058:71:0;;19951:2:1;52058:71:0::1;::::0;::::1;19933:21:1::0;19990:2;19970:18;;;19963:30;20029:25;20009:18;;;20002:53;20072:18;;52058:71:0::1;19749:347:1::0;52058:71:0::1;52137:23;::::0;;;:13:::1;:23;::::0;;;;;;;52161:1:::1;52137:26:::0;;;;;;;;;:34;;-1:-1:-1;;52137:34:0::1;52167:4;52137:34;::::0;;52179:45;;;;::::1;::::0;;;;;;::::1;::::0;52185:10:::1;::::0;52151:8;;52179:5:::1;:45::i;51997:2225::-;52249:8;::::0;52241:44:::1;::::0;-1:-1:-1;;;52241:44:0;;::::1;::::0;::::1;27525:25:1::0;;;-1:-1:-1;;;;;52249:8:0;;::::1;::::0;52241:34:::1;::::0;27498:18:1;;52241:44:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52289:1;52241:49;52238:1984;;;52307:23;::::0;;;:13:::1;:23;::::0;;;;;;;52331:1:::1;52307:26:::0;;;;;;;;::::1;;:35;52299:71;;;::::0;-1:-1:-1;;;52299:71:0;;22994:2:1;52299:71:0::1;::::0;::::1;22976:21:1::0;23033:2;23013:18;;;23006:30;23072:25;23052:18;;;23045:53;23115:18;;52299:71:0::1;22792:347:1::0;52299:71:0::1;52378:23;::::0;;;:13:::1;:23;::::0;;;;;;;52402:1:::1;52378:26:::0;;;;;;;;;:34;;-1:-1:-1;;52378:34:0::1;52408:4;52378:34;::::0;;52420:45;;;;::::1;::::0;;;;;;::::1;::::0;52426:10:::1;::::0;52392:8;;52420:5:::1;:45::i;52238:1984::-;52490:8;::::0;52482:44:::1;::::0;-1:-1:-1;;;52482:44:0;;::::1;::::0;::::1;27525:25:1::0;;;-1:-1:-1;;;;;52490:8:0;;::::1;::::0;52482:34:::1;::::0;27498:18:1;;52482:44:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52530:1;52482:49;52479:1743;;;52548:23;::::0;;;:13:::1;:23;::::0;;;;;;;52572:1:::1;52548:26:::0;;;;;;;;::::1;;:35;52540:71;;;::::0;-1:-1:-1;;;52540:71:0;;19599:2:1;52540:71:0::1;::::0;::::1;19581:21:1::0;19638:2;19618:18;;;19611:30;19677:25;19657:18;;;19650:53;19720:18;;52540:71:0::1;19397:347:1::0;52540:71:0::1;52619:23;::::0;;;:13:::1;:23;::::0;;;;;;;52643:1:::1;52619:26:::0;;;;;;;:34;;-1:-1:-1;;52619:34:0::1;52649:4;52619:34;::::0;;52661:45;;;;::::1;::::0;;;;;::::1;::::0;52667:10:::1;::::0;48928:1:::1;::::0;52633:8;;52661:5:::1;:45::i;52479:1743::-;52731:8;::::0;52723:44:::1;::::0;-1:-1:-1;;;52723:44:0;;::::1;::::0;::::1;27525:25:1::0;;;-1:-1:-1;;;;;52731:8:0;;::::1;::::0;52723:34:::1;::::0;27498:18:1;;52723:44:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52771:1;52723:49;52720:1502;;;52789:23;::::0;;;:13:::1;:23;::::0;;;;;;;52813:1:::1;52789:26:::0;;;;;;;;::::1;;:35;52781:71;;;::::0;-1:-1:-1;;;52781:71:0;;18136:2:1;52781:71:0::1;::::0;::::1;18118:21:1::0;18175:2;18155:18;;;18148:30;18214:25;18194:18;;;18187:53;18257:18;;52781:71:0::1;17934:347:1::0;52781:71:0::1;52860:23;::::0;;;:13:::1;:23;::::0;;;;;;;52884:1:::1;52860:26:::0;;;;;;;:34;;-1:-1:-1;;52860:34:0::1;52890:4;52860:34;::::0;;52902:45;;;;::::1;::::0;;;;;::::1;::::0;52908:10:::1;::::0;48928:1:::1;::::0;52874:8;;52902:5:::1;:45::i;52720:1502::-;52972:8;::::0;52964:44:::1;::::0;-1:-1:-1;;;52964:44:0;;::::1;::::0;::::1;27525:25:1::0;;;-1:-1:-1;;;;;52972:8:0;;::::1;::::0;52964:34:::1;::::0;27498:18:1;;52964:44:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53012:1;52964:49;52961:1261;;;53030:23;::::0;;;:13:::1;:23;::::0;;;;;;;53054:1:::1;53030:26:::0;;;;;;;;::::1;;:35;53022:71;;;::::0;-1:-1:-1;;;53022:71:0;;21475:2:1;53022:71:0::1;::::0;::::1;21457:21:1::0;21514:2;21494:18;;;21487:30;21553:25;21533:18;;;21526:53;21596:18;;53022:71:0::1;21273:347:1::0;53022:71:0::1;53101:23;::::0;;;:13:::1;:23;::::0;;;;;;;53125:1:::1;53101:26:::0;;;;;;;:34;;-1:-1:-1;;53101:34:0::1;53131:4;53101:34;::::0;;53143:45;;;;::::1;::::0;;;;;::::1;::::0;53149:10:::1;::::0;48928:1:::1;::::0;53115:8;;53143:5:::1;:45::i;52961:1261::-;53213:8;::::0;53205:44:::1;::::0;-1:-1:-1;;;53205:44:0;;::::1;::::0;::::1;27525:25:1::0;;;-1:-1:-1;;;;;53213:8:0;;::::1;::::0;53205:34:::1;::::0;27498:18:1;;53205:44:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53253:1;53205:49;53202:1020;;;53271:23;::::0;;;:13:::1;:23;::::0;;;;;;;53295:1:::1;53271:26:::0;;;;;;;;::::1;;:35;53263:71;;;::::0;-1:-1:-1;;;53263:71:0;;21827:2:1;53263:71:0::1;::::0;::::1;21809:21:1::0;21866:2;21846:18;;;21839:30;21905:25;21885:18;;;21878:53;21948:18;;53263:71:0::1;21625:347:1::0;53263:71:0::1;53342:23;::::0;;;:13:::1;:23;::::0;;;;;;;53366:1:::1;53342:26:::0;;;;;;;:34;;-1:-1:-1;;53342:34:0::1;53372:4;53342:34;::::0;;53384:45;;;;::::1;::::0;;;;;::::1;::::0;53390:10:::1;::::0;48973:1:::1;::::0;53356:8;;53384:5:::1;:45::i;53202:1020::-;53454:8;::::0;53446:44:::1;::::0;-1:-1:-1;;;53446:44:0;;::::1;::::0;::::1;27525:25:1::0;;;-1:-1:-1;;;;;53454:8:0;;::::1;::::0;53446:34:::1;::::0;27498:18:1;;53446:44:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53494:2;53446:50;53443:779;;;53513:23;::::0;;;:13:::1;:23;::::0;;;;;;;53537:2:::1;53513:27:::0;;;;;;;;::::1;;:36;53505:73;;;::::0;-1:-1:-1;;;53505:73:0;;14704:2:1;53505:73:0::1;::::0;::::1;14686:21:1::0;14743:2;14723:18;;;14716:30;14782:26;14762:18;;;14755:54;14826:18;;53505:73:0::1;14502:348:1::0;53505:73:0::1;53586:23;::::0;;;:13:::1;:23;::::0;;;;;;;53610:2:::1;53586:27:::0;;;;;;;:35;;-1:-1:-1;;53586:35:0::1;53617:4;53586:35;::::0;;53629:45;;;;::::1;::::0;;;;;::::1;::::0;53635:10:::1;::::0;48973:1:::1;::::0;53600:8;;53629:5:::1;:45::i;53443:779::-;53699:8;::::0;53691:44:::1;::::0;-1:-1:-1;;;53691:44:0;;::::1;::::0;::::1;27525:25:1::0;;;-1:-1:-1;;;;;53699:8:0;;::::1;::::0;53691:34:::1;::::0;27498:18:1;;53691:44:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53739:2;53691:50;53688:534;;;53758:23;::::0;;;:13:::1;:23;::::0;;;;;;;53782:2:::1;53758:27:::0;;;;;;;;::::1;;:36;53750:73;;;::::0;-1:-1:-1;;;53750:73:0;;15812:2:1;53750:73:0::1;::::0;::::1;15794:21:1::0;15851:2;15831:18;;;15824:30;15890:26;15870:18;;;15863:54;15934:18;;53750:73:0::1;15610:348:1::0;53750:73:0::1;53831:23;::::0;;;:13:::1;:23;::::0;;;;;;;53855:2:::1;53831:27:::0;;;;;;;:35;;-1:-1:-1;;53831:35:0::1;53862:4;53831:35;::::0;;53874:45;;;;::::1;::::0;;;;;::::1;::::0;53880:10:::1;::::0;48973:1:::1;::::0;53845:8;;53874:5:::1;:45::i;53688:534::-;53944:8;::::0;53936:44:::1;::::0;-1:-1:-1;;;53936:44:0;;::::1;::::0;::::1;27525:25:1::0;;;-1:-1:-1;;;;;53944:8:0;;::::1;::::0;53936:34:::1;::::0;27498:18:1;;53936:44:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53984:2;53936:50;53933:289;;;54003:23;::::0;;;:13:::1;:23;::::0;;;;;;;54027:2:::1;54003:27:::0;;;;;;;;::::1;;:36;53995:73;;;::::0;-1:-1:-1;;;53995:73:0;;26057:2:1;53995:73:0::1;::::0;::::1;26039:21:1::0;26096:2;26076:18;;;26069:30;26135:26;26115:18;;;26108:54;26179:18;;53995:73:0::1;25855:348:1::0;53995:73:0::1;54076:23;::::0;;;:13:::1;:23;::::0;;;;;;;54100:2:::1;54076:27:::0;;;;;;;:35;;-1:-1:-1;;54076:35:0::1;54107:4;54076:35;::::0;;54119:45;;;;::::1;::::0;;;;;::::1;::::0;54125:10:::1;::::0;48973:1:::1;::::0;54090:8;;54119:5:::1;:45::i;53933:289::-;54185:28;::::0;-1:-1:-1;;;54185:28:0;;21128:2:1;54185:28:0::1;::::0;::::1;21110:21:1::0;21167:2;21147:18;;;21140:30;-1:-1:-1;;;21186:18:1;;;21179:48;21244:18;;54185:28:0::1;20926:342:1::0;50384:117:0;1949:6;;-1:-1:-1;;;;;1949:6:0;682:10;2096:23;2088:68;;;;-1:-1:-1;;;2088:68:0;;;;;;;:::i;:::-;50467:28:::1;50473:3;50478;50483:7;50467:28;;;;;;;;;;;::::0;:5:::1;:28::i;57548:88::-:0;1949:6;;-1:-1:-1;;;;;1949:6:0;682:10;2096:23;2088:68;;;;-1:-1:-1;;;2088:68:0;;;;;;;:::i;:::-;57613:6:::1;:17:::0;;-1:-1:-1;;;;;;57613:17:0::1;-1:-1:-1::0;;;;;57613:17:0;;;::::1;::::0;;;::::1;::::0;;57548:88::o;57993:118::-;1949:6;;-1:-1:-1;;;;;1949:6:0;682:10;2096:23;2088:68;;;;-1:-1:-1;;;2088:68:0;;;;;;;:::i;:::-;58071:25:::1;::::0;;;:16:::1;:25;::::0;;;;;:33;57993:118::o;23197:524::-;23353:16;23414:3;:10;23395:8;:15;:29;23387:83;;;;-1:-1:-1;;;23387:83:0;;25647:2:1;23387:83:0;;;25629:21:1;25686:2;25666:18;;;25659:30;25725:34;25705:18;;;25698:62;-1:-1:-1;;;25776:18:1;;;25769:39;25825:19;;23387:83:0;25445:405:1;23387:83:0;23483:30;23530:8;:15;23516:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23516:30:0;;23483:63;;23564:9;23559:122;23583:8;:15;23579:1;:19;23559:122;;;23639:30;23649:8;23658:1;23649:11;;;;;;;;:::i;:::-;;;;;;;23662:3;23666:1;23662:6;;;;;;;;:::i;:::-;;;;;;;23639:9;:30::i;:::-;23620:13;23634:1;23620:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;23600:3;;;:::i;:::-;;;23559:122;;;-1:-1:-1;23700:13:0;23197:524;-1:-1:-1;;;23197:524:0:o;2527:103::-;1949:6;;-1:-1:-1;;;;;1949:6:0;682:10;2096:23;2088:68;;;;-1:-1:-1;;;2088:68:0;;;;;;;:::i;:::-;2592:30:::1;2619:1;2592:18;:30::i;:::-;2527:103::o:0;57454:88::-;1949:6;;-1:-1:-1;;;;;1949:6:0;682:10;2096:23;2088:68;;;;-1:-1:-1;;;2088:68:0;;;;;;;:::i;:::-;57519:6:::1;:17:::0;;-1:-1:-1;;;;;;57519:17:0::1;-1:-1:-1::0;;;;;57519:17:0;;;::::1;::::0;;;::::1;::::0;;57454:88::o;50909:194::-;44604:1;45202:7;;:19;;45194:63;;;;-1:-1:-1;;;45194:63:0;;;;;;;:::i;:::-;44604:1;45335:7;:18;50981:69:::1;51004:10;51024:4;51031:18;51042:7:::0;51031:8:::1;:18;:::i;:::-;50981:5;::::0;-1:-1:-1;;;;;50981:5:0::1;::::0;:69;;:22:::1;:69::i;:::-;51057:40;51063:10;48793:1;51085:7;51057:40;;;;;;;;;;;::::0;:5:::1;:40::i;57230:124::-:0;1949:6;;-1:-1:-1;;;;;1949:6:0;682:10;2096:23;2088:68;;;;-1:-1:-1;;;2088:68:0;;;;;;;:::i;:::-;57302:13:::1;::::0;;;:8:::1;:13;::::0;;;;;;;:20;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;57344:3;57334:14;57338:4;57334:14;;;;;;:::i;:::-;;;;;;;;57230:124:::0;;:::o;50704:198::-;44604:1;45202:7;;:19;;45194:63;;;;-1:-1:-1;;;45194:63:0;;;;;;;:::i;:::-;44604:1;45335:7;:18;50777:69:::1;50800:10;50820:4;50827:18;50838:7:::0;50827:8:::1;:18;:::i;50777:69::-;50853:43;50859:10;48752:1;50884:7;50853:43;;;;;;;;;;;::::0;:5:::1;:43::i;48647:20::-:0;;;;;;;:::i;23794:155::-;23889:52;682:10;23922:8;23932;23889:18;:52::i;57734:122::-;1949:6;;-1:-1:-1;;;;;1949:6:0;682:10;2096:23;2088:68;;;;-1:-1:-1;;;2088:68:0;;;;;;;:::i;:::-;57814:27:::1;::::0;;;:18:::1;:27;::::0;;;;;:35;57734:122::o;57643:85::-;1949:6;;-1:-1:-1;;;;;1949:6:0;682:10;2096:23;2088:68;;;;-1:-1:-1;;;2088:68:0;;;;;;;:::i;:::-;57706:5:::1;:16:::0;;-1:-1:-1;;;;;;57706:16:0::1;-1:-1:-1::0;;;;;57706:16:0;;;::::1;::::0;;;::::1;::::0;;57643:85::o;54978:121::-;44604:1;45202:7;;:19;;45194:63;;;;-1:-1:-1;;;45194:63:0;;;;;;;:::i;:::-;44604:1;45335:7;:18;55064:30:::1;55085:8:::0;55064:20:::1;:30::i;49107:39::-:0;;;;;;;;;;;;;;;;:::i;57863:122::-;1949:6;;-1:-1:-1;;;;;1949:6:0;682:10;2096:23;2088:68;;;;-1:-1:-1;;;2088:68:0;;;;;;;:::i;:::-;57943:27:::1;::::0;;;:18:::1;:27;::::0;;;;;:35;57863:122::o;56423:109::-;56498:28;56506:5;56513:3;56518:7;56498;:28::i;50505:193::-;44604:1;45202:7;;:19;;45194:63;;;;-1:-1:-1;;;45194:63:0;;;;;;;:::i;:::-;44604:1;45335:7;:18;50576:68:::1;50599:10;50619:4;50626:17;50636:7:::0;50626::::1;:17;:::i;50576:68::-;50651:41;50657:10;48708:1;50680:7;50651:41;;;;;;;;;;;::::0;:5:::1;:41::i;49688:324::-:0;-1:-1:-1;;;;;49831:23:0;;682:10;49831:23;;:66;;-1:-1:-1;49858:39:0;49875:7;682:10;24021:168;:::i;49858:39::-;49809:157;;;;-1:-1:-1;;;49809:157:0;;;;;;;:::i;:::-;49979:25;49985:7;49994:2;49998:5;49979;:25::i;55849:121::-;44604:1;45202:7;;:19;;45194:63;;;;-1:-1:-1;;;45194:63:0;;;;;;;:::i;:::-;44604:1;45335:7;:18;55935:30:::1;55956:8:::0;55935:20:::1;:30::i;57360:88::-:0;1949:6;;-1:-1:-1;;;;;1949:6:0;682:10;2096:23;2088:68;;;;-1:-1:-1;;;2088:68:0;;;;;;;:::i;:::-;57423:8:::1;:19:::0;;-1:-1:-1;;;;;;57423:19:0::1;-1:-1:-1::0;;;;;57423:19:0;;;::::1;::::0;;;::::1;::::0;;57360:88::o;24261:401::-;-1:-1:-1;;;;;24469:20:0;;682:10;24469:20;;:60;;-1:-1:-1;24493:36:0;24510:4;682:10;24021:168;:::i;24493:36::-;24447:151;;;;-1:-1:-1;;;24447:151:0;;;;;;;:::i;:::-;24609:45;24627:4;24633:2;24637;24641:6;24649:4;24609:17;:45::i;2785:201::-;1949:6;;-1:-1:-1;;;;;1949:6:0;682:10;2096:23;2088:68;;;;-1:-1:-1;;;2088:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2874:22:0;::::1;2866:73;;;::::0;-1:-1:-1;;;2866:73:0;;16577:2:1;2866:73:0::1;::::0;::::1;16559:21:1::0;16616:2;16596:18;;;16589:30;16655:34;16635:18;;;16628:62;-1:-1:-1;;;16706:18:1;;;16699:36;16752:19;;2866:73:0::1;16375:402:1::0;2866:73:0::1;2950:28;2969:8;2950:18;:28::i;:::-;2785:201:::0;:::o;39630:211::-;39774:58;;-1:-1:-1;;;;;12619:32:1;;39774:58:0;;;12601:51:1;12668:18;;;12661:34;;;39747:86:0;;39767:5;;-1:-1:-1;;;39797:23:0;12574:18:1;;39774:58:0;;;;-1:-1:-1;;39774:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;39774:58:0;-1:-1:-1;;;;;;39774:58:0;;;;;;;;;;39747:19;:86::i;55976:319::-;56054:4;;56047:30;;-1:-1:-1;;;56047:30:0;;;;;27525:25:1;;;56081:10:0;;-1:-1:-1;;;;;56054:4:0;;56047:20;;27498:18:1;;56047:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;56047:44:0;;56039:74;;;;-1:-1:-1;;;56039:74:0;;;;;;;:::i;:::-;56125:26;;;;:16;:26;;;;;;56155:1;56125:31;56121:170;;;56166:19;;-1:-1:-1;;;56166:19:0;;;;;;;:::i;56121:170::-;56208:37;56217:10;48838:1;56243;56208:8;:37::i;:::-;56254:26;;;;:16;:26;;;;;:28;;;;;;:::i;:::-;;;;;;55976:319;:::o;31976:891::-;-1:-1:-1;;;;;32128:18:0;;32120:66;;;;-1:-1:-1;;;32120:66:0;;;;;;;:::i;:::-;32219:7;:14;32205:3;:10;:28;32197:81;;;;-1:-1:-1;;;32197:81:0;;;;;;;:::i;:::-;32291:16;682:10;32291:31;;32335:66;32356:8;32366:4;32380:1;32384:3;32389:7;32335:66;;;;;;;;;;;;:20;:66::i;:::-;32419:9;32414:373;32438:3;:10;32434:1;:14;32414:373;;;32470:10;32483:3;32487:1;32483:6;;;;;;;;:::i;:::-;;;;;;;32470:19;;32504:14;32521:7;32529:1;32521:10;;;;;;;;:::i;:::-;;;;;;;;;;;;32548:19;32570:13;;;;;;;;;;-1:-1:-1;;;;;32570:19:0;;;;;;;;;;;;32521:10;;-1:-1:-1;32612:21:0;;;;32604:70;;;;-1:-1:-1;;;32604:70:0;;;;;;;:::i;:::-;32718:9;:13;;;;;;;;;;;-1:-1:-1;;;;;32718:19:0;;;;;;;;;;32740:20;;32718:42;;32450:3;;;;:::i;:::-;;;;32414:373;;;;32842:1;-1:-1:-1;;;;;32804:55:0;32828:4;-1:-1:-1;;;;;32804:55:0;32818:8;-1:-1:-1;;;;;32804:55:0;;32846:3;32851:7;32804:55;;;;;;;:::i;:::-;;;;;;;;32109:758;31976:891;;;:::o;26823:1074::-;27050:7;:14;27036:3;:10;:28;27028:81;;;;-1:-1:-1;;;27028:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27128:16:0;;27120:66;;;;-1:-1:-1;;;27120:66:0;;;;;;;:::i;:::-;682:10;27243:60;682:10;27274:4;27280:2;27284:3;27289:7;27298:4;27243:20;:60::i;:::-;27321:9;27316:421;27340:3;:10;27336:1;:14;27316:421;;;27372:10;27385:3;27389:1;27385:6;;;;;;;;:::i;:::-;;;;;;;27372:19;;27406:14;27423:7;27431:1;27423:10;;;;;;;;:::i;:::-;;;;;;;;;;;;27450:19;27472:13;;;;;;;;;;-1:-1:-1;;;;;27472:19:0;;;;;;;;;;;;27423:10;;-1:-1:-1;27514:21:0;;;;27506:76;;;;-1:-1:-1;;;27506:76:0;;;;;;;:::i;:::-;27626:9;:13;;;;;;;;;;;-1:-1:-1;;;;;27626:19:0;;;;;;;;;;27648:20;;;27626:42;;27698:17;;;;;;;:27;;27648:20;;27626:9;27698:27;;27648:20;;27698:27;:::i;:::-;;;;;;;;27357:380;;;27352:3;;;;:::i;:::-;;;27316:421;;;;27784:2;-1:-1:-1;;;;;27754:47:0;27778:4;-1:-1:-1;;;;;27754:47:0;27768:8;-1:-1:-1;;;;;27754:47:0;;27788:3;27793:7;27754:47;;;;;;;:::i;:::-;;;;;;;;27814:75;27850:8;27860:4;27866:2;27870:3;27875:7;27884:4;27814:35;:75::i;:::-;27017:880;26823:1074;;;;;:::o;29215:569::-;-1:-1:-1;;;;;29368:16:0;;29360:62;;;;-1:-1:-1;;;29360:62:0;;26819:2:1;29360:62:0;;;26801:21:1;26858:2;26838:18;;;26831:30;26897:34;26877:18;;;26870:62;-1:-1:-1;;;26948:18:1;;;26941:31;26989:19;;29360:62:0;26617:397:1;29360:62:0;682:10;29479:102;682:10;29435:16;29522:2;29526:21;29544:2;29526:17;:21::i;:::-;29549:25;29567:6;29549:17;:25::i;:::-;29576:4;29479:20;:102::i;:::-;29594:9;:13;;;;;;;;;;;-1:-1:-1;;;;;29594:17:0;;;;;;;;;:27;;29615:6;;29594:9;:27;;29615:6;;29594:27;:::i;:::-;;;;-1:-1:-1;;29637:52:0;;;27735:25:1;;;27791:2;27776:18;;27769:34;;;-1:-1:-1;;;;;29637:52:0;;;;29670:1;;29637:52;;;;;;27708:18:1;29637:52:0;;;;;;;29702:74;29733:8;29751:1;29755:2;29759;29763:6;29771:4;29702:30;:74::i;3146:191::-;3239:6;;;-1:-1:-1;;;;;3256:17:0;;;-1:-1:-1;;;;;;3256:17:0;;;;;;;3289:40;;3239:6;;;3256:17;3239:6;;3289:40;;3220:16;;3289:40;3209:128;3146:191;:::o;39849:248::-;40020:68;;-1:-1:-1;;;;;11740:15:1;;;40020:68:0;;;11722:34:1;11792:15;;11772:18;;;11765:43;11824:18;;;11817:34;;;39993:96:0;;40013:5;;-1:-1:-1;;;40043:27:0;11657:18:1;;40020:68:0;11482:375:1;39993:96:0;39849:248;;;;:::o;33009:331::-;33164:8;-1:-1:-1;;;;;33155:17:0;:5;-1:-1:-1;;;;;33155:17:0;;;33147:71;;;;-1:-1:-1;;;33147:71:0;;24826:2:1;33147:71:0;;;24808:21:1;24865:2;24845:18;;;24838:30;24904:34;24884:18;;;24877:62;-1:-1:-1;;;24955:18:1;;;24948:39;25004:19;;33147:71:0;24624:405:1;33147:71:0;-1:-1:-1;;;;;33229:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33229:46:0;;;;;;;;;;33291:41;;13582::1;;;33291::0;;13555:18:1;33291:41:0;;;;;;;33009:331;;;:::o;54231:740::-;54312:6;;54305:32;;-1:-1:-1;;;54305:32:0;;;;;27525:25:1;;;54341:10:0;;-1:-1:-1;;;;;54312:6:0;;54305:22;;27498:18:1;;54305:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;54305:46:0;;54297:76;;;;-1:-1:-1;;;54297:76:0;;;;;;;:::i;:::-;54385:28;;;;:18;:28;;;;;;54417:2;54385:34;54381:586;;;54429:19;;-1:-1:-1;;;54429:19:0;;;;;;;:::i;54381:586::-;54466:28;;;;:18;:28;;;;;;54497:1;-1:-1:-1;54462:505:0;;;54509:37;54518:10;48838:1;54544;54509:8;:37::i;:::-;54555:28;;;;:18;:28;;;;;:30;;;;;;:::i;54462:505::-;54603:28;;;;:18;:28;;;;;;54634:1;-1:-1:-1;54599:368:0;;;54646:37;54655:10;48883:1;54681;54646:8;:37::i;54599:368::-;54740:28;;;;:18;:28;;;;;;54771:1;-1:-1:-1;54736:231:0;;;54783:37;54792:10;48928:1;54818;54783:8;:37::i;54736:231::-;54882:37;54891:10;48973:1;54917;54882:8;:37::i;31125:648::-;-1:-1:-1;;;;;31252:18:0;;31244:66;;;;-1:-1:-1;;;31244:66:0;;;;;;;:::i;:::-;682:10;31367:102;682:10;31398:4;31323:16;31416:21;31434:2;31416:17;:21::i;:::-;31439:25;31457:6;31439:17;:25::i;:::-;31367:102;;;;;;;;;;;;:20;:102::i;:::-;31482:19;31504:13;;;;;;;;;;;-1:-1:-1;;;;;31504:19:0;;;;;;;;;;31542:21;;;;31534:70;;;;-1:-1:-1;;;31534:70:0;;;;;;;:::i;:::-;31640:9;:13;;;;;;;;;;;-1:-1:-1;;;;;31640:19:0;;;;;;;;;;;;31662:20;;;31640:42;;31711:54;;27735:25:1;;;27776:18;;;27769:34;;;31640:19:0;;31711:54;;;;;;27708:18:1;31711:54:0;;;;;;;31233:540;;31125:648;;;:::o;55105:739::-;55185:6;;55178:32;;-1:-1:-1;;;55178:32:0;;;;;27525:25:1;;;55214:10:0;;-1:-1:-1;;;;;55185:6:0;;55178:22;;27498:18:1;;55178:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;55178:46:0;;55170:76;;;;-1:-1:-1;;;55170:76:0;;;;;;;:::i;:::-;55258:28;;;;:18;:28;;;;;;55290:2;55258:34;55254:586;;;55302:19;;-1:-1:-1;;;55302:19:0;;;;;;;:::i;55254:586::-;55339:28;;;;:18;:28;;;;;;55370:1;-1:-1:-1;55335:505:0;;;55382:37;55391:10;48838:1;55417;55382:8;:37::i;:::-;55428:28;;;;:18;:28;;;;;:30;;;;;;:::i;55335:505::-;55476:28;;;;:18;:28;;;;;;55507:1;-1:-1:-1;55472:368:0;;;55519:37;55528:10;48883:1;55554;55519:8;:37::i;55472:368::-;55613:28;;;;:18;:28;;;;;;55644:1;-1:-1:-1;55609:231:0;;;55656:37;55665:10;48928:1;55691;55656:8;:37::i;55609:231::-;55755:37;55764:10;48973:1;55790;55755:8;:37::i;25645:820::-;-1:-1:-1;;;;;25833:16:0;;25825:66;;;;-1:-1:-1;;;25825:66:0;;;;;;;:::i;:::-;682:10;25948:96;682:10;25979:4;25985:2;25989:21;26007:2;25989:17;:21::i;25948:96::-;26057:19;26079:13;;;;;;;;;;;-1:-1:-1;;;;;26079:19:0;;;;;;;;;;26117:21;;;;26109:76;;;;-1:-1:-1;;;26109:76:0;;;;;;;:::i;:::-;26221:9;:13;;;;;;;;;;;-1:-1:-1;;;;;26221:19:0;;;;;;;;;;26243:20;;;26221:42;;26285:17;;;;;;;:27;;26243:20;;26221:9;26285:27;;26243:20;;26285:27;:::i;:::-;;;;-1:-1:-1;;26330:46:0;;;27735:25:1;;;27791:2;27776:18;;27769:34;;;-1:-1:-1;;;;;26330:46:0;;;;;;;;;;;;;;27708:18:1;26330:46:0;;;;;;;26389:68;26420:8;26430:4;26436:2;26440;26444:6;26452:4;26389:30;:68::i;:::-;25814:651;;25645:820;;;;;:::o;42203:716::-;42627:23;42653:69;42681:4;42653:69;;;;;;;;;;;;;;;;;42661:5;-1:-1:-1;;;;;42653:27:0;;;:69;;;;;:::i;:::-;42737:17;;42627:95;;-1:-1:-1;42737:21:0;42733:179;;42834:10;42823:30;;;;;;;;;;;;:::i;:::-;42815:85;;;;-1:-1:-1;;;42815:85:0;;25236:2:1;42815:85:0;;;25218:21:1;25275:2;25255:18;;;25248:30;25314:34;25294:18;;;25287:62;-1:-1:-1;;;25365:18:1;;;25358:40;25415:19;;42815:85:0;25034:406:1;38168:931:0;-1:-1:-1;;;;;38490:18:0;;38486:160;;38530:9;38525:110;38549:3;:10;38545:1;:14;38525:110;;;38609:7;38617:1;38609:10;;;;;;;;:::i;:::-;;;;;;;38585:12;:20;38598:3;38602:1;38598:6;;;;;;;;:::i;:::-;;;;;;;38585:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;38561:3:0;;-1:-1:-1;38561:3:0;;:::i;:::-;;;38525:110;;;;38486:160;-1:-1:-1;;;;;38662:16:0;;38658:434;;38700:9;38695:386;38719:3;:10;38715:1;:14;38695:386;;;38755:10;38768:3;38772:1;38768:6;;;;;;;;:::i;:::-;;;;;;;38755:19;;38793:14;38810:7;38818:1;38810:10;;;;;;;;:::i;:::-;;;;;;;38793:27;;38839:14;38856:12;:16;38869:2;38856:16;;;;;;;;;;;;38839:33;;38909:6;38899;:16;;38891:69;;;;-1:-1:-1;;;38891:69:0;;23707:2:1;38891:69:0;;;23689:21:1;23746:2;23726:18;;;23719:30;23785:34;23765:18;;;23758:62;-1:-1:-1;;;23836:18:1;;;23829:38;23884:19;;38891:69:0;23505:404:1;38891:69:0;39012:16;;;;:12;:16;;;;;;39031:15;;39012:34;;38731:3;;;:::i;:::-;;;38695:386;;35277:813;-1:-1:-1;;;;;35517:13:0;;4486:20;4534:8;35513:570;;35553:79;;-1:-1:-1;;;35553:79:0;;-1:-1:-1;;;;;35553:43:0;;;;;:79;;35597:8;;35607:4;;35613:3;;35618:7;;35627:4;;35553:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35553:79:0;;;;;;;;-1:-1:-1;;35553:79:0;;;;;;;;;;;;:::i;:::-;;;35549:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;35945:6;35938:14;;-1:-1:-1;;;35938:14:0;;;;;;;;:::i;35549:523::-;;;35994:62;;-1:-1:-1;;;35994:62:0;;14283:2:1;35994:62:0;;;14265:21:1;14322:2;14302:18;;;14295:30;14361:34;14341:18;;;14334:62;-1:-1:-1;;;14412:18:1;;;14405:50;14472:19;;35994:62:0;14081:416:1;35549:523:0;-1:-1:-1;;;;;;35714:60:0;;-1:-1:-1;;;35714:60:0;35710:159;;35799:50;;-1:-1:-1;;;35799:50:0;;;;;;;:::i;36098:198::-;36218:16;;;36232:1;36218:16;;;;;;;;;36164;;36193:22;;36218:16;;;;;;;;;;;;-1:-1:-1;36218:16:0;36193:41;;36256:7;36245:5;36251:1;36245:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;36283:5;36098:198;-1:-1:-1;;36098:198:0:o;34525:744::-;-1:-1:-1;;;;;34740:13:0;;4486:20;4534:8;34736:526;;34776:72;;-1:-1:-1;;;34776:72:0;;-1:-1:-1;;;;;34776:38:0;;;;;:72;;34815:8;;34825:4;;34831:2;;34835:6;;34843:4;;34776:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34776:72:0;;;;;;;;-1:-1:-1;;34776:72:0;;;;;;;;;;;;:::i;:::-;;;34772:479;;;;:::i;:::-;-1:-1:-1;;;;;;34898:55:0;;-1:-1:-1;;;34898:55:0;34894:154;;34978:50;;-1:-1:-1;;;34978:50:0;;;;;;;:::i;6969:229::-;7106:12;7138:52;7160:6;7168:4;7174:1;7177:12;7138:21;:52::i;:::-;7131:59;;6969:229;;;;;;:::o;8089:510::-;8259:12;8317:5;8292:21;:30;;8284:81;;;;-1:-1:-1;;;8284:81:0;;18488:2:1;8284:81:0;;;18470:21:1;18527:2;18507:18;;;18500:30;18566:34;18546:18;;;18539:62;-1:-1:-1;;;18617:18:1;;;18610:36;18663:19;;8284:81:0;18286:402:1;8284:81:0;4486:20;;8376:60;;;;-1:-1:-1;;;8376:60:0;;24468:2:1;8376:60:0;;;24450:21:1;24507:2;24487:18;;;24480:30;24546:31;24526:18;;;24519:59;24595:18;;8376:60:0;24266:353:1;8376:60:0;8450:12;8464:23;8491:6;-1:-1:-1;;;;;8491:11:0;8510:5;8517:4;8491:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8449:73;;;;8540:51;8557:7;8566:10;8578:12;8540:16;:51::i;:::-;8533:58;8089:510;-1:-1:-1;;;;;;;8089:510:0:o;10775:712::-;10925:12;10954:7;10950:530;;;-1:-1:-1;10985:10:0;10978:17;;10950:530;11099:17;;:21;11095:374;;11297:10;11291:17;11358:15;11345:10;11341:2;11337:19;11330:44;11095:374;11440:12;11433:20;;-1:-1:-1;;;11433:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:735::-;541:5;594:3;587:4;579:6;575:17;571:27;561:55;;612:1;609;602:12;561:55;648:6;635:20;674:4;697:43;737:2;697:43;:::i;:::-;769:2;763:9;781:31;809:2;801:6;781:31;:::i;:::-;847:18;;;881:15;;;;-1:-1:-1;916:15:1;;;966:1;962:10;;;950:23;;946:32;;943:41;-1:-1:-1;940:61:1;;;997:1;994;987:12;940:61;1019:1;1029:163;1043:2;1040:1;1037:9;1029:163;;;1100:17;;1088:30;;1138:12;;;;1170;;;;1061:1;1054:9;1029:163;;;-1:-1:-1;1210:6:1;;487:735;-1:-1:-1;;;;;;;487:735:1:o;1227:220::-;1269:5;1322:3;1315:4;1307:6;1303:17;1299:27;1289:55;;1340:1;1337;1330:12;1289:55;1362:79;1437:3;1428:6;1415:20;1408:4;1400:6;1396:17;1362:79;:::i;1452:247::-;1511:6;1564:2;1552:9;1543:7;1539:23;1535:32;1532:52;;;1580:1;1577;1570:12;1532:52;1619:9;1606:23;1638:31;1663:5;1638:31;:::i;1704:251::-;1774:6;1827:2;1815:9;1806:7;1802:23;1798:32;1795:52;;;1843:1;1840;1833:12;1795:52;1875:9;1869:16;1894:31;1919:5;1894:31;:::i;1960:388::-;2028:6;2036;2089:2;2077:9;2068:7;2064:23;2060:32;2057:52;;;2105:1;2102;2095:12;2057:52;2144:9;2131:23;2163:31;2188:5;2163:31;:::i;:::-;2213:5;-1:-1:-1;2270:2:1;2255:18;;2242:32;2283:33;2242:32;2283:33;:::i;:::-;2335:7;2325:17;;;1960:388;;;;;:::o;2353:1071::-;2507:6;2515;2523;2531;2539;2592:3;2580:9;2571:7;2567:23;2563:33;2560:53;;;2609:1;2606;2599:12;2560:53;2648:9;2635:23;2667:31;2692:5;2667:31;:::i;:::-;2717:5;-1:-1:-1;2774:2:1;2759:18;;2746:32;2787:33;2746:32;2787:33;:::i;:::-;2839:7;-1:-1:-1;2897:2:1;2882:18;;2869:32;2920:18;2950:14;;;2947:34;;;2977:1;2974;2967:12;2947:34;3000:61;3053:7;3044:6;3033:9;3029:22;3000:61;:::i;:::-;2990:71;;3114:2;3103:9;3099:18;3086:32;3070:48;;3143:2;3133:8;3130:16;3127:36;;;3159:1;3156;3149:12;3127:36;3182:63;3237:7;3226:8;3215:9;3211:24;3182:63;:::i;:::-;3172:73;;3298:3;3287:9;3283:19;3270:33;3254:49;;3328:2;3318:8;3315:16;3312:36;;;3344:1;3341;3334:12;3312:36;;3367:51;3410:7;3399:8;3388:9;3384:24;3367:51;:::i;:::-;3357:61;;;2353:1071;;;;;;;;:::o;3429:734::-;3533:6;3541;3549;3557;3565;3618:3;3606:9;3597:7;3593:23;3589:33;3586:53;;;3635:1;3632;3625:12;3586:53;3674:9;3661:23;3693:31;3718:5;3693:31;:::i;:::-;3743:5;-1:-1:-1;3800:2:1;3785:18;;3772:32;3813:33;3772:32;3813:33;:::i;:::-;3865:7;-1:-1:-1;3919:2:1;3904:18;;3891:32;;-1:-1:-1;3970:2:1;3955:18;;3942:32;;-1:-1:-1;4025:3:1;4010:19;;3997:33;4053:18;4042:30;;4039:50;;;4085:1;4082;4075:12;4039:50;4108:49;4149:7;4140:6;4129:9;4125:22;4108:49;:::i;4168:730::-;4295:6;4303;4311;4364:2;4352:9;4343:7;4339:23;4335:32;4332:52;;;4380:1;4377;4370:12;4332:52;4419:9;4406:23;4438:31;4463:5;4438:31;:::i;:::-;4488:5;-1:-1:-1;4544:2:1;4529:18;;4516:32;4567:18;4597:14;;;4594:34;;;4624:1;4621;4614:12;4594:34;4647:61;4700:7;4691:6;4680:9;4676:22;4647:61;:::i;:::-;4637:71;;4761:2;4750:9;4746:18;4733:32;4717:48;;4790:2;4780:8;4777:16;4774:36;;;4806:1;4803;4796:12;4774:36;;4829:63;4884:7;4873:8;4862:9;4858:24;4829:63;:::i;:::-;4819:73;;;4168:730;;;;;:::o;4903:382::-;4968:6;4976;5029:2;5017:9;5008:7;5004:23;5000:32;4997:52;;;5045:1;5042;5035:12;4997:52;5084:9;5071:23;5103:31;5128:5;5103:31;:::i;:::-;5153:5;-1:-1:-1;5210:2:1;5195:18;;5182:32;5223:30;5182:32;5223:30;:::i;5290:315::-;5358:6;5366;5419:2;5407:9;5398:7;5394:23;5390:32;5387:52;;;5435:1;5432;5425:12;5387:52;5474:9;5461:23;5493:31;5518:5;5493:31;:::i;:::-;5543:5;5595:2;5580:18;;;;5567:32;;-1:-1:-1;;;5290:315:1:o;5610:383::-;5687:6;5695;5703;5756:2;5744:9;5735:7;5731:23;5727:32;5724:52;;;5772:1;5769;5762:12;5724:52;5811:9;5798:23;5830:31;5855:5;5830:31;:::i;:::-;5880:5;5932:2;5917:18;;5904:32;;-1:-1:-1;5983:2:1;5968:18;;;5955:32;;5610:383;-1:-1:-1;;;5610:383:1:o;5998:1288::-;6116:6;6124;6177:2;6165:9;6156:7;6152:23;6148:32;6145:52;;;6193:1;6190;6183:12;6145:52;6233:9;6220:23;6262:18;6303:2;6295:6;6292:14;6289:34;;;6319:1;6316;6309:12;6289:34;6357:6;6346:9;6342:22;6332:32;;6402:7;6395:4;6391:2;6387:13;6383:27;6373:55;;6424:1;6421;6414:12;6373:55;6460:2;6447:16;6482:4;6505:43;6545:2;6505:43;:::i;:::-;6577:2;6571:9;6589:31;6617:2;6609:6;6589:31;:::i;:::-;6655:18;;;6689:15;;;;-1:-1:-1;6724:11:1;;;6766:1;6762:10;;;6754:19;;6750:28;;6747:41;-1:-1:-1;6744:61:1;;;6801:1;6798;6791:12;6744:61;6823:1;6814:10;;6833:238;6847:2;6844:1;6841:9;6833:238;;;6918:3;6905:17;6935:31;6960:5;6935:31;:::i;:::-;6979:18;;6865:1;6858:9;;;;;7017:12;;;;7049;;6833:238;;;-1:-1:-1;7090:6:1;-1:-1:-1;;7134:18:1;;7121:32;;-1:-1:-1;;7165:16:1;;;7162:36;;;7194:1;7191;7184:12;7162:36;;7217:63;7272:7;7261:8;7250:9;7246:24;7217:63;:::i;:::-;7207:73;;;5998:1288;;;;;:::o;7291:245::-;7358:6;7411:2;7399:9;7390:7;7386:23;7382:32;7379:52;;;7427:1;7424;7417:12;7379:52;7459:9;7453:16;7478:28;7500:5;7478:28;:::i;7541:245::-;7599:6;7652:2;7640:9;7631:7;7627:23;7623:32;7620:52;;;7668:1;7665;7658:12;7620:52;7707:9;7694:23;7726:30;7750:5;7726:30;:::i;7791:249::-;7860:6;7913:2;7901:9;7892:7;7888:23;7884:32;7881:52;;;7929:1;7926;7919:12;7881:52;7961:9;7955:16;7980:30;8004:5;7980:30;:::i;8312:180::-;8371:6;8424:2;8412:9;8403:7;8399:23;8395:32;8392:52;;;8440:1;8437;8430:12;8392:52;-1:-1:-1;8463:23:1;;8312:180;-1:-1:-1;8312:180:1:o;8497:184::-;8567:6;8620:2;8608:9;8599:7;8595:23;8591:32;8588:52;;;8636:1;8633;8626:12;8588:52;-1:-1:-1;8659:16:1;;8497:184;-1:-1:-1;8497:184:1:o;8686:518::-;8764:6;8772;8825:2;8813:9;8804:7;8800:23;8796:32;8793:52;;;8841:1;8838;8831:12;8793:52;8877:9;8864:23;8854:33;;8938:2;8927:9;8923:18;8910:32;8965:18;8957:6;8954:30;8951:50;;;8997:1;8994;8987:12;8951:50;9020:22;;9073:4;9065:13;;9061:27;-1:-1:-1;9051:55:1;;9102:1;9099;9092:12;9051:55;9125:73;9190:7;9185:2;9172:16;9167:2;9163;9159:11;9125:73;:::i;9209:248::-;9277:6;9285;9338:2;9326:9;9317:7;9313:23;9309:32;9306:52;;;9354:1;9351;9344:12;9306:52;-1:-1:-1;;9377:23:1;;;9447:2;9432:18;;;9419:32;;-1:-1:-1;9209:248:1:o;9462:435::-;9515:3;9553:5;9547:12;9580:6;9575:3;9568:19;9606:4;9635:2;9630:3;9626:12;9619:19;;9672:2;9665:5;9661:14;9693:1;9703:169;9717:6;9714:1;9711:13;9703:169;;;9778:13;;9766:26;;9812:12;;;;9847:15;;;;9739:1;9732:9;9703:169;;;-1:-1:-1;9888:3:1;;9462:435;-1:-1:-1;;;;;9462:435:1:o;9902:257::-;9943:3;9981:5;9975:12;10008:6;10003:3;9996:19;10024:63;10080:6;10073:4;10068:3;10064:14;10057:4;10050:5;10046:16;10024:63;:::i;:::-;10141:2;10120:15;-1:-1:-1;;10116:29:1;10107:39;;;;10148:4;10103:50;;9902:257;-1:-1:-1;;9902:257:1:o;10164:274::-;10293:3;10331:6;10325:13;10347:53;10393:6;10388:3;10381:4;10373:6;10369:17;10347:53;:::i;:::-;10416:16;;;;;10164:274;-1:-1:-1;;10164:274:1:o;10651:826::-;-1:-1:-1;;;;;11048:15:1;;;11030:34;;11100:15;;11095:2;11080:18;;11073:43;11010:3;11147:2;11132:18;;11125:31;;;10973:4;;11179:57;;11216:19;;11208:6;11179:57;:::i;:::-;11284:9;11276:6;11272:22;11267:2;11256:9;11252:18;11245:50;11318:44;11355:6;11347;11318:44;:::i;:::-;11304:58;;11411:9;11403:6;11399:22;11393:3;11382:9;11378:19;11371:51;11439:32;11464:6;11456;11439:32;:::i;:::-;11431:40;10651:826;-1:-1:-1;;;;;;;;10651:826:1:o;11862:560::-;-1:-1:-1;;;;;12159:15:1;;;12141:34;;12211:15;;12206:2;12191:18;;12184:43;12258:2;12243:18;;12236:34;;;12301:2;12286:18;;12279:34;;;12121:3;12344;12329:19;;12322:32;;;12084:4;;12371:45;;12396:19;;12388:6;12371:45;:::i;12706:261::-;12885:2;12874:9;12867:21;12848:4;12905:56;12957:2;12946:9;12942:18;12934:6;12905:56;:::i;12972:465::-;13229:2;13218:9;13211:21;13192:4;13255:56;13307:2;13296:9;13292:18;13284:6;13255:56;:::i;:::-;13359:9;13351:6;13347:22;13342:2;13331:9;13327:18;13320:50;13387:44;13424:6;13416;13387:44;:::i;:::-;13379:52;12972:465;-1:-1:-1;;;;;12972:465:1:o;13857:219::-;14006:2;13995:9;13988:21;13969:4;14026:44;14066:2;14055:9;14051:18;14043:6;14026:44;:::i;14855:404::-;15057:2;15039:21;;;15096:2;15076:18;;;15069:30;15135:34;15130:2;15115:18;;15108:62;-1:-1:-1;;;15201:2:1;15186:18;;15179:38;15249:3;15234:19;;14855:404::o;15264:341::-;15466:2;15448:21;;;15505:2;15485:18;;;15478:30;-1:-1:-1;;;15539:2:1;15524:18;;15517:47;15596:2;15581:18;;15264:341::o;16782:400::-;16984:2;16966:21;;;17023:2;17003:18;;;16996:30;17062:34;17057:2;17042:18;;17035:62;-1:-1:-1;;;17128:2:1;17113:18;;17106:34;17172:3;17157:19;;16782:400::o;17187:405::-;17389:2;17371:21;;;17428:2;17408:18;;;17401:30;17467:34;17462:2;17447:18;;17440:62;-1:-1:-1;;;17533:2:1;17518:18;;17511:39;17582:3;17567:19;;17187:405::o;17597:332::-;17799:2;17781:21;;;17838:1;17818:18;;;17811:29;-1:-1:-1;;;17871:2:1;17856:18;;17849:39;17920:2;17905:18;;17597:332::o;20101:401::-;20303:2;20285:21;;;20342:2;20322:18;;;20315:30;20381:34;20376:2;20361:18;;20354:62;-1:-1:-1;;;20447:2:1;20432:18;;20425:35;20492:3;20477:19;;20101:401::o;21977:399::-;22179:2;22161:21;;;22218:2;22198:18;;;22191:30;22257:34;22252:2;22237:18;;22230:62;-1:-1:-1;;;22323:2:1;22308:18;;22301:33;22366:3;22351:19;;21977:399::o;22381:406::-;22583:2;22565:21;;;22622:2;22602:18;;;22595:30;22661:34;22656:2;22641:18;;22634:62;-1:-1:-1;;;22727:2:1;22712:18;;22705:40;22777:3;22762:19;;22381:406::o;23144:356::-;23346:2;23328:21;;;23365:18;;;23358:30;23424:34;23419:2;23404:18;;23397:62;23491:2;23476:18;;23144:356::o;26208:404::-;26410:2;26392:21;;;26449:2;26429:18;;;26422:30;26488:34;26483:2;26468:18;;26461:62;-1:-1:-1;;;26554:2:1;26539:18;;26532:38;26602:3;26587:19;;26208:404::o;27019:355::-;27221:2;27203:21;;;27260:2;27240:18;;;27233:30;27299:33;27294:2;27279:18;;27272:61;27365:2;27350:18;;27019:355::o;27814:183::-;27874:4;27907:18;27899:6;27896:30;27893:56;;;27929:18;;:::i;:::-;-1:-1:-1;27974:1:1;27970:14;27986:4;27966:25;;27814:183::o;28002:128::-;28042:3;28073:1;28069:6;28066:1;28063:13;28060:39;;;28079:18;;:::i;:::-;-1:-1:-1;28115:9:1;;28002:128::o;28135:168::-;28175:7;28241:1;28237;28233:6;28229:14;28226:1;28223:21;28218:1;28211:9;28204:17;28200:45;28197:71;;;28248:18;;:::i;:::-;-1:-1:-1;28288:9:1;;28135:168::o;28308:258::-;28380:1;28390:113;28404:6;28401:1;28398:13;28390:113;;;28480:11;;;28474:18;28461:11;;;28454:39;28426:2;28419:10;28390:113;;;28521:6;28518:1;28515:13;28512:48;;;-1:-1:-1;;28556:1:1;28538:16;;28531:27;28308:258::o;28571:380::-;28650:1;28646:12;;;;28693;;;28714:61;;28768:4;28760:6;28756:17;28746:27;;28714:61;28821:2;28813:6;28810:14;28790:18;28787:38;28784:161;;;28867:10;28862:3;28858:20;28855:1;28848:31;28902:4;28899:1;28892:15;28930:4;28927:1;28920:15;28784:161;;28571:380;;;:::o;28956:249::-;29066:2;29047:13;;-1:-1:-1;;29043:27:1;29031:40;;29101:18;29086:34;;29122:22;;;29083:62;29080:88;;;29148:18;;:::i;:::-;29184:2;29177:22;-1:-1:-1;;28956:249:1:o;29210:135::-;29249:3;-1:-1:-1;;29270:17:1;;29267:43;;;29290:18;;:::i;:::-;-1:-1:-1;29337:1:1;29326:13;;29210:135::o;29350:127::-;29411:10;29406:3;29402:20;29399:1;29392:31;29442:4;29439:1;29432:15;29466:4;29463:1;29456:15;29482:127;29543:10;29538:3;29534:20;29531:1;29524:31;29574:4;29571:1;29564:15;29598:4;29595:1;29588:15;29614:127;29675:10;29670:3;29666:20;29663:1;29656:31;29706:4;29703:1;29696:15;29730:4;29727:1;29720:15;29746:179;29781:3;29823:1;29805:16;29802:23;29799:120;;;29869:1;29866;29863;29848:23;-1:-1:-1;29906:1:1;29900:8;29895:3;29891:18;29799:120;29746:179;:::o;29930:671::-;29969:3;30011:4;29993:16;29990:26;29987:39;;;29930:671;:::o;29987:39::-;30053:2;30047:9;-1:-1:-1;;30118:16:1;30114:25;;30111:1;30047:9;30090:50;30169:4;30163:11;30193:16;30228:18;30299:2;30292:4;30284:6;30280:17;30277:25;30272:2;30264:6;30261:14;30258:45;30255:58;;;30306:5;;;;;29930:671;:::o;30255:58::-;30343:6;30337:4;30333:17;30322:28;;30379:3;30373:10;30406:2;30398:6;30395:14;30392:27;;;30412:5;;;;;;29930:671;:::o;30392:27::-;30496:2;30477:16;30471:4;30467:27;30463:36;30456:4;30447:6;30442:3;30438:16;30434:27;30431:69;30428:82;;;30503:5;;;;;;29930:671;:::o;30428:82::-;30519:57;30570:4;30561:6;30553;30549:19;30545:30;30539:4;30519:57;:::i;:::-;-1:-1:-1;30592:3:1;;29930:671;-1:-1:-1;;;;;29930:671:1:o;30606:131::-;-1:-1:-1;;;;;30681:31:1;;30671:42;;30661:70;;30727:1;30724;30717:12;30742:118;30828:5;30821:13;30814:21;30807:5;30804:32;30794:60;;30850:1;30847;30840:12;30865:131;-1:-1:-1;;;;;;30939:32:1;;30929:43;;30919:71;;30986:1;30983;30976:12
Swarm Source
ipfs://d6d212d509a4bfbcdb920929ace9d487b8b55aab20893b325eb12614c5f05650
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|