ETH Price: $3,098.44 (+0.17%)
Gas: 5 Gwei

Token

NOUNDLETHEORY (NOUNDLETHEORY)
 

Overview

Max Total Supply

10,066 NOUNDLETHEORY

Holders

3,904

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
13 NOUNDLETHEORY
0xfccba679d3c8aaf521fbc69aedba9666174a7584
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NoundleTheory

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-28
*/

// File: @openzeppelin/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.0 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.0 (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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.0 (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: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.0 (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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev 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, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/NoundleTheory.sol

pragma solidity ^0.8.0;






interface InterfaceRainbows {
    function transferTokens(address _from, address _to) external;
    function burn(address user, uint256 amount) external;
}

interface InterfaceOriginals {
    function ownerOf(uint256 tokenId) external view returns (address);
    function getNoundlesFromWallet(address _noundles) external view returns (uint256[] memory);
}

interface InterfaceRandomNumber {
    function getRandomNumber(uint256 arg) external returns (uint);
}

/*
    :)
*/
contract NoundleTheory is ERC721, ERC721Enumerable, Ownable {

    // Interfaces to interact with the other contracts
    InterfaceRainbows public Rainbows;
    InterfaceOriginals public Originals;
    InterfaceRandomNumber public RandomNumber;

    /*
     * Constants
     * MAX_EVIL_NOUNDLES        = Maximum Supply for Evil Noundles that could be minted
     * MAX_COMPANION_NOUNDLES   = Maximum Supply for public mint with eth or rainbows (with 100% chance at companion).
     * MAX_FREE_COMPANION_MINTS = Maximum Supply for every Noundle holder to mint one companion
     * MAX_FREE_LAND_MINTS      = Maximum Supply for every Genesis Noundle Holder to mint some land (you deserve it kings)
     * MAX_RESERVED_EVIL        = Evil Reserved noundles for the team for giveaways, advisors, etc.
     * MAX_RESERVED_LAND        = Land Reserved noundles for the team for giveaways, advisors, etc.
     * MAX_RESERVED_COMP        = Companions Reserved noundles for the team for giveaways, advisors, etc.
     */
    uint256 public constant MAX_EVIL_NOUNDLES        = 40000;
    uint256 public constant MAX_COMPANION_NOUNDLES   = 7000;
    uint256 public constant MAX_FREE_COMPANION_MINTS = 8888;
    uint256 public constant MAX_FREE_LAND_MINTS      = 8888;
    uint256 public constant MAX_RESERVED_EVIL        = 250;
    uint256 public constant MAX_RESERVED_LAND        = 250;
    uint256 public constant MAX_RESERVED_COMP        = 250;

    // Track all the mintable tokens.
    uint256[] public companionList;
    uint256[] public evilList;
    uint256[] public lowLandList;
    uint256[] public midLandList;
    uint256[] public highLandList;

    // Each number is based on a %
    uint256 public percentEvil      = 10;
    uint256 public percentSteal     = 10;
    uint256 public percentJail      = 10;
    uint256 public percentLowLand   = 75;
    uint256 public percentMidLand   = 20;
    uint256 public percentHighLand  = 5;

    // Total minted of each kind.
    uint256 public mintCountCompanions = 0;
    uint256 public mintCountEvil       = 0;
    uint256 public mintCountLandLow    = 0;
    uint256 public mintCountLandMid    = 0;
    uint256 public mintCountLandHigh   = 0;

    // Public minting costs - these will most likely change when contract is deployed, so don't look to deep into them
    uint256 public publicMintCompanionPriceEth     = 0.1 ether;
    uint256 public publicMintCompanionPriceRainbow = 20 ether;
    uint256 public evilMintPriceRainbow            = 20 ether;
    uint256 public landMintPriceRainbow            = 50 ether;

    // Track the free mints for companions and evil noundle mints
    uint256 public freeCompanionMint = 0;
    uint256 public evilNoundleMint   = 0;

    // Tracks the reserved mints to make sure we don't go over it
    uint256 public reservedEvil = 0;
    uint256 public reservedLand = 0;
    uint256 public reservedComp = 0;

    // Track the whitelisted evil noundles
    mapping(address => bool) evilNoundleAllowed;
    mapping(address => bool) evilNoundleMinted;
    mapping(address => bool) freeCompanionAllowed;
    mapping(address => bool) freeCompanionMinted;
    mapping(address => bool) alreadyPublicMinted;
    bool public overrideAlreadyPublicMinted = false;

    // Track the whitelisted land owners
    mapping(address => bool) landAllowed;
    mapping(address => bool) landMinted;

    // Tracks the tokens that were already used to mint companions - prevents people from transfering their token to new wallets and claiming again :)
    mapping(uint256 => bool) alreadyMintedNoundles;

    // Tracks the tokens that were already used to mint land
    mapping(uint256 => bool) alreadyMintedLandNoundles;

    // Minting Settings
    bool    public saleEnabled = false;
    uint256 public saleOneTime = 0;
    uint256 public saleTwoTime = 0; // lands + more :)

    // $RAINBOW Minting costs
    bool    public rainbowMintingEnabled = false;
    uint256 public rBaseMintPriceTier1   = 40.0 ether;
    uint256 public rBaseMintPriceTier2   = 80.0 ether;
    uint256 public rBaseMintPriceTier3   = 120.0 ether;
    uint256 public tier2Start            = 10000;
    uint256 public tier3Start            = 17500;

    // Jail Settings
    uint256 public jailLength    = 10800;
    uint256 public getOutOfJail  = 2.0 ether;
    mapping (uint256 => uint256) public jailHouse;

    // Counters.
    uint256 public counterStolenAttempted = 0;
    uint256 public counterStolen          = 0;
    uint256 public counterBail            = 0;
    uint256 public counterJailed          = 0;

    // Most Wanted
    mapping (address => uint256) public mostWantedValues;
    address [] public mostWantedMembers;

    // Tracks the amount of tokens for Noundle Theory
    mapping (address => uint256) public companionBalance;
    mapping (address => uint256) public evilBalance;

    // different tiers give different protection bonuses when being robbed
    mapping (address => uint256) public lowLandBalance;
    mapping (address => uint256) public midLandBalance;
    mapping (address => uint256) public highLandBalance;

    /*
     * The types of Noundles in the Noundle Theory Game
     * 0 - companions
     * 1 - evil noundles
     * 2 - low tier land (phase 2)
     * 3 - mid tier land (phase 3)
     * 4 - high tier land (phase 4)
     **/
    mapping (uint256 => uint8) public noundleType;
    mapping (uint256 => uint256) public noundleOffsetCount;

    // Rest of the contract settings
    string  private baseURI;
    address public founder1;
    address public founder2;

    // Modifiers
    modifier isSaleEnabled() {
        require(saleEnabled, "Cannot be sold yet.");
        _;
    }

    modifier isPhaseOneStarted() {
        require(block.timestamp >= saleOneTime && saleOneTime > 0, "Phase One hasn't started");
        _;
    }

    modifier isPhaseTwoStarted() {
        require(block.timestamp >= saleTwoTime && saleTwoTime > 0, "Phase Two hasn't started");
        _;
    }

    modifier isRainbowMintingEnabled() {
        require(rainbowMintingEnabled, "Cannot mint with $RAINBOWS yet.");
        _;
    }

    constructor(string memory _uri) ERC721("NOUNDLETHEORY", "NOUNDLETHEORY") {
        baseURI = _uri;
    }

    // Adds a user to the claimable evil noundle mint
    function addEvilNoundlers(address[] memory _noundles) public onlyOwner {
        for (uint256 __noundles;__noundles < _noundles.length;__noundles++) {
            evilNoundleAllowed[_noundles[__noundles]] = true;
        }
    }

    // Check if a address is on the free mint.
    function checkEvilNoundlers(address _noundles) public view returns (bool) {
        return evilNoundleAllowed[_noundles];
    }

    // Adds a user to the claimable free noundle mint
    function addFreeNoundlers(address[] memory _noundles) public onlyOwner {
        for (uint256 __noundles;__noundles < _noundles.length;__noundles++) {
            freeCompanionAllowed[_noundles[__noundles]] = true;
        }
    }

    // Check if a address is on the free mint.
    function checkFreeNoundlers(address _noundles) public view returns (bool) {
        return freeCompanionAllowed[_noundles];
    }


    // generic minting function :)
    function _handleMinting(address _to, uint256 _index, uint8 _type) private {

        // Attempt to mint.
        _safeMint(_to, _index);

        // Set it's type in place.
        noundleType[_index] = _type;

        if (_type == 0) {
            companionBalance[msg.sender]++;
            companionList.push(_index);
            noundleOffsetCount[_index] = mintCountCompanions;
            mintCountCompanions++;
        } else if (_type == 1) {
            evilBalance[msg.sender]++;
            evilList.push(_index);
            noundleOffsetCount[_index] = mintCountEvil;
            mintCountEvil++;
        } else if (_type == 2) {
            lowLandBalance[msg.sender]++;
            lowLandList.push(_index);
            noundleOffsetCount[_index] = mintCountLandLow;
            mintCountLandLow++;
        } else if (_type == 3) {
            midLandBalance[msg.sender]++;
            midLandList.push(_index);
            noundleOffsetCount[_index] = mintCountLandMid;
            mintCountLandMid++;
        } else {
            highLandBalance[msg.sender]++;
            highLandList.push(_index);
            noundleOffsetCount[_index] = mintCountLandHigh;
            mintCountLandHigh++;
        }
    }

    // Reserves some of the supply of the noundles for giveaways & the community
    function reserveNoundles(uint256 _amount, uint8 _type) public onlyOwner {
        // enforce reserve limits based on type claimed
        if (_type == 0) {
            require(reservedComp + _amount <= MAX_RESERVED_COMP, "Cannot reserve more companions!");
        } else if (_type == 1) {
            require(reservedEvil + _amount <= MAX_RESERVED_EVIL, "Cannot reserve more evil noundles!");
        } else {
            require(reservedLand + _amount <= MAX_RESERVED_LAND, "Cannot reserve more land!");
        }

        uint256 _ts = totalSupply();

        // Mint the reserves.
        for (uint256 i; i < _amount; i++) {
            _handleMinting(msg.sender, _ts + i, _type);

            if (_type == 0) {
                reservedComp++;
            } else if (_type == 1) {
                reservedEvil++;
            } else {
                reservedLand++;
            }
        }
    }

    // Mint your evil noundle.
    function claimEvilNoundle() public payable isPhaseOneStarted {
        uint256 __noundles = totalSupply();

        // Verify request.
        require(freeCompanionMint + 1 <= MAX_FREE_COMPANION_MINTS,   "We ran out of evil noundles :(");
        require(evilNoundleAllowed[msg.sender],         "You are not on whitelist");
        require(evilNoundleMinted[msg.sender] == false, "You already minted your free noundle.");

        // Make sure that the wallet is holding at least 1 noundle.
        require(Originals.getNoundlesFromWallet(msg.sender).length > 0, "You must hold at least one Noundle to mint");

        // Burn the rainbows.
        Rainbows.burn(msg.sender, evilMintPriceRainbow);

        // Mark it as they already got theirs.
        evilNoundleMinted[msg.sender] = true;

        // Add to our free mint count.
        freeCompanionMint += 1;

        // Mint it.
        _handleMinting(msg.sender, __noundles, 1);
    }

    // Mint your free companion.
    function mintHolderNoundles() public payable isPhaseOneStarted {
        uint256 __noundles = totalSupply();

        // Verify request.
        require(freeCompanionMint + 1 <= MAX_FREE_COMPANION_MINTS,   "We ran out of evil noundles :(");
        require(freeCompanionAllowed[msg.sender],                    "You are not on whitelist");
        require(freeCompanionMinted[msg.sender] == false,            "You already minted your free companion.");

        // Make sure that the wallet is holding at least 1 noundle.
        require(Originals.getNoundlesFromWallet(msg.sender).length > 0, "You must hold at least one Noundle to mint");

        // Mark it as they already got theirs.
        freeCompanionMinted[msg.sender] = true;

        // Add to our free mint count.
        freeCompanionMint += 1;

        // Mint it.
        _handleMinting(msg.sender, __noundles, 0);
    }

    // Mint your companion (with Eth).
    function mintNoundles(uint256 _noundles) public payable isPhaseOneStarted {
        uint256 __noundles = totalSupply();

        // Make sure to Do you even read these
        require(_noundles > 0 && _noundles <= 5,               "Your amount needs to be greater then 0 and can't exceed 5");
        require(_noundles * publicMintCompanionPriceEth <= msg.value,   "Ser we need more money for your noundles");
        require(_noundles + __noundles <= MAX_COMPANION_NOUNDLES, "We ran out of noundles! Try minting with less!");
        require(alreadyPublicMinted[msg.sender] == false || overrideAlreadyPublicMinted, "You cannot mint twice");

        alreadyPublicMinted[msg.sender] = true;

        for (uint256 ___noundles; ___noundles < _noundles; ___noundles++) {
            _handleMinting(msg.sender,  __noundles + ___noundles, 0);
        }
    }

    // Mint your companion (with $RAINBOWS).
    function mintNoundlesWithRainbows(uint256 _noundles) public payable isPhaseOneStarted {
        uint256 __noundles = totalSupply();

        // Make sure to Do you even read these
        require(_noundles > 0 && _noundles <= 5,              "Your amount needs to be greater then 0 and can't exceed 5");
        require(_noundles + __noundles <= MAX_COMPANION_NOUNDLES, "We ran out of noundles! Try minting with less!");
        require(alreadyPublicMinted[msg.sender] == false || overrideAlreadyPublicMinted, "You cannot mint twice");

        // Burn the rainbows.
        Rainbows.burn(msg.sender, publicMintCompanionPriceRainbow * _noundles);

        alreadyPublicMinted[msg.sender] = true;

        // Mint it.
        for (uint256 ___noundles; ___noundles < _noundles; ___noundles++) {
            _handleMinting(msg.sender, __noundles + ___noundles, 0);
        }
    }

    /*
        Rainbow Minting.
    */
    function _handleRainbowMinting(address _to, uint256 index) private {

        // make a copy of who is getting it.
        address to = _to;

        // Determine what kind of mint it should be.
        uint8 _type = 0;

        // If we determine it's evil.
        if(percentChance(index, 100, percentEvil)){
            _type = 1;
        }

        // Determine if it was stolen, give it to the evil noundle owner.
        if(percentChance(index, 100, percentSteal)){
            uint256 evilTokenId = getRandomEvilNoundle(index, 0);

            // If it's 0 then we don't have a evil noundle to give it to.
            if(evilTokenId != 0){

                counterStolenAttempted += 1;

                // Check if it failed to steal and needs to go to jail.
                if(percentChance(index, 100, percentJail)){
                    jailHouse[evilTokenId] = block.timestamp;

                    counterJailed += 1;
                }else{
                    // The evil noundle stole the nft.
                    to = ownerOf(evilTokenId);
                    counterStolen += 1;

                    // Add to the most wanted.
                    if(mostWantedValues[to] == 0){
                        mostWantedMembers.push(to);
                    }

                    mostWantedValues[to] += 1;
                }
            }
        }

        // Burn the rainbows.
        Rainbows.burn(msg.sender, costToMintWithRainbows());

        // Mint it.
        _handleMinting(to, index, _type);
    }

    // Handle consuming rainbow to mint a new NFT with random chance.
    function mintWithRainbows(uint256 _noundles) public payable isRainbowMintingEnabled {
        uint256 __noundles = totalSupply();

        require(_noundles > 0 && _noundles <= 10,              "Your amount needs to be greater then 0 and can't exceed 10");
        require(_noundles + (mintCountCompanions + mintCountEvil) <= MAX_EVIL_NOUNDLES, "We ran out of noundles! Try minting with less!");

        for (uint256 ___noundles; ___noundles < _noundles; ___noundles++) {
            _handleRainbowMinting(msg.sender,  __noundles + ___noundles);
        }
    }

    // Mint your free lkand.
    function mintHolderLandNoundles(uint256 _noundles) public payable isPhaseTwoStarted {
        uint256 __noundles = totalSupply();

        require(_noundles > 0 && _noundles <= 10, "Your amount needs to be greater then 0 and can't exceed 10");
        require(_noundles + __noundles <= MAX_FREE_LAND_MINTS, "We ran out of land! Try minting with less!");

        // The noundles that the sender is holding.
        uint256[] memory holdingNoundles = Originals.getNoundlesFromWallet(msg.sender);

        uint256 offset = 0;

        // Mint as many as they are holding.
        for (uint256 index; (index < holdingNoundles.length) && index < _noundles; index += 1){

            // Check if it has been minted before.
            if(alreadyMintedLandNoundles[holdingNoundles[index]]){
                continue;
            }

            uint8 _type = 2;

            // Pick a random type of land.
            if(percentChance(__noundles + offset, (percentLowLand + percentMidLand + percentHighLand), percentHighLand)){
                _type = 4;
            }else if(percentChance(__noundles + offset, (percentLowLand + percentMidLand + percentHighLand), percentMidLand)){
                _type = 3;
            }

            // Burn the rainbows.
            Rainbows.burn(msg.sender, landMintPriceRainbow);

            // Mark it as minted.
            alreadyMintedLandNoundles[holdingNoundles[index]] = true;

            // Mint it.
            _handleMinting(msg.sender,  __noundles + offset, _type);

            // Go to the next offset.
            offset += 1;
        }
    }


    /*
        Jail Related
    */
    // Get a evil out of jail.
    function getOutOfJailByTokenId(uint256 _tokenId) public payable isRainbowMintingEnabled {

        // Check that it is a evil noundle.
        require(noundleType[_tokenId] == 1, "Only evil noundles can go to jail.");

        // Burn the rainbows to get out of jail.
        Rainbows.burn(msg.sender, getOutOfJail);

        // Reset the jail time.
        jailHouse[_tokenId] = 1;

        // Stat track.
        counterBail += 1;
    }


    /*
        Helpers
    */
    function setPayoutAddresses(address[] memory _noundles) public onlyOwner {
        founder1 = _noundles[0];
        founder2 = _noundles[1];
    }

    function withdrawFunds(uint256 _noundles) public payable onlyOwner {
        uint256 percentle = _noundles / 100;

        require(payable(founder1).send(percentle * 50));
        require(payable(founder2).send(percentle * 50));
    }

    // Pick a evil noundle randomly from our list.
    function getRandomEvilNoundle(uint256 index, uint256 depth) internal returns(uint256) {
        uint256 selectedIndex = RandomNumber.getRandomNumber(index) % evilList.length;

        // If it's not in jail.
        if(jailHouse[evilList[selectedIndex]] + jailLength < block.timestamp){
            return evilList[selectedIndex];
        }

        // If we can't find one in 100 attempts, select none.
        if(depth > 99){
            return 0;
        }

        // If it's in jail, it can't steal so try again.
        return getRandomEvilNoundle(index, depth + 1);
    }

    // Pick a evil noundle randomly from our list.
    function percentChance(uint256 index, uint256 total, uint256 chance) internal returns(bool) {
        if((RandomNumber.getRandomNumber(index) % total) < chance){
            return true;
        }else{
            return false;
        }
    }

    // Determine how much to mint a one with rainbows.
    function costToMintWithRainbows() public view returns(uint256) {

        uint256 total = mintCountCompanions + mintCountEvil;

        if(total >= tier2Start){
            return rBaseMintPriceTier2;
        }
        if(total >= tier3Start){
            return rBaseMintPriceTier3;
        }

        return rBaseMintPriceTier1;
    }

    // Gets the noundle theory tokens and returns a array with all the tokens owned
    function getNoundlesFromWallet(address _noundles) external view returns (uint256[] memory) {
        uint256 __noundles = balanceOf(_noundles);

        uint256[] memory ___noundles = new uint256[](__noundles);
        for (uint256 i;i < __noundles;i++) {
            ___noundles[i] = tokenOfOwnerByIndex(_noundles, i);
        }

        return ___noundles;
    }

    // Returns the addresses that own any evil noundle - seems rare :eyes:
    function getEvilNoundleOwners() external view returns (address[] memory) {
        address[] memory result = new address[](evilList.length);

        for(uint256 index; index < evilList.length; index += 1){
            if(jailHouse[evilList[index]] + jailLength <= block.timestamp){
                result[index] = ownerOf(evilList[index]);
            }
        }

        return result;
    }

    // Helper to convert int to string (thanks stack overflow).
    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }

    // Most wanted.
    function getMostWanted() external view returns(address[] memory) {return mostWantedMembers;}
    function getMostWantedValue(address _arg) external view returns(uint256) {return mostWantedValues[_arg];}
    function resetMostWanted() public onlyOwner {

        // Reset the value for each.
        for(uint256 i = 0; i < mostWantedMembers.length; i += 1){
            mostWantedValues[mostWantedMembers[i]] = 0;
        }

        // Clear most wanted.
        delete mostWantedMembers;
    }

    // Contract Getters
    function _baseURI() internal view override returns (string memory) { return baseURI; }
    function getTypeByTokenId(uint256 _tokenId) external view returns (uint8) { return noundleType[_tokenId]; }
    function getTypeByTokenIds(uint256[] memory _tokenId) external view returns(uint8[] memory) {
        uint8[] memory result = new uint8[](_tokenId.length);

        for (uint256 index; index < _tokenId.length; index += 1) {
            result[index] = noundleType[_tokenId[index]];
        }

        return result;
    }
    function getFreeMintUsedByTokenId(uint256 _tokenId) external view returns (bool){ return alreadyMintedNoundles[_tokenId]; }
    function getFreeLandMintUsedByTokenId(uint256 _tokenId) external view returns (bool){ return alreadyMintedLandNoundles[_tokenId]; }
    function getJailStatus(uint256 _tokenId) external view returns (uint256){ return jailHouse[_tokenId]; }
    function getJailStatusBool(uint256 _tokenId) public view returns (bool){ return (jailHouse[_tokenId] + jailLength > block.timestamp); }

    // Contract Setters (pretty standard :))
    function setBaseURI(string memory arg) public onlyOwner { baseURI = arg; }
    function setSaleEnabled() public onlyOwner { saleEnabled = true; }
    function setRandomNumberGenerator(address _arg) public onlyOwner { RandomNumber = InterfaceRandomNumber(_arg); }
    function setPhaseOneSaleTime(uint256 _arg) public onlyOwner { saleOneTime = _arg; }
    function setPhaseTwoSaleTime(uint256 _arg) public onlyOwner { saleTwoTime = _arg; }
    function setMintPriceEth(uint256 _arg) public onlyOwner { publicMintCompanionPriceEth = _arg; }
    function setMintPriceRain(uint256 _arg) public onlyOwner { publicMintCompanionPriceRainbow = _arg; }
    function setEvilMintCostRainbows(uint256 _arg) external onlyOwner { evilMintPriceRainbow = _arg; }
    function setLandMintCostRainbows(uint256 _arg) external onlyOwner { landMintPriceRainbow = _arg; }
    function setOverrideAlreadyPublicMinted(bool _arg) external onlyOwner { overrideAlreadyPublicMinted = _arg; }

    // Noundle Theory Setters (incase we need to balance some things out)
    function setLowLandPercent(uint256 _amount) public onlyOwner { percentLowLand = _amount; }
    function setMidLandPercent(uint256 _amount) public onlyOwner { percentMidLand = _amount; }
    function setHighLandPercent(uint256 _amount) public onlyOwner { percentHighLand = _amount; }
    function setEvilPercent(uint256 _amount) public onlyOwner { percentEvil = _amount; }
    function setJailPercent(uint256 _amount) public onlyOwner { percentJail = _amount; }
    function setStealPercent(uint256 _amount) public onlyOwner { percentSteal = _amount; }
    function setJailTime(uint256 _amount) external onlyOwner { jailLength = _amount; }
    function setGetOutOfJailCost(uint256 _amount) external onlyOwner { getOutOfJail = _amount; }
    function setJailTimeForEvil(uint256 _tokenId, uint256 _amount) external onlyOwner { jailHouse[_tokenId] = _amount; }

    // Contract Setters for the Genesis Contract
    function setGenesisAddress(address _genesis) external onlyOwner { Originals = InterfaceOriginals(_genesis); }

    // Contract Setters for the Rainbows Contract
    function setRainbowMintStatus(bool _arg) public onlyOwner { rainbowMintingEnabled = _arg; }
    function setBaseMintPriceTier1(uint256 _arg) public onlyOwner { rBaseMintPriceTier1 = _arg; }
    function setBaseMintPriceTier2(uint256 _arg) public onlyOwner { rBaseMintPriceTier2 = _arg; }
    function setBaseMintPriceTier3(uint256 _arg) public onlyOwner { rBaseMintPriceTier3 = _arg; }
    function setTier2Start(uint256 _arg) public onlyOwner { tier2Start = _arg; }
    function setTier3Start(uint256 _arg) public onlyOwner { tier3Start = _arg; }
    function setRainbowAddress(address _rainbow) external onlyOwner { Rainbows = InterfaceRainbows(_rainbow); }

    // opensea / ERC721 functions
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory base = _baseURI();

        return string(abi.encodePacked(base, uint2str(noundleType[tokenId]), "/", uint2str(noundleOffsetCount[tokenId])));
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override isSaleEnabled {
        Rainbows.transferTokens(from, to);

        if (noundleType[tokenId] == 0) {
            companionBalance[from]++;
            companionBalance[to]--;
        } else if (noundleType[tokenId] == 2) {
            evilBalance[from]++;
            evilBalance[to]--;
        } else if (noundleType[tokenId] == 3) {
            lowLandBalance[from]++;
            lowLandBalance[to]--;
        } else if (noundleType[tokenId] == 4) {
            midLandBalance[from]++;
            midLandBalance[to]--;
        } else {
            highLandBalance[from]++;
            highLandBalance[to]--;
        }

        ERC721.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override isSaleEnabled {
        Rainbows.transferTokens(from, to);

        if (noundleType[tokenId] == 0) {
            companionBalance[from]++;
            companionBalance[to]--;
        } else if (noundleType[tokenId] == 2) {
            evilBalance[from]++;
            evilBalance[to]--;
        } else if (noundleType[tokenId] == 3) {
            lowLandBalance[from]++;
            lowLandBalance[to]--;
        } else if (noundleType[tokenId] == 4) {
            midLandBalance[from]++;
            midLandBalance[to]--;
        } else {
            highLandBalance[from]++;
            highLandBalance[to]--;
        }

        ERC721.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override isSaleEnabled {
        Rainbows.transferTokens(from, to);

        if (noundleType[tokenId] == 0) {
            companionBalance[from]++;
            companionBalance[to]--;
        } else if (noundleType[tokenId] == 2) {
            evilBalance[from]++;
            evilBalance[to]--;
        } else if (noundleType[tokenId] == 3) {
            lowLandBalance[from]++;
            lowLandBalance[to]--;
        } else if (noundleType[tokenId] == 4) {
            midLandBalance[from]++;
            midLandBalance[to]--;
        } else {
            highLandBalance[from]++;
            highLandBalance[to]--;
        }

        ERC721.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_COMPANION_NOUNDLES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_EVIL_NOUNDLES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_COMPANION_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_LAND_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVED_COMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVED_EVIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVED_LAND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Originals","outputs":[{"internalType":"contract InterfaceOriginals","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Rainbows","outputs":[{"internalType":"contract InterfaceRainbows","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RandomNumber","outputs":[{"internalType":"contract InterfaceRandomNumber","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_noundles","type":"address[]"}],"name":"addEvilNoundlers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_noundles","type":"address[]"}],"name":"addFreeNoundlers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_noundles","type":"address"}],"name":"checkEvilNoundlers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_noundles","type":"address"}],"name":"checkFreeNoundlers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimEvilNoundle","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"companionBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"companionList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costToMintWithRainbows","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counterBail","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counterJailed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counterStolen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counterStolenAttempted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"evilBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"evilList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"evilMintPriceRainbow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"evilNoundleMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"founder1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"founder2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeCompanionMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEvilNoundleOwners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getFreeLandMintUsedByTokenId","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getFreeMintUsedByTokenId","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getJailStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getJailStatusBool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMostWanted","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_arg","type":"address"}],"name":"getMostWantedValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_noundles","type":"address"}],"name":"getNoundlesFromWallet","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOutOfJail","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getOutOfJailByTokenId","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getTypeByTokenId","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenId","type":"uint256[]"}],"name":"getTypeByTokenIds","outputs":[{"internalType":"uint8[]","name":"","type":"uint8[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"highLandBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"highLandList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"jailHouse","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"jailLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"landMintPriceRainbow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lowLandBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lowLandList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"midLandBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"midLandList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCountCompanions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCountEvil","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCountLandHigh","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCountLandLow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCountLandMid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_noundles","type":"uint256"}],"name":"mintHolderLandNoundles","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintHolderNoundles","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_noundles","type":"uint256"}],"name":"mintNoundles","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_noundles","type":"uint256"}],"name":"mintNoundlesWithRainbows","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_noundles","type":"uint256"}],"name":"mintWithRainbows","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mostWantedMembers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mostWantedValues","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"noundleOffsetCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"noundleType","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"overrideAlreadyPublicMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentEvil","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentHighLand","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentJail","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentLowLand","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentMidLand","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentSteal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintCompanionPriceEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintCompanionPriceRainbow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rBaseMintPriceTier1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rBaseMintPriceTier2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rBaseMintPriceTier3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rainbowMintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint8","name":"_type","type":"uint8"}],"name":"reserveNoundles","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedComp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reservedEvil","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reservedLand","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"resetMostWanted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleOneTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleTwoTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_arg","type":"uint256"}],"name":"setBaseMintPriceTier1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_arg","type":"uint256"}],"name":"setBaseMintPriceTier2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_arg","type":"uint256"}],"name":"setBaseMintPriceTier3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"arg","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_arg","type":"uint256"}],"name":"setEvilMintCostRainbows","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setEvilPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_genesis","type":"address"}],"name":"setGenesisAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setGetOutOfJailCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setHighLandPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setJailPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setJailTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setJailTimeForEvil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_arg","type":"uint256"}],"name":"setLandMintCostRainbows","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setLowLandPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMidLandPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_arg","type":"uint256"}],"name":"setMintPriceEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_arg","type":"uint256"}],"name":"setMintPriceRain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_arg","type":"bool"}],"name":"setOverrideAlreadyPublicMinted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_noundles","type":"address[]"}],"name":"setPayoutAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_arg","type":"uint256"}],"name":"setPhaseOneSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_arg","type":"uint256"}],"name":"setPhaseTwoSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rainbow","type":"address"}],"name":"setRainbowAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_arg","type":"bool"}],"name":"setRainbowMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_arg","type":"address"}],"name":"setRandomNumberGenerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setStealPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_arg","type":"uint256"}],"name":"setTier2Start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_arg","type":"uint256"}],"name":"setTier3Start","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":[],"name":"tier2Start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tier3Start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_noundles","type":"uint256"}],"name":"withdrawFunds","outputs":[],"stateMutability":"payable","type":"function"}]

60806040908152600a60138190556014818155601591909155604b601655601755600560185560006019819055601a819055601b819055601c819055601d81905567016345785d8a0000601e556801158e460913d00000601f8190556020556802b5e3af16b188000060215560228190556023819055602481905560258190556026819055602c805460ff1990811690915560318054821690556032829055603382905560348054909116905568022b1c8c1227a000006035556804563918244f40000060365568068155a43676e0000060375561271060385561445c603955612a30603a55671bc16d674ec80000603b55603d819055603e819055603f81905590553480156200010f57600080fd5b5060405162006390380380620063908339810160408190526200013291620002c6565b604080518082018252600d8082526c4e4f554e444c455448454f525960981b6020808401828152855180870190965292855284015281519192916200017a9160009162000220565b5080516200019090600190602084019062000220565b505050620001ad620001a7620001ca60201b60201c565b620001ce565b8051620001c290604a90602084019062000220565b5050620003f5565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200022e90620003a2565b90600052602060002090601f0160209004810192826200025257600085556200029d565b82601f106200026d57805160ff19168380011785556200029d565b828001600101855582156200029d579182015b828111156200029d57825182559160200191906001019062000280565b50620002ab929150620002af565b5090565b5b80821115620002ab5760008155600101620002b0565b60006020808385031215620002da57600080fd5b82516001600160401b0380821115620002f257600080fd5b818501915085601f8301126200030757600080fd5b8151818111156200031c576200031c620003df565b604051601f8201601f19908116603f01168101908382118183101715620003475762000347620003df565b8160405282815288868487010111156200036057600080fd5b600093505b8284101562000384578484018601518185018701529285019262000365565b82841115620003965760008684830101525b98975050505050505050565b600181811c90821680620003b757607f821691505b60208210811415620003d957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b615f8b80620004056000396000f3fe6080604052600436106107d05760003560e01c80638230d1da116103fe578063cac05ca911610213578063e985e9c511610123578063f1ce90e6116100b6578063f4b91f9911610085578063f4b91f99146116e6578063f6697c8b146116fc578063fa429ae114611729578063fbde629214611749578063fd1cb0f71461177657600080fd5b8063f1ce90e614611663578063f1d770c514611683578063f243f31a146116b0578063f2fde38b146116c657600080fd5b8063ed84cd3c116100f2578063ed84cd3c146115f7578063eddce3ae14611617578063eed0eb4b1461162d578063efcb5d821461164357600080fd5b8063e985e9c514611562578063e9cc0cf8146115ab578063ead24c89146115cb578063ec57bd37146115e157600080fd5b8063d26b2e5f116101a6578063d836536111610175578063d8365361146114ba578063de0c5e8c146114da578063df822b25146114fa578063e13222f41461152a578063e711eba41461153257600080fd5b8063d26b2e5f14611437578063d2ae04121461144d578063d36719811461146d578063d43a96481461148d57600080fd5b8063ce673d98116101e2578063ce673d98146113cc578063cf38f85e146113e1578063d07f8a4314611401578063d0ae0b471461142157600080fd5b8063cac05ca91461136e578063cafa898814611383578063cb1f08e614611396578063cc97105d146113ac57600080fd5b8063ab82782c1161030e578063be6522f6116102a1578063c6faea4011610270578063c6faea40146112b2578063c761ee14146112c8578063c7c33ccb14611301578063c87b56dd14611321578063c8f4b0d01461134157600080fd5b8063be6522f614611264578063c0d63a9914611286578063c1594ffc1461129c578063c26dc084146112b257600080fd5b8063b88d4fde116102dd578063b88d4fde14611201578063b8f7443814611221578063bbeb29521461124e578063bdf58fc914610c3f57600080fd5b8063ab82782c14611188578063af9a8df6146111a8578063b3bfe6b6146111be578063b496a6b8146111eb57600080fd5b80638e3957d9116103915780639dbb2bfe116103605780639dbb2bfe146110ee578063a12ea78714611101578063a22cb4651461112e578063a6745acf1461114e578063aa35d67f1461116e57600080fd5b80638e3957d9146110905780638e3acac5146110b057806395d89b41146110c657806398ac19d5146110db57600080fd5b8063890e8584116103cd578063890e8584146110335780638a8bdc33146110495780638d04cf341461105c5780638da5cb5b1461107257600080fd5b80638230d1da14610fb7578063831ee80214610fed57806384c518d714610c3f57806386620a461461100357600080fd5b80633f59be1d116105f45780636381eec311610504578063715018a6116104975780637663317d116104665780637663317d14610f175780637a24531d14610f375780637b5c60ab14610f575780637c877b4814610f77578063806ba6d614610f9757600080fd5b8063715018a614610eb257806371b9b64614610ec7578063721bdbcc14610ee157806375fd0bb114610ef757600080fd5b80636b477d20116104d35780636b477d2014610e255780636d252c8514610e4557806370a0823114610e65578063714e89ec14610e8557600080fd5b80636381eec314610db957806365baf5db14610dd9578063668035e314610def578063699b3f3714610e0557600080fd5b806353dd51ef116105875780635beb0f9b116105565780635beb0f9b14610d385780635d4044c414610d4e5780635e8ea42514610d6e578063600068c114610d835780636352211e14610d9957600080fd5b806353dd51ef14610caa57806355f804b314610cc057806358de458e14610ce05780635a32d02614610cf657600080fd5b806345d9806b116105c357806345d9806b14610c3f5780634d8c002c14610c545780634e976bf814610c745780634f6ccce714610c8a57600080fd5b80633f59be1d14610bc957806341f2bd7714610be957806342842e0e14610c0957806344a68d2314610c2957600080fd5b806321cbc367116106ef5780632ffa65821161068257806335ddb77c1161065157806335ddb77c14610b395780633702ff0814610b59578063389bf05014610b6f578063389c715c14610b8f5780633d2a80f214610baf57600080fd5b80632ffa658214610ab6578063316d6bba14610acc578063322c012414610af957806332a4455214610b1957600080fd5b806329feb6f3116106be57806329feb6f314610a405780632aa96c3d14610a605780632acc062b14610a805780632f745c5914610a9657600080fd5b806321cbc367146109e257806323b872dd146109f757806328f87b0314610a1757806329c8f9ff14610a2d57600080fd5b8063105f917411610767578063166098b911610736578063166098b91461095e57806318160ddd1461099757806320bc87d2146109ac57806321c24409146109c257600080fd5b8063105f9174146108f657806310fab524146108fe578063116b556b1461092b578063155dd5ee1461094b57600080fd5b8063095ea7b3116107a3578063095ea7b3146108885780630c419110146108aa5780630cc1f5b6146108c05780630e667b3a146108d657600080fd5b806301ffc9a7146107d557806304ac9f111461080a57806306fdde031461082e578063081812fc14610850575b600080fd5b3480156107e157600080fd5b506107f56107f0366004615827565b611796565b60405190151581526020015b60405180910390f35b34801561081657600080fd5b5061082060205481565b604051908152602001610801565b34801561083a57600080fd5b506108436117a7565b6040516108019190615aad565b34801561085c57600080fd5b5061087061086b3660046158aa565b611839565b6040516001600160a01b039091168152602001610801565b34801561089457600080fd5b506108a86108a3366004615626565b6118d3565b005b3480156108b657600080fd5b50610820601e5481565b3480156108cc57600080fd5b50610820601c5481565b3480156108e257600080fd5b506108a86108f13660046158aa565b6119e9565b6108a8611a18565b34801561090a57600080fd5b506108206109193660046158aa565b6000908152603c602052604090205490565b34801561093757600080fd5b50604b54610870906001600160a01b031681565b6108a86109593660046158aa565b611cc7565b34801561096a57600080fd5b506107f56109793660046154f6565b6001600160a01b031660009081526027602052604090205460ff1690565b3480156109a357600080fd5b50600854610820565b3480156109b857600080fd5b5061082060135481565b3480156109ce57600080fd5b506108706109dd3660046158aa565b611d79565b3480156109ee57600080fd5b506108a8611da3565b348015610a0357600080fd5b506108a8610a12366004615544565b611ddc565b348015610a2357600080fd5b50610820601f5481565b6108a8610a3b3660046158aa565b612068565b348015610a4c57600080fd5b506108a8610a5b3660046158aa565b61221a565b348015610a6c57600080fd5b506108a8610a7b3660046158aa565b612249565b348015610a8c57600080fd5b5061082060355481565b348015610aa257600080fd5b50610820610ab1366004615626565b612278565b348015610ac257600080fd5b5061082060175481565b348015610ad857600080fd5b50610820610ae73660046158aa565b60496020526000908152604090205481565b348015610b0557600080fd5b506107f5610b143660046158aa565b61230e565b348015610b2557600080fd5b506108a8610b343660046154f6565b612335565b348015610b4557600080fd5b506108a8610b543660046158aa565b612381565b348015610b6557600080fd5b50610820603d5481565b348015610b7b57600080fd5b506108a8610b8a3660046158aa565b6123b0565b348015610b9b57600080fd5b50600c54610870906001600160a01b031681565b348015610bbb57600080fd5b50602c546107f59060ff1681565b348015610bd557600080fd5b50610820610be43660046158aa565b6123df565b348015610bf557600080fd5b50610820610c043660046158aa565b612400565b348015610c1557600080fd5b506108a8610c24366004615544565b612410565b348015610c3557600080fd5b50610820611b5881565b348015610c4b57600080fd5b5061082060fa81565b348015610c6057600080fd5b506108a8610c6f36600461580c565b61269c565b348015610c8057600080fd5b50610820601d5481565b348015610c9657600080fd5b50610820610ca53660046158aa565b6126d9565b348015610cb657600080fd5b5061082060155481565b348015610ccc57600080fd5b506108a8610cdb366004615861565b61276c565b348015610cec57600080fd5b5061082060395481565b348015610d0257600080fd5b50610d26610d113660046158aa565b60486020526000908152604090205460ff1681565b60405160ff9091168152602001610801565b348015610d4457600080fd5b5061082060265481565b348015610d5a57600080fd5b506108a8610d693660046158aa565b6127a9565b348015610d7a57600080fd5b506108206127d8565b348015610d8f57600080fd5b5061082060235481565b348015610da557600080fd5b50610870610db43660046158aa565b612817565b348015610dc557600080fd5b506108a8610dd43660046158aa565b61288e565b348015610de557600080fd5b5061082060385481565b348015610dfb57600080fd5b50610820603b5481565b348015610e1157600080fd5b506108a8610e2036600461580c565b6128bd565b348015610e3157600080fd5b506108a8610e403660046158dc565b6128fa565b348015610e5157600080fd5b50610820610e603660046158aa565b612936565b348015610e7157600080fd5b50610820610e803660046154f6565b612946565b348015610e9157600080fd5b50610820610ea03660046154f6565b60456020526000908152604090205481565b348015610ebe57600080fd5b506108a86129cd565b348015610ed357600080fd5b506031546107f59060ff1681565b348015610eed57600080fd5b50610820603f5481565b348015610f0357600080fd5b506108a8610f12366004615650565b612a03565b348015610f2357600080fd5b506108a8610f323660046158aa565b612ab2565b348015610f4357600080fd5b506108a8610f523660046158aa565b612ae1565b348015610f6357600080fd5b506108a8610f723660046158aa565b612b10565b348015610f8357600080fd5b506108a8610f92366004615650565b612b3f565b348015610fa357600080fd5b50604c54610870906001600160a01b031681565b348015610fc357600080fd5b50610820610fd23660046154f6565b6001600160a01b031660009081526041602052604090205490565b348015610ff957600080fd5b5061082060335481565b34801561100f57600080fd5b50610d2661101e3660046158aa565b60009081526048602052604090205460ff1690565b34801561103f57600080fd5b5061082060255481565b6108a86110573660046158aa565b612bd1565b34801561106857600080fd5b5061082060195481565b34801561107e57600080fd5b50600a546001600160a01b0316610870565b34801561109c57600080fd5b50600d54610870906001600160a01b031681565b3480156110bc57600080fd5b5061082060225481565b3480156110d257600080fd5b50610843612d92565b6108a86110e93660046158aa565b612da1565b6108a86110fc3660046158aa565b6130e8565b34801561110d57600080fd5b5061112161111c3660046156f4565b61323d565b6040516108019190615a72565b34801561113a57600080fd5b506108a86111493660046155fc565b61330a565b34801561115a57600080fd5b506108a86111693660046158aa565b613315565b34801561117a57600080fd5b506034546107f59060ff1681565b34801561119457600080fd5b506108a86111a33660046154f6565b613344565b3480156111b457600080fd5b50610820603a5481565b3480156111ca57600080fd5b506108206111d93660046154f6565b60446020526000908152604090205481565b3480156111f757600080fd5b50610820619c4081565b34801561120d57600080fd5b506108a861121c366004615580565b613390565b34801561122d57600080fd5b5061124161123c3660046154f6565b613623565b6040516108019190615a3a565b34801561125a57600080fd5b50610820601b5481565b34801561127057600080fd5b506112796136c5565b60405161080191906159ed565b34801561129257600080fd5b5061082060245481565b3480156112a857600080fd5b5061082060165481565b3480156112be57600080fd5b506108206122b881565b3480156112d457600080fd5b506107f56112e33660046154f6565b6001600160a01b031660009081526029602052604090205460ff1690565b34801561130d57600080fd5b506108a861131c3660046158fe565b613726565b34801561132d57600080fd5b5061084361133c3660046158aa565b613920565b34801561134d57600080fd5b5061082061135c3660046154f6565b60466020526000908152604090205481565b34801561137a57600080fd5b50611279613a0a565b6108a86113913660046158aa565b613b19565b3480156113a257600080fd5b5061082060375481565b3480156113b857600080fd5b506108a86113c73660046158aa565b613c10565b3480156113d857600080fd5b506108a8613c3f565b3480156113ed57600080fd5b506108206113fc3660046158aa565b613cd3565b34801561140d57600080fd5b506108a861141c3660046154f6565b613ce3565b34801561142d57600080fd5b5061082060145481565b34801561144357600080fd5b5061082060365481565b34801561145957600080fd5b506108a86114683660046158aa565b613d2f565b34801561147957600080fd5b506108a86114883660046158aa565b613d5e565b34801561149957600080fd5b506108206114a83660046158aa565b603c6020526000908152604090205481565b3480156114c657600080fd5b506108a86114d53660046158aa565b613d8d565b3480156114e657600080fd5b506108a86114f53660046158aa565b613dbc565b34801561150657600080fd5b506107f56115153660046158aa565b60009081526030602052604090205460ff1690565b6108a8613deb565b34801561153e57600080fd5b506107f561154d3660046158aa565b6000908152602f602052604090205460ff1690565b34801561156e57600080fd5b506107f561157d366004615511565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156115b757600080fd5b506108a86115c63660046158aa565b614032565b3480156115d757600080fd5b5061082060185481565b3480156115ed57600080fd5b50610820603e5481565b34801561160357600080fd5b506108206116123660046158aa565b614061565b34801561162357600080fd5b5061082060215481565b34801561163957600080fd5b50610820601a5481565b34801561164f57600080fd5b506108a861165e3660046158aa565b614071565b34801561166f57600080fd5b506108a861167e3660046158aa565b6140a0565b34801561168f57600080fd5b5061082061169e3660046154f6565b60436020526000908152604090205481565b3480156116bc57600080fd5b5061082060325481565b3480156116d257600080fd5b506108a86116e13660046154f6565b6140cf565b3480156116f257600080fd5b5061082060405481565b34801561170857600080fd5b506108206117173660046154f6565b60476020526000908152604090205481565b34801561173557600080fd5b50600b54610870906001600160a01b031681565b34801561175557600080fd5b506108206117643660046154f6565b60416020526000908152604090205481565b34801561178257600080fd5b506108a8611791366004615650565b614167565b60006117a1826141f9565b92915050565b6060600080546117b690615e6d565b80601f01602080910402602001604051908101604052809291908181526020018280546117e290615e6d565b801561182f5780601f106118045761010080835404028352916020019161182f565b820191906000526020600020905b81548152906001019060200180831161181257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166118b75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006118de82612817565b9050806001600160a01b0316836001600160a01b0316141561194c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016118ae565b336001600160a01b03821614806119685750611968813361157d565b6119da5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016118ae565b6119e4838361421e565b505050565b600a546001600160a01b03163314611a135760405162461bcd60e51b81526004016118ae90615c43565b603355565b6032544210158015611a2c57506000603254115b611a485760405162461bcd60e51b81526004016118ae90615d17565b6000611a5360085490565b90506122b86022546001611a679190615da3565b1115611ab55760405162461bcd60e51b815260206004820152601e60248201527f57652072616e206f7574206f66206576696c206e6f756e646c6573203a28000060448201526064016118ae565b3360009081526027602052604090205460ff16611b0f5760405162461bcd60e51b8152602060048201526018602482015277165bdd48185c99481b9bdd081bdb881dda1a5d195b1a5cdd60421b60448201526064016118ae565b3360009081526028602052604090205460ff1615611b7d5760405162461bcd60e51b815260206004820152602560248201527f596f7520616c7265616479206d696e74656420796f75722066726565206e6f75604482015264373236329760d91b60648201526084016118ae565b600c5460405163171ee88760e31b81523360048201526000916001600160a01b03169063b8f744389060240160006040518083038186803b158015611bc157600080fd5b505afa158015611bd5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611bfd9190810190615780565b5111611c1b5760405162461bcd60e51b81526004016118ae90615b12565b600b54602054604051632770a7eb60e21b815233600482015260248101919091526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b158015611c6b57600080fd5b505af1158015611c7f573d6000803e3d6000fd5b5050336000908152602860205260408120805460ff19166001908117909155602280549194509250611cb2908490615da3565b90915550611cc490503382600161428c565b50565b600a546001600160a01b03163314611cf15760405162461bcd60e51b81526004016118ae90615c43565b6000611cfe606483615de0565b604b549091506001600160a01b03166108fc611d1b836032615df4565b6040518115909202916000818181858888f19350505050611d3b57600080fd5b604c546001600160a01b03166108fc611d55836032615df4565b6040518115909202916000818181858888f19350505050611d7557600080fd5b5050565b60428181548110611d8957600080fd5b6000918252602090912001546001600160a01b0316905081565b600a546001600160a01b03163314611dcd5760405162461bcd60e51b81526004016118ae90615c43565b6031805460ff19166001179055565b60315460ff16611dfe5760405162461bcd60e51b81526004016118ae90615c16565b600b54604051636a092e7960e01b81526001600160a01b038581166004830152848116602483015290911690636a092e7990604401600060405180830381600087803b158015611e4d57600080fd5b505af1158015611e61573d6000803e3d6000fd5b50505060008281526048602052604090205460ff1615159050611ed5576001600160a01b0383166000908152604360205260408120805491611ea283615ea2565b90915550506001600160a01b0382166000908152604360205260408120805491611ecb83615e56565b919050555061205d565b60008181526048602052604090205460ff1660021415611f3c576001600160a01b0383166000908152604460205260408120805491611f1383615ea2565b90915550506001600160a01b0382166000908152604460205260408120805491611ecb83615e56565b60008181526048602052604090205460ff1660031415611fa3576001600160a01b0383166000908152604560205260408120805491611f7a83615ea2565b90915550506001600160a01b0382166000908152604560205260408120805491611ecb83615e56565b60008181526048602052604090205460ff166004141561200a576001600160a01b0383166000908152604660205260408120805491611fe183615ea2565b90915550506001600160a01b0382166000908152604660205260408120805491611ecb83615e56565b6001600160a01b038316600090815260476020526040812080549161202e83615ea2565b90915550506001600160a01b038216600090815260476020526040812080549161205783615e56565b91905055505b6119e483838361451b565b603254421015801561207c57506000603254115b6120985760405162461bcd60e51b81526004016118ae90615d17565b60006120a360085490565b90506000821180156120b6575060058211155b6120d25760405162461bcd60e51b81526004016118ae90615bb9565b34601e54836120e19190615df4565b11156121405760405162461bcd60e51b815260206004820152602860248201527f536572207765206e656564206d6f7265206d6f6e657920666f7220796f7572206044820152676e6f756e646c657360c01b60648201526084016118ae565b611b5861214d8284615da3565b111561216b5760405162461bcd60e51b81526004016118ae90615cc9565b336000908152602b602052604090205460ff16158061218c5750602c5460ff165b6121d05760405162461bcd60e51b8152602060048201526015602482015274596f752063616e6e6f74206d696e7420747769636560581b60448201526064016118ae565b336000908152602b60205260408120805460ff191660011790555b828110156119e457612208336122018385615da3565b600061428c565b8061221281615ea2565b9150506121eb565b600a546001600160a01b031633146122445760405162461bcd60e51b81526004016118ae90615c43565b603255565b600a546001600160a01b031633146122735760405162461bcd60e51b81526004016118ae90615c43565b601355565b600061228383612946565b82106122e55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016118ae565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b603a546000828152603c60205260408120549091429161232e9190615da3565b1192915050565b600a546001600160a01b0316331461235f5760405162461bcd60e51b81526004016118ae90615c43565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146123ab5760405162461bcd60e51b81526004016118ae90615c43565b602155565b600a546001600160a01b031633146123da5760405162461bcd60e51b81526004016118ae90615c43565b603a55565b601181815481106123ef57600080fd5b600091825260209091200154905081565b600e81815481106123ef57600080fd5b60315460ff166124325760405162461bcd60e51b81526004016118ae90615c16565b600b54604051636a092e7960e01b81526001600160a01b038581166004830152848116602483015290911690636a092e7990604401600060405180830381600087803b15801561248157600080fd5b505af1158015612495573d6000803e3d6000fd5b50505060008281526048602052604090205460ff1615159050612509576001600160a01b03831660009081526043602052604081208054916124d683615ea2565b90915550506001600160a01b03821660009081526043602052604081208054916124ff83615e56565b9190505550612691565b60008181526048602052604090205460ff1660021415612570576001600160a01b038316600090815260446020526040812080549161254783615ea2565b90915550506001600160a01b03821660009081526044602052604081208054916124ff83615e56565b60008181526048602052604090205460ff16600314156125d7576001600160a01b03831660009081526045602052604081208054916125ae83615ea2565b90915550506001600160a01b03821660009081526045602052604081208054916124ff83615e56565b60008181526048602052604090205460ff166004141561263e576001600160a01b038316600090815260466020526040812080549161261583615ea2565b90915550506001600160a01b03821660009081526046602052604081208054916124ff83615e56565b6001600160a01b038316600090815260476020526040812080549161266283615ea2565b90915550506001600160a01b038216600090815260476020526040812080549161268b83615e56565b91905055505b6119e483838361454c565b600a546001600160a01b031633146126c65760405162461bcd60e51b81526004016118ae90615c43565b602c805460ff1916911515919091179055565b60006126e460085490565b82106127475760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016118ae565b6008828154811061275a5761275a615f13565b90600052602060002001549050919050565b600a546001600160a01b031633146127965760405162461bcd60e51b81526004016118ae90615c43565b8051611d7590604a9060208401906153bf565b600a546001600160a01b031633146127d35760405162461bcd60e51b81526004016118ae90615c43565b601855565b600080601a546019546127eb9190615da3565b905060385481106127fe57505060365490565b603954811061280f57505060375490565b505060355490565b6000818152600260205260408120546001600160a01b0316806117a15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016118ae565b600a546001600160a01b031633146128b85760405162461bcd60e51b81526004016118ae90615c43565b603855565b600a546001600160a01b031633146128e75760405162461bcd60e51b81526004016118ae90615c43565b6034805460ff1916911515919091179055565b600a546001600160a01b031633146129245760405162461bcd60e51b81526004016118ae90615c43565b6000918252603c602052604090912055565b601281815481106123ef57600080fd5b60006001600160a01b0382166129b15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016118ae565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146129f75760405162461bcd60e51b81526004016118ae90615c43565b612a016000614567565b565b600a546001600160a01b03163314612a2d5760405162461bcd60e51b81526004016118ae90615c43565b80600081518110612a4057612a40615f13565b6020026020010151604b60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600181518110612a8157612a81615f13565b6020026020010151604c60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b600a546001600160a01b03163314612adc5760405162461bcd60e51b81526004016118ae90615c43565b601555565b600a546001600160a01b03163314612b0b5760405162461bcd60e51b81526004016118ae90615c43565b602055565b600a546001600160a01b03163314612b3a5760405162461bcd60e51b81526004016118ae90615c43565b603655565b600a546001600160a01b03163314612b695760405162461bcd60e51b81526004016118ae90615c43565b60005b8151811015611d7557600160276000848481518110612b8d57612b8d615f13565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580612bc981615ea2565b915050612b6c565b6032544210158015612be557506000603254115b612c015760405162461bcd60e51b81526004016118ae90615d17565b6000612c0c60085490565b9050600082118015612c1f575060058211155b612c3b5760405162461bcd60e51b81526004016118ae90615bb9565b611b58612c488284615da3565b1115612c665760405162461bcd60e51b81526004016118ae90615cc9565b336000908152602b602052604090205460ff161580612c875750602c5460ff165b612ccb5760405162461bcd60e51b8152602060048201526015602482015274596f752063616e6e6f74206d696e7420747769636560581b60448201526064016118ae565b600b54601f546001600160a01b0390911690639dc29fac903390612cf0908690615df4565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612d3657600080fd5b505af1158015612d4a573d6000803e3d6000fd5b5050336000908152602b60205260408120805460ff191660011790559150505b828110156119e457612d80336122018385615da3565b80612d8a81615ea2565b915050612d6a565b6060600180546117b690615e6d565b6033544210158015612db557506000603354115b612e015760405162461bcd60e51b815260206004820152601860248201527f50686173652054776f206861736e27742073746172746564000000000000000060448201526064016118ae565b6000612e0c60085490565b9050600082118015612e1f5750600a8211155b612e3b5760405162461bcd60e51b81526004016118ae90615b5c565b6122b8612e488284615da3565b1115612ea95760405162461bcd60e51b815260206004820152602a60248201527f57652072616e206f7574206f66206c616e642120547279206d696e74696e672060448201526977697468206c6573732160b01b60648201526084016118ae565b600c5460405163171ee88760e31b81523360048201526000916001600160a01b03169063b8f744389060240160006040518083038186803b158015612eed57600080fd5b505afa158015612f01573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612f299190810190615780565b90506000805b825181108015612f3e57508481105b156130e15760306000848381518110612f5957612f59615f13565b60209081029190910181015182528101919091526040016000205460ff1615612f81576130cf565b6002612fb5612f908487615da3565b601854601754601654612fa39190615da3565b612fad9190615da3565b6018546145b9565b15612fc257506004612ffd565b612ff4612fcf8487615da3565b601854601754601654612fe29190615da3565b612fec9190615da3565b6017546145b9565b15612ffd575060035b600b54602154604051632770a7eb60e21b815233600482015260248101919091526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b15801561304d57600080fd5b505af1158015613061573d6000803e3d6000fd5b5050505060016030600086858151811061307d5761307d615f13565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506130c03384876130ba9190615da3565b8361428c565b6130cb600184615da3565b9250505b6130da600182615da3565b9050612f2f565b5050505050565b60345460ff1661313a5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74206d696e74207769746820245241494e424f5753207965742e0060448201526064016118ae565b60008181526048602052604090205460ff166001146131a65760405162461bcd60e51b815260206004820152602260248201527f4f6e6c79206576696c206e6f756e646c65732063616e20676f20746f206a6169604482015261361760f11b60648201526084016118ae565b600b54603b54604051632770a7eb60e21b815233600482015260248101919091526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b1580156131f657600080fd5b505af115801561320a573d6000803e3d6000fd5b5050506000828152603c60205260408120600190819055603f80549193509190613235908490615da3565b909155505050565b60606000825167ffffffffffffffff81111561325b5761325b615f29565b604051908082528060200260200182016040528015613284578160200160208202803683370190505b50905060005b835181101561330357604860008583815181106132a9576132a9615f13565b6020026020010151815260200190815260200160002060009054906101000a900460ff168282815181106132df576132df615f13565b60ff909216602092830291909101909101526132fc600182615da3565b905061328a565b5092915050565b611d7533838361465f565b600a546001600160a01b0316331461333f5760405162461bcd60e51b81526004016118ae90615c43565b601655565b600a546001600160a01b0316331461336e5760405162461bcd60e51b81526004016118ae90615c43565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60315460ff166133b25760405162461bcd60e51b81526004016118ae90615c16565b600b54604051636a092e7960e01b81526001600160a01b038681166004830152858116602483015290911690636a092e7990604401600060405180830381600087803b15801561340157600080fd5b505af1158015613415573d6000803e3d6000fd5b50505060008381526048602052604090205460ff1615159050613489576001600160a01b038416600090815260436020526040812080549161345683615ea2565b90915550506001600160a01b038316600090815260436020526040812080549161347f83615e56565b9190505550613611565b60008281526048602052604090205460ff16600214156134f0576001600160a01b03841660009081526044602052604081208054916134c783615ea2565b90915550506001600160a01b038316600090815260446020526040812080549161347f83615e56565b60008281526048602052604090205460ff1660031415613557576001600160a01b038416600090815260456020526040812080549161352e83615ea2565b90915550506001600160a01b038316600090815260456020526040812080549161347f83615e56565b60008281526048602052604090205460ff16600414156135be576001600160a01b038416600090815260466020526040812080549161359583615ea2565b90915550506001600160a01b038316600090815260466020526040812080549161347f83615e56565b6001600160a01b03841660009081526047602052604081208054916135e283615ea2565b90915550506001600160a01b038316600090815260476020526040812080549161360b83615e56565b91905055505b61361d8484848461472e565b50505050565b6060600061363083612946565b905060008167ffffffffffffffff81111561364d5761364d615f29565b604051908082528060200260200182016040528015613676578160200160208202803683370190505b50905060005b828110156136bd5761368e8582612278565b8282815181106136a0576136a0615f13565b6020908102919091010152806136b581615ea2565b91505061367c565b509392505050565b6060604280548060200260200160405190810160405280929190818152602001828054801561182f57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116136ff575050505050905090565b600a546001600160a01b031633146137505760405162461bcd60e51b81526004016118ae90615c43565b60ff81166137bb5760fa826026546137689190615da3565b11156137b65760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f742072657365727665206d6f726520636f6d70616e696f6e73210060448201526064016118ae565b61388e565b8060ff16600114156138305760fa826024546137d79190615da3565b11156137b65760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f742072657365727665206d6f7265206576696c206e6f756e646c65604482015261732160f01b60648201526084016118ae565b60fa826025546138409190615da3565b111561388e5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f742072657365727665206d6f7265206c616e64210000000000000060448201526064016118ae565b600061389960085490565b905060005b8381101561361d576138ba336138b48385615da3565b8561428c565b60ff83166138dc57602680549060006138d283615ea2565b919050555061390e565b8260ff16600114156138f857602480549060006138d283615ea2565b6025805490600061390883615ea2565b91905055505b8061391881615ea2565b91505061389e565b6000818152600260205260409020546060906001600160a01b031661399f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016118ae565b60006139a9614760565b60008481526048602052604090205490915081906139c99060ff1661476f565b6000858152604960205260409020546139e19061476f565b6040516020016139f393929190615960565b604051602081830303815290604052915050919050565b600f5460609060009067ffffffffffffffff811115613a2b57613a2b615f29565b604051908082528060200260200182016040528015613a54578160200160208202803683370190505b50905060005b600f54811015613b135742603a54603c6000600f8581548110613a7f57613a7f615f13565b9060005260206000200154815260200190815260200160002054613aa39190615da3565b11613b0157613ace600f8281548110613abe57613abe615f13565b9060005260206000200154612817565b828281518110613ae057613ae0615f13565b60200260200101906001600160a01b031690816001600160a01b0316815250505b613b0c600182615da3565b9050613a5a565b50919050565b60345460ff16613b6b5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74206d696e74207769746820245241494e424f5753207965742e0060448201526064016118ae565b6000613b7660085490565b9050600082118015613b895750600a8211155b613ba55760405162461bcd60e51b81526004016118ae90615b5c565b619c40601a54601954613bb89190615da3565b613bc29084615da3565b1115613be05760405162461bcd60e51b81526004016118ae90615cc9565b60005b828110156119e457613bfe33613bf98385615da3565b614898565b80613c0881615ea2565b915050613be3565b600a546001600160a01b03163314613c3a5760405162461bcd60e51b81526004016118ae90615c43565b603955565b600a546001600160a01b03163314613c695760405162461bcd60e51b81526004016118ae90615c43565b60005b604254811015613cc65760006041600060428481548110613c8f57613c8f615f13565b60009182526020808320909101546001600160a01b03168352820192909252604001902055613cbf600182615da3565b9050613c6c565b50612a0160426000615443565b601081815481106123ef57600080fd5b600a546001600160a01b03163314613d0d5760405162461bcd60e51b81526004016118ae90615c43565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314613d595760405162461bcd60e51b81526004016118ae90615c43565b601f55565b600a546001600160a01b03163314613d885760405162461bcd60e51b81526004016118ae90615c43565b603555565b600a546001600160a01b03163314613db75760405162461bcd60e51b81526004016118ae90615c43565b601e55565b600a546001600160a01b03163314613de65760405162461bcd60e51b81526004016118ae90615c43565b603b55565b6032544210158015613dff57506000603254115b613e1b5760405162461bcd60e51b81526004016118ae90615d17565b6000613e2660085490565b90506122b86022546001613e3a9190615da3565b1115613e885760405162461bcd60e51b815260206004820152601e60248201527f57652072616e206f7574206f66206576696c206e6f756e646c6573203a28000060448201526064016118ae565b3360009081526029602052604090205460ff16613ee25760405162461bcd60e51b8152602060048201526018602482015277165bdd48185c99481b9bdd081bdb881dda1a5d195b1a5cdd60421b60448201526064016118ae565b336000908152602a602052604090205460ff1615613f525760405162461bcd60e51b815260206004820152602760248201527f596f7520616c7265616479206d696e74656420796f7572206672656520636f6d6044820152663830b734b7b71760c91b60648201526084016118ae565b600c5460405163171ee88760e31b81523360048201526000916001600160a01b03169063b8f744389060240160006040518083038186803b158015613f9657600080fd5b505afa158015613faa573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613fd29190810190615780565b5111613ff05760405162461bcd60e51b81526004016118ae90615b12565b336000908152602a60205260408120805460ff191660019081179091556022805491929091614020908490615da3565b90915550611cc490503382600061428c565b600a546001600160a01b0316331461405c5760405162461bcd60e51b81526004016118ae90615c43565b601455565b600f81815481106123ef57600080fd5b600a546001600160a01b0316331461409b5760405162461bcd60e51b81526004016118ae90615c43565b603755565b600a546001600160a01b031633146140ca5760405162461bcd60e51b81526004016118ae90615c43565b601755565b600a546001600160a01b031633146140f95760405162461bcd60e51b81526004016118ae90615c43565b6001600160a01b03811661415e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016118ae565b611cc481614567565b600a546001600160a01b031633146141915760405162461bcd60e51b81526004016118ae90615c43565b60005b8151811015611d75576001602960008484815181106141b5576141b5615f13565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806141f181615ea2565b915050614194565b60006001600160e01b0319821663780e9d6360e01b14806117a157506117a182614a79565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061425382612817565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6142968383614ac9565b6000828152604860205260409020805460ff191660ff8316908117909155614333573360009081526043602052604081208054916142d383615ea2565b9091555050600e8054600181019091557fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0182905560198054600084815260496020526040812082905590919061432983615ea2565b9190505550505050565b8060ff16600114156143b05733600090815260446020526040812080549161435a83615ea2565b9091555050600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80201829055601a8054600084815260496020526040812082905590919061432983615ea2565b8060ff166002141561442d573360009081526045602052604081208054916143d783615ea2565b909155505060108054600181019091557f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67201829055601b8054600084815260496020526040812082905590919061432983615ea2565b8060ff16600314156144aa5733600090815260466020526040812080549161445483615ea2565b909155505060118054600181019091557f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6801829055601c8054600084815260496020526040812082905590919061432983615ea2565b3360009081526047602052604081208054916144c583615ea2565b909155505060128054600181019091557fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec344401829055601d8054600084815260496020526040812082905590919061432983615ea2565b6145253382614ae3565b6145415760405162461bcd60e51b81526004016118ae90615c78565b6119e4838383614bda565b6119e483838360405180602001604052806000815250613390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600d54604051632cdc85e960e21b815260048101859052600091839185916001600160a01b03169063b37217a490602401602060405180830381600087803b15801561460457600080fd5b505af1158015614618573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061463c91906158c3565b6146469190615ebd565b101561465457506001614658565b5060005b9392505050565b816001600160a01b0316836001600160a01b031614156146c15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016118ae565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6147383383614ae3565b6147545760405162461bcd60e51b81526004016118ae90615c78565b61361d84848484614d85565b6060604a80546117b690615e6d565b6060816147935750506040805180820190915260018152600360fc1b602082015290565b8160005b81156147bd57806147a781615ea2565b91506147b69050600a83615de0565b9150614797565b60008167ffffffffffffffff8111156147d8576147d8615f29565b6040519080825280601f01601f191660200182016040528015614802576020820181803683370190505b509050815b851561488f57614818600182615e13565b90506000614827600a88615de0565b61483290600a615df4565b61483c9088615e13565b614847906030615dbb565b905060008160f81b90508084848151811061486457614864615f13565b60200101906001600160f81b031916908160001a905350614886600a89615de0565b97505050614807565b50949350505050565b600082905060006148ad8360646013546145b9565b156148b6575060015b6148c48360646014546145b9565b156149f65760006148d6846000614db8565b905080156149f4576001603d60008282546148f19190615da3565b925050819055506149068460646015546145b9565b15614939576000818152603c602052604080822042905580546001929061492e908490615da3565b909155506149f49050565b61494281612817565b92506001603e60008282546149579190615da3565b90915550506001600160a01b0383166000908152604160205260409020546149c557604280546001810182556000919091527f38dfe4635b27babeca8be38d3b448cb5161a639b899a14825ba9c8d7892eb8c30180546001600160a01b0319166001600160a01b0385161790555b6001600160a01b03831660009081526041602052604081208054600192906149ee908490615da3565b90915550505b505b600b546001600160a01b0316639dc29fac33614a106127d8565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015614a5657600080fd5b505af1158015614a6a573d6000803e3d6000fd5b5050505061361d82848361428c565b60006001600160e01b031982166380ac58cd60e01b1480614aaa57506001600160e01b03198216635b5e139f60e01b145b806117a157506301ffc9a760e01b6001600160e01b03198316146117a1565b611d75828260405180602001604052806000815250614ede565b6000818152600260205260408120546001600160a01b0316614b5c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016118ae565b6000614b6783612817565b9050806001600160a01b0316846001600160a01b03161480614ba25750836001600160a01b0316614b9784611839565b6001600160a01b0316145b80614bd257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316614bed82612817565b6001600160a01b031614614c555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016118ae565b6001600160a01b038216614cb75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016118ae565b614cc2838383614f11565b614ccd60008261421e565b6001600160a01b0383166000908152600360205260408120805460019290614cf6908490615e13565b90915550506001600160a01b0382166000908152600360205260408120805460019290614d24908490615da3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b614d90848484614bda565b614d9c84848484614f1c565b61361d5760405162461bcd60e51b81526004016118ae90615ac0565b600f54600d54604051632cdc85e960e21b815260048101859052600092839290916001600160a01b039091169063b37217a490602401602060405180830381600087803b158015614e0857600080fd5b505af1158015614e1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614e4091906158c3565b614e4a9190615ebd565b905042603a54603c6000600f8581548110614e6757614e67615f13565b9060005260206000200154815260200190815260200160002054614e8b9190615da3565b1015614eb757600f8181548110614ea457614ea4615f13565b90600052602060002001549150506117a1565b6063831115614eca5760009150506117a1565b614bd284614ed9856001615da3565b614db8565b614ee88383615029565b614ef56000848484614f1c565b6119e45760405162461bcd60e51b81526004016118ae90615ac0565b6119e4838383615177565b60006001600160a01b0384163b1561501e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290614f609033908990889088906004016159b0565b602060405180830381600087803b158015614f7a57600080fd5b505af1925050508015614faa575060408051601f3d908101601f19168201909252614fa791810190615844565b60015b615004573d808015614fd8576040519150601f19603f3d011682016040523d82523d6000602084013e614fdd565b606091505b508051614ffc5760405162461bcd60e51b81526004016118ae90615ac0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050614bd2565b506001949350505050565b6001600160a01b03821661507f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016118ae565b6000818152600260205260409020546001600160a01b0316156150e45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016118ae565b6150f060008383614f11565b6001600160a01b0382166000908152600360205260408120805460019290615119908490615da3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0383166151d2576151cd81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6151f5565b816001600160a01b0316836001600160a01b0316146151f5576151f5838261522f565b6001600160a01b03821661520c576119e4816152cc565b826001600160a01b0316826001600160a01b0316146119e4576119e4828261537b565b6000600161523c84612946565b6152469190615e13565b600083815260076020526040902054909150808214615299576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906152de90600190615e13565b6000838152600960205260408120546008805493945090928490811061530657615306615f13565b90600052602060002001549050806008838154811061532757615327615f13565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061535f5761535f615efd565b6001900381819060005260206000200160009055905550505050565b600061538683612946565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546153cb90615e6d565b90600052602060002090601f0160209004810192826153ed5760008555615433565b82601f1061540657805160ff1916838001178555615433565b82800160010185558215615433579182015b82811115615433578251825591602001919060010190615418565b5061543f92915061545d565b5090565b5080546000825590600052602060002090810190611cc491905b5b8082111561543f576000815560010161545e565b600067ffffffffffffffff83111561548c5761548c615f29565b61549f601f8401601f1916602001615d4e565b90508281528383830111156154b357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146154e157600080fd5b919050565b803580151581146154e157600080fd5b60006020828403121561550857600080fd5b614658826154ca565b6000806040838503121561552457600080fd5b61552d836154ca565b915061553b602084016154ca565b90509250929050565b60008060006060848603121561555957600080fd5b615562846154ca565b9250615570602085016154ca565b9150604084013590509250925092565b6000806000806080858703121561559657600080fd5b61559f856154ca565b93506155ad602086016154ca565b925060408501359150606085013567ffffffffffffffff8111156155d057600080fd5b8501601f810187136155e157600080fd5b6155f087823560208401615472565b91505092959194509250565b6000806040838503121561560f57600080fd5b615618836154ca565b915061553b602084016154e6565b6000806040838503121561563957600080fd5b615642836154ca565b946020939093013593505050565b6000602080838503121561566357600080fd5b823567ffffffffffffffff81111561567a57600080fd5b8301601f8101851361568b57600080fd5b803561569e61569982615d7f565b615d4e565b80828252848201915084840188868560051b87010111156156be57600080fd5b600094505b838510156156e8576156d4816154ca565b8352600194909401939185019185016156c3565b50979650505050505050565b6000602080838503121561570757600080fd5b823567ffffffffffffffff81111561571e57600080fd5b8301601f8101851361572f57600080fd5b803561573d61569982615d7f565b80828252848201915084840188868560051b870101111561575d57600080fd5b600094505b838510156156e8578035835260019490940193918501918501615762565b6000602080838503121561579357600080fd5b825167ffffffffffffffff8111156157aa57600080fd5b8301601f810185136157bb57600080fd5b80516157c961569982615d7f565b80828252848201915084840188868560051b87010111156157e957600080fd5b600094505b838510156156e85780518352600194909401939185019185016157ee565b60006020828403121561581e57600080fd5b614658826154e6565b60006020828403121561583957600080fd5b813561465881615f3f565b60006020828403121561585657600080fd5b815161465881615f3f565b60006020828403121561587357600080fd5b813567ffffffffffffffff81111561588a57600080fd5b8201601f8101841361589b57600080fd5b614bd284823560208401615472565b6000602082840312156158bc57600080fd5b5035919050565b6000602082840312156158d557600080fd5b5051919050565b600080604083850312156158ef57600080fd5b50508035926020909101359150565b6000806040838503121561591157600080fd5b82359150602083013560ff8116811461592957600080fd5b809150509250929050565b6000815180845261594c816020860160208601615e2a565b601f01601f19169290920160200192915050565b60008451615972818460208901615e2a565b845190830190615986818360208901615e2a565b602f60f81b910190815283516159a3816001840160208801615e2a565b0160010195945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906159e390830184615934565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015615a2e5783516001600160a01b031683529284019291840191600101615a09565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015615a2e57835183529284019291840191600101615a56565b6020808252825182820181905260009190848201906040850190845b81811015615a2e57835160ff1683529284019291840191600101615a8e565b6020815260006146586020830184615934565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602a908201527f596f75206d75737420686f6c64206174206c65617374206f6e65204e6f756e646040820152691b19481d1bc81b5a5b9d60b21b606082015260800190565b6020808252603a908201527f596f757220616d6f756e74206e6565647320746f20626520677265617465722060408201527f7468656e203020616e642063616e277420657863656564203130000000000000606082015260800190565b60208082526039908201527f596f757220616d6f756e74206e6565647320746f20626520677265617465722060408201527f7468656e203020616e642063616e277420657863656564203500000000000000606082015260800190565b60208082526013908201527221b0b73737ba1031329039b7b632103cb2ba1760691b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602e908201527f57652072616e206f7574206f66206e6f756e646c65732120547279206d696e7460408201526d696e672077697468206c6573732160901b606082015260800190565b60208082526018908201527f5068617365204f6e65206861736e277420737461727465640000000000000000604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715615d7757615d77615f29565b604052919050565b600067ffffffffffffffff821115615d9957615d99615f29565b5060051b60200190565b60008219821115615db657615db6615ed1565b500190565b600060ff821660ff84168060ff03821115615dd857615dd8615ed1565b019392505050565b600082615def57615def615ee7565b500490565b6000816000190483118215151615615e0e57615e0e615ed1565b500290565b600082821015615e2557615e25615ed1565b500390565b60005b83811015615e45578181015183820152602001615e2d565b8381111561361d5750506000910152565b600081615e6557615e65615ed1565b506000190190565b600181811c90821680615e8157607f821691505b60208210811415613b1357634e487b7160e01b600052602260045260246000fd5b6000600019821415615eb657615eb6615ed1565b5060010190565b600082615ecc57615ecc615ee7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611cc457600080fdfea26469706673582212204bc5b8985bad0c873d57273d2df2b570d62b7525bf86e1e1c4b650b2afc6c6af64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f63646e2e6e6f756e646c65732e696f2f6d657461646174615f322f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106107d05760003560e01c80638230d1da116103fe578063cac05ca911610213578063e985e9c511610123578063f1ce90e6116100b6578063f4b91f9911610085578063f4b91f99146116e6578063f6697c8b146116fc578063fa429ae114611729578063fbde629214611749578063fd1cb0f71461177657600080fd5b8063f1ce90e614611663578063f1d770c514611683578063f243f31a146116b0578063f2fde38b146116c657600080fd5b8063ed84cd3c116100f2578063ed84cd3c146115f7578063eddce3ae14611617578063eed0eb4b1461162d578063efcb5d821461164357600080fd5b8063e985e9c514611562578063e9cc0cf8146115ab578063ead24c89146115cb578063ec57bd37146115e157600080fd5b8063d26b2e5f116101a6578063d836536111610175578063d8365361146114ba578063de0c5e8c146114da578063df822b25146114fa578063e13222f41461152a578063e711eba41461153257600080fd5b8063d26b2e5f14611437578063d2ae04121461144d578063d36719811461146d578063d43a96481461148d57600080fd5b8063ce673d98116101e2578063ce673d98146113cc578063cf38f85e146113e1578063d07f8a4314611401578063d0ae0b471461142157600080fd5b8063cac05ca91461136e578063cafa898814611383578063cb1f08e614611396578063cc97105d146113ac57600080fd5b8063ab82782c1161030e578063be6522f6116102a1578063c6faea4011610270578063c6faea40146112b2578063c761ee14146112c8578063c7c33ccb14611301578063c87b56dd14611321578063c8f4b0d01461134157600080fd5b8063be6522f614611264578063c0d63a9914611286578063c1594ffc1461129c578063c26dc084146112b257600080fd5b8063b88d4fde116102dd578063b88d4fde14611201578063b8f7443814611221578063bbeb29521461124e578063bdf58fc914610c3f57600080fd5b8063ab82782c14611188578063af9a8df6146111a8578063b3bfe6b6146111be578063b496a6b8146111eb57600080fd5b80638e3957d9116103915780639dbb2bfe116103605780639dbb2bfe146110ee578063a12ea78714611101578063a22cb4651461112e578063a6745acf1461114e578063aa35d67f1461116e57600080fd5b80638e3957d9146110905780638e3acac5146110b057806395d89b41146110c657806398ac19d5146110db57600080fd5b8063890e8584116103cd578063890e8584146110335780638a8bdc33146110495780638d04cf341461105c5780638da5cb5b1461107257600080fd5b80638230d1da14610fb7578063831ee80214610fed57806384c518d714610c3f57806386620a461461100357600080fd5b80633f59be1d116105f45780636381eec311610504578063715018a6116104975780637663317d116104665780637663317d14610f175780637a24531d14610f375780637b5c60ab14610f575780637c877b4814610f77578063806ba6d614610f9757600080fd5b8063715018a614610eb257806371b9b64614610ec7578063721bdbcc14610ee157806375fd0bb114610ef757600080fd5b80636b477d20116104d35780636b477d2014610e255780636d252c8514610e4557806370a0823114610e65578063714e89ec14610e8557600080fd5b80636381eec314610db957806365baf5db14610dd9578063668035e314610def578063699b3f3714610e0557600080fd5b806353dd51ef116105875780635beb0f9b116105565780635beb0f9b14610d385780635d4044c414610d4e5780635e8ea42514610d6e578063600068c114610d835780636352211e14610d9957600080fd5b806353dd51ef14610caa57806355f804b314610cc057806358de458e14610ce05780635a32d02614610cf657600080fd5b806345d9806b116105c357806345d9806b14610c3f5780634d8c002c14610c545780634e976bf814610c745780634f6ccce714610c8a57600080fd5b80633f59be1d14610bc957806341f2bd7714610be957806342842e0e14610c0957806344a68d2314610c2957600080fd5b806321cbc367116106ef5780632ffa65821161068257806335ddb77c1161065157806335ddb77c14610b395780633702ff0814610b59578063389bf05014610b6f578063389c715c14610b8f5780633d2a80f214610baf57600080fd5b80632ffa658214610ab6578063316d6bba14610acc578063322c012414610af957806332a4455214610b1957600080fd5b806329feb6f3116106be57806329feb6f314610a405780632aa96c3d14610a605780632acc062b14610a805780632f745c5914610a9657600080fd5b806321cbc367146109e257806323b872dd146109f757806328f87b0314610a1757806329c8f9ff14610a2d57600080fd5b8063105f917411610767578063166098b911610736578063166098b91461095e57806318160ddd1461099757806320bc87d2146109ac57806321c24409146109c257600080fd5b8063105f9174146108f657806310fab524146108fe578063116b556b1461092b578063155dd5ee1461094b57600080fd5b8063095ea7b3116107a3578063095ea7b3146108885780630c419110146108aa5780630cc1f5b6146108c05780630e667b3a146108d657600080fd5b806301ffc9a7146107d557806304ac9f111461080a57806306fdde031461082e578063081812fc14610850575b600080fd5b3480156107e157600080fd5b506107f56107f0366004615827565b611796565b60405190151581526020015b60405180910390f35b34801561081657600080fd5b5061082060205481565b604051908152602001610801565b34801561083a57600080fd5b506108436117a7565b6040516108019190615aad565b34801561085c57600080fd5b5061087061086b3660046158aa565b611839565b6040516001600160a01b039091168152602001610801565b34801561089457600080fd5b506108a86108a3366004615626565b6118d3565b005b3480156108b657600080fd5b50610820601e5481565b3480156108cc57600080fd5b50610820601c5481565b3480156108e257600080fd5b506108a86108f13660046158aa565b6119e9565b6108a8611a18565b34801561090a57600080fd5b506108206109193660046158aa565b6000908152603c602052604090205490565b34801561093757600080fd5b50604b54610870906001600160a01b031681565b6108a86109593660046158aa565b611cc7565b34801561096a57600080fd5b506107f56109793660046154f6565b6001600160a01b031660009081526027602052604090205460ff1690565b3480156109a357600080fd5b50600854610820565b3480156109b857600080fd5b5061082060135481565b3480156109ce57600080fd5b506108706109dd3660046158aa565b611d79565b3480156109ee57600080fd5b506108a8611da3565b348015610a0357600080fd5b506108a8610a12366004615544565b611ddc565b348015610a2357600080fd5b50610820601f5481565b6108a8610a3b3660046158aa565b612068565b348015610a4c57600080fd5b506108a8610a5b3660046158aa565b61221a565b348015610a6c57600080fd5b506108a8610a7b3660046158aa565b612249565b348015610a8c57600080fd5b5061082060355481565b348015610aa257600080fd5b50610820610ab1366004615626565b612278565b348015610ac257600080fd5b5061082060175481565b348015610ad857600080fd5b50610820610ae73660046158aa565b60496020526000908152604090205481565b348015610b0557600080fd5b506107f5610b143660046158aa565b61230e565b348015610b2557600080fd5b506108a8610b343660046154f6565b612335565b348015610b4557600080fd5b506108a8610b543660046158aa565b612381565b348015610b6557600080fd5b50610820603d5481565b348015610b7b57600080fd5b506108a8610b8a3660046158aa565b6123b0565b348015610b9b57600080fd5b50600c54610870906001600160a01b031681565b348015610bbb57600080fd5b50602c546107f59060ff1681565b348015610bd557600080fd5b50610820610be43660046158aa565b6123df565b348015610bf557600080fd5b50610820610c043660046158aa565b612400565b348015610c1557600080fd5b506108a8610c24366004615544565b612410565b348015610c3557600080fd5b50610820611b5881565b348015610c4b57600080fd5b5061082060fa81565b348015610c6057600080fd5b506108a8610c6f36600461580c565b61269c565b348015610c8057600080fd5b50610820601d5481565b348015610c9657600080fd5b50610820610ca53660046158aa565b6126d9565b348015610cb657600080fd5b5061082060155481565b348015610ccc57600080fd5b506108a8610cdb366004615861565b61276c565b348015610cec57600080fd5b5061082060395481565b348015610d0257600080fd5b50610d26610d113660046158aa565b60486020526000908152604090205460ff1681565b60405160ff9091168152602001610801565b348015610d4457600080fd5b5061082060265481565b348015610d5a57600080fd5b506108a8610d693660046158aa565b6127a9565b348015610d7a57600080fd5b506108206127d8565b348015610d8f57600080fd5b5061082060235481565b348015610da557600080fd5b50610870610db43660046158aa565b612817565b348015610dc557600080fd5b506108a8610dd43660046158aa565b61288e565b348015610de557600080fd5b5061082060385481565b348015610dfb57600080fd5b50610820603b5481565b348015610e1157600080fd5b506108a8610e2036600461580c565b6128bd565b348015610e3157600080fd5b506108a8610e403660046158dc565b6128fa565b348015610e5157600080fd5b50610820610e603660046158aa565b612936565b348015610e7157600080fd5b50610820610e803660046154f6565b612946565b348015610e9157600080fd5b50610820610ea03660046154f6565b60456020526000908152604090205481565b348015610ebe57600080fd5b506108a86129cd565b348015610ed357600080fd5b506031546107f59060ff1681565b348015610eed57600080fd5b50610820603f5481565b348015610f0357600080fd5b506108a8610f12366004615650565b612a03565b348015610f2357600080fd5b506108a8610f323660046158aa565b612ab2565b348015610f4357600080fd5b506108a8610f523660046158aa565b612ae1565b348015610f6357600080fd5b506108a8610f723660046158aa565b612b10565b348015610f8357600080fd5b506108a8610f92366004615650565b612b3f565b348015610fa357600080fd5b50604c54610870906001600160a01b031681565b348015610fc357600080fd5b50610820610fd23660046154f6565b6001600160a01b031660009081526041602052604090205490565b348015610ff957600080fd5b5061082060335481565b34801561100f57600080fd5b50610d2661101e3660046158aa565b60009081526048602052604090205460ff1690565b34801561103f57600080fd5b5061082060255481565b6108a86110573660046158aa565b612bd1565b34801561106857600080fd5b5061082060195481565b34801561107e57600080fd5b50600a546001600160a01b0316610870565b34801561109c57600080fd5b50600d54610870906001600160a01b031681565b3480156110bc57600080fd5b5061082060225481565b3480156110d257600080fd5b50610843612d92565b6108a86110e93660046158aa565b612da1565b6108a86110fc3660046158aa565b6130e8565b34801561110d57600080fd5b5061112161111c3660046156f4565b61323d565b6040516108019190615a72565b34801561113a57600080fd5b506108a86111493660046155fc565b61330a565b34801561115a57600080fd5b506108a86111693660046158aa565b613315565b34801561117a57600080fd5b506034546107f59060ff1681565b34801561119457600080fd5b506108a86111a33660046154f6565b613344565b3480156111b457600080fd5b50610820603a5481565b3480156111ca57600080fd5b506108206111d93660046154f6565b60446020526000908152604090205481565b3480156111f757600080fd5b50610820619c4081565b34801561120d57600080fd5b506108a861121c366004615580565b613390565b34801561122d57600080fd5b5061124161123c3660046154f6565b613623565b6040516108019190615a3a565b34801561125a57600080fd5b50610820601b5481565b34801561127057600080fd5b506112796136c5565b60405161080191906159ed565b34801561129257600080fd5b5061082060245481565b3480156112a857600080fd5b5061082060165481565b3480156112be57600080fd5b506108206122b881565b3480156112d457600080fd5b506107f56112e33660046154f6565b6001600160a01b031660009081526029602052604090205460ff1690565b34801561130d57600080fd5b506108a861131c3660046158fe565b613726565b34801561132d57600080fd5b5061084361133c3660046158aa565b613920565b34801561134d57600080fd5b5061082061135c3660046154f6565b60466020526000908152604090205481565b34801561137a57600080fd5b50611279613a0a565b6108a86113913660046158aa565b613b19565b3480156113a257600080fd5b5061082060375481565b3480156113b857600080fd5b506108a86113c73660046158aa565b613c10565b3480156113d857600080fd5b506108a8613c3f565b3480156113ed57600080fd5b506108206113fc3660046158aa565b613cd3565b34801561140d57600080fd5b506108a861141c3660046154f6565b613ce3565b34801561142d57600080fd5b5061082060145481565b34801561144357600080fd5b5061082060365481565b34801561145957600080fd5b506108a86114683660046158aa565b613d2f565b34801561147957600080fd5b506108a86114883660046158aa565b613d5e565b34801561149957600080fd5b506108206114a83660046158aa565b603c6020526000908152604090205481565b3480156114c657600080fd5b506108a86114d53660046158aa565b613d8d565b3480156114e657600080fd5b506108a86114f53660046158aa565b613dbc565b34801561150657600080fd5b506107f56115153660046158aa565b60009081526030602052604090205460ff1690565b6108a8613deb565b34801561153e57600080fd5b506107f561154d3660046158aa565b6000908152602f602052604090205460ff1690565b34801561156e57600080fd5b506107f561157d366004615511565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156115b757600080fd5b506108a86115c63660046158aa565b614032565b3480156115d757600080fd5b5061082060185481565b3480156115ed57600080fd5b50610820603e5481565b34801561160357600080fd5b506108206116123660046158aa565b614061565b34801561162357600080fd5b5061082060215481565b34801561163957600080fd5b50610820601a5481565b34801561164f57600080fd5b506108a861165e3660046158aa565b614071565b34801561166f57600080fd5b506108a861167e3660046158aa565b6140a0565b34801561168f57600080fd5b5061082061169e3660046154f6565b60436020526000908152604090205481565b3480156116bc57600080fd5b5061082060325481565b3480156116d257600080fd5b506108a86116e13660046154f6565b6140cf565b3480156116f257600080fd5b5061082060405481565b34801561170857600080fd5b506108206117173660046154f6565b60476020526000908152604090205481565b34801561173557600080fd5b50600b54610870906001600160a01b031681565b34801561175557600080fd5b506108206117643660046154f6565b60416020526000908152604090205481565b34801561178257600080fd5b506108a8611791366004615650565b614167565b60006117a1826141f9565b92915050565b6060600080546117b690615e6d565b80601f01602080910402602001604051908101604052809291908181526020018280546117e290615e6d565b801561182f5780601f106118045761010080835404028352916020019161182f565b820191906000526020600020905b81548152906001019060200180831161181257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166118b75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006118de82612817565b9050806001600160a01b0316836001600160a01b0316141561194c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016118ae565b336001600160a01b03821614806119685750611968813361157d565b6119da5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016118ae565b6119e4838361421e565b505050565b600a546001600160a01b03163314611a135760405162461bcd60e51b81526004016118ae90615c43565b603355565b6032544210158015611a2c57506000603254115b611a485760405162461bcd60e51b81526004016118ae90615d17565b6000611a5360085490565b90506122b86022546001611a679190615da3565b1115611ab55760405162461bcd60e51b815260206004820152601e60248201527f57652072616e206f7574206f66206576696c206e6f756e646c6573203a28000060448201526064016118ae565b3360009081526027602052604090205460ff16611b0f5760405162461bcd60e51b8152602060048201526018602482015277165bdd48185c99481b9bdd081bdb881dda1a5d195b1a5cdd60421b60448201526064016118ae565b3360009081526028602052604090205460ff1615611b7d5760405162461bcd60e51b815260206004820152602560248201527f596f7520616c7265616479206d696e74656420796f75722066726565206e6f75604482015264373236329760d91b60648201526084016118ae565b600c5460405163171ee88760e31b81523360048201526000916001600160a01b03169063b8f744389060240160006040518083038186803b158015611bc157600080fd5b505afa158015611bd5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611bfd9190810190615780565b5111611c1b5760405162461bcd60e51b81526004016118ae90615b12565b600b54602054604051632770a7eb60e21b815233600482015260248101919091526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b158015611c6b57600080fd5b505af1158015611c7f573d6000803e3d6000fd5b5050336000908152602860205260408120805460ff19166001908117909155602280549194509250611cb2908490615da3565b90915550611cc490503382600161428c565b50565b600a546001600160a01b03163314611cf15760405162461bcd60e51b81526004016118ae90615c43565b6000611cfe606483615de0565b604b549091506001600160a01b03166108fc611d1b836032615df4565b6040518115909202916000818181858888f19350505050611d3b57600080fd5b604c546001600160a01b03166108fc611d55836032615df4565b6040518115909202916000818181858888f19350505050611d7557600080fd5b5050565b60428181548110611d8957600080fd5b6000918252602090912001546001600160a01b0316905081565b600a546001600160a01b03163314611dcd5760405162461bcd60e51b81526004016118ae90615c43565b6031805460ff19166001179055565b60315460ff16611dfe5760405162461bcd60e51b81526004016118ae90615c16565b600b54604051636a092e7960e01b81526001600160a01b038581166004830152848116602483015290911690636a092e7990604401600060405180830381600087803b158015611e4d57600080fd5b505af1158015611e61573d6000803e3d6000fd5b50505060008281526048602052604090205460ff1615159050611ed5576001600160a01b0383166000908152604360205260408120805491611ea283615ea2565b90915550506001600160a01b0382166000908152604360205260408120805491611ecb83615e56565b919050555061205d565b60008181526048602052604090205460ff1660021415611f3c576001600160a01b0383166000908152604460205260408120805491611f1383615ea2565b90915550506001600160a01b0382166000908152604460205260408120805491611ecb83615e56565b60008181526048602052604090205460ff1660031415611fa3576001600160a01b0383166000908152604560205260408120805491611f7a83615ea2565b90915550506001600160a01b0382166000908152604560205260408120805491611ecb83615e56565b60008181526048602052604090205460ff166004141561200a576001600160a01b0383166000908152604660205260408120805491611fe183615ea2565b90915550506001600160a01b0382166000908152604660205260408120805491611ecb83615e56565b6001600160a01b038316600090815260476020526040812080549161202e83615ea2565b90915550506001600160a01b038216600090815260476020526040812080549161205783615e56565b91905055505b6119e483838361451b565b603254421015801561207c57506000603254115b6120985760405162461bcd60e51b81526004016118ae90615d17565b60006120a360085490565b90506000821180156120b6575060058211155b6120d25760405162461bcd60e51b81526004016118ae90615bb9565b34601e54836120e19190615df4565b11156121405760405162461bcd60e51b815260206004820152602860248201527f536572207765206e656564206d6f7265206d6f6e657920666f7220796f7572206044820152676e6f756e646c657360c01b60648201526084016118ae565b611b5861214d8284615da3565b111561216b5760405162461bcd60e51b81526004016118ae90615cc9565b336000908152602b602052604090205460ff16158061218c5750602c5460ff165b6121d05760405162461bcd60e51b8152602060048201526015602482015274596f752063616e6e6f74206d696e7420747769636560581b60448201526064016118ae565b336000908152602b60205260408120805460ff191660011790555b828110156119e457612208336122018385615da3565b600061428c565b8061221281615ea2565b9150506121eb565b600a546001600160a01b031633146122445760405162461bcd60e51b81526004016118ae90615c43565b603255565b600a546001600160a01b031633146122735760405162461bcd60e51b81526004016118ae90615c43565b601355565b600061228383612946565b82106122e55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016118ae565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b603a546000828152603c60205260408120549091429161232e9190615da3565b1192915050565b600a546001600160a01b0316331461235f5760405162461bcd60e51b81526004016118ae90615c43565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146123ab5760405162461bcd60e51b81526004016118ae90615c43565b602155565b600a546001600160a01b031633146123da5760405162461bcd60e51b81526004016118ae90615c43565b603a55565b601181815481106123ef57600080fd5b600091825260209091200154905081565b600e81815481106123ef57600080fd5b60315460ff166124325760405162461bcd60e51b81526004016118ae90615c16565b600b54604051636a092e7960e01b81526001600160a01b038581166004830152848116602483015290911690636a092e7990604401600060405180830381600087803b15801561248157600080fd5b505af1158015612495573d6000803e3d6000fd5b50505060008281526048602052604090205460ff1615159050612509576001600160a01b03831660009081526043602052604081208054916124d683615ea2565b90915550506001600160a01b03821660009081526043602052604081208054916124ff83615e56565b9190505550612691565b60008181526048602052604090205460ff1660021415612570576001600160a01b038316600090815260446020526040812080549161254783615ea2565b90915550506001600160a01b03821660009081526044602052604081208054916124ff83615e56565b60008181526048602052604090205460ff16600314156125d7576001600160a01b03831660009081526045602052604081208054916125ae83615ea2565b90915550506001600160a01b03821660009081526045602052604081208054916124ff83615e56565b60008181526048602052604090205460ff166004141561263e576001600160a01b038316600090815260466020526040812080549161261583615ea2565b90915550506001600160a01b03821660009081526046602052604081208054916124ff83615e56565b6001600160a01b038316600090815260476020526040812080549161266283615ea2565b90915550506001600160a01b038216600090815260476020526040812080549161268b83615e56565b91905055505b6119e483838361454c565b600a546001600160a01b031633146126c65760405162461bcd60e51b81526004016118ae90615c43565b602c805460ff1916911515919091179055565b60006126e460085490565b82106127475760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016118ae565b6008828154811061275a5761275a615f13565b90600052602060002001549050919050565b600a546001600160a01b031633146127965760405162461bcd60e51b81526004016118ae90615c43565b8051611d7590604a9060208401906153bf565b600a546001600160a01b031633146127d35760405162461bcd60e51b81526004016118ae90615c43565b601855565b600080601a546019546127eb9190615da3565b905060385481106127fe57505060365490565b603954811061280f57505060375490565b505060355490565b6000818152600260205260408120546001600160a01b0316806117a15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016118ae565b600a546001600160a01b031633146128b85760405162461bcd60e51b81526004016118ae90615c43565b603855565b600a546001600160a01b031633146128e75760405162461bcd60e51b81526004016118ae90615c43565b6034805460ff1916911515919091179055565b600a546001600160a01b031633146129245760405162461bcd60e51b81526004016118ae90615c43565b6000918252603c602052604090912055565b601281815481106123ef57600080fd5b60006001600160a01b0382166129b15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016118ae565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146129f75760405162461bcd60e51b81526004016118ae90615c43565b612a016000614567565b565b600a546001600160a01b03163314612a2d5760405162461bcd60e51b81526004016118ae90615c43565b80600081518110612a4057612a40615f13565b6020026020010151604b60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600181518110612a8157612a81615f13565b6020026020010151604c60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b600a546001600160a01b03163314612adc5760405162461bcd60e51b81526004016118ae90615c43565b601555565b600a546001600160a01b03163314612b0b5760405162461bcd60e51b81526004016118ae90615c43565b602055565b600a546001600160a01b03163314612b3a5760405162461bcd60e51b81526004016118ae90615c43565b603655565b600a546001600160a01b03163314612b695760405162461bcd60e51b81526004016118ae90615c43565b60005b8151811015611d7557600160276000848481518110612b8d57612b8d615f13565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580612bc981615ea2565b915050612b6c565b6032544210158015612be557506000603254115b612c015760405162461bcd60e51b81526004016118ae90615d17565b6000612c0c60085490565b9050600082118015612c1f575060058211155b612c3b5760405162461bcd60e51b81526004016118ae90615bb9565b611b58612c488284615da3565b1115612c665760405162461bcd60e51b81526004016118ae90615cc9565b336000908152602b602052604090205460ff161580612c875750602c5460ff165b612ccb5760405162461bcd60e51b8152602060048201526015602482015274596f752063616e6e6f74206d696e7420747769636560581b60448201526064016118ae565b600b54601f546001600160a01b0390911690639dc29fac903390612cf0908690615df4565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015612d3657600080fd5b505af1158015612d4a573d6000803e3d6000fd5b5050336000908152602b60205260408120805460ff191660011790559150505b828110156119e457612d80336122018385615da3565b80612d8a81615ea2565b915050612d6a565b6060600180546117b690615e6d565b6033544210158015612db557506000603354115b612e015760405162461bcd60e51b815260206004820152601860248201527f50686173652054776f206861736e27742073746172746564000000000000000060448201526064016118ae565b6000612e0c60085490565b9050600082118015612e1f5750600a8211155b612e3b5760405162461bcd60e51b81526004016118ae90615b5c565b6122b8612e488284615da3565b1115612ea95760405162461bcd60e51b815260206004820152602a60248201527f57652072616e206f7574206f66206c616e642120547279206d696e74696e672060448201526977697468206c6573732160b01b60648201526084016118ae565b600c5460405163171ee88760e31b81523360048201526000916001600160a01b03169063b8f744389060240160006040518083038186803b158015612eed57600080fd5b505afa158015612f01573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612f299190810190615780565b90506000805b825181108015612f3e57508481105b156130e15760306000848381518110612f5957612f59615f13565b60209081029190910181015182528101919091526040016000205460ff1615612f81576130cf565b6002612fb5612f908487615da3565b601854601754601654612fa39190615da3565b612fad9190615da3565b6018546145b9565b15612fc257506004612ffd565b612ff4612fcf8487615da3565b601854601754601654612fe29190615da3565b612fec9190615da3565b6017546145b9565b15612ffd575060035b600b54602154604051632770a7eb60e21b815233600482015260248101919091526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b15801561304d57600080fd5b505af1158015613061573d6000803e3d6000fd5b5050505060016030600086858151811061307d5761307d615f13565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506130c03384876130ba9190615da3565b8361428c565b6130cb600184615da3565b9250505b6130da600182615da3565b9050612f2f565b5050505050565b60345460ff1661313a5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74206d696e74207769746820245241494e424f5753207965742e0060448201526064016118ae565b60008181526048602052604090205460ff166001146131a65760405162461bcd60e51b815260206004820152602260248201527f4f6e6c79206576696c206e6f756e646c65732063616e20676f20746f206a6169604482015261361760f11b60648201526084016118ae565b600b54603b54604051632770a7eb60e21b815233600482015260248101919091526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b1580156131f657600080fd5b505af115801561320a573d6000803e3d6000fd5b5050506000828152603c60205260408120600190819055603f80549193509190613235908490615da3565b909155505050565b60606000825167ffffffffffffffff81111561325b5761325b615f29565b604051908082528060200260200182016040528015613284578160200160208202803683370190505b50905060005b835181101561330357604860008583815181106132a9576132a9615f13565b6020026020010151815260200190815260200160002060009054906101000a900460ff168282815181106132df576132df615f13565b60ff909216602092830291909101909101526132fc600182615da3565b905061328a565b5092915050565b611d7533838361465f565b600a546001600160a01b0316331461333f5760405162461bcd60e51b81526004016118ae90615c43565b601655565b600a546001600160a01b0316331461336e5760405162461bcd60e51b81526004016118ae90615c43565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60315460ff166133b25760405162461bcd60e51b81526004016118ae90615c16565b600b54604051636a092e7960e01b81526001600160a01b038681166004830152858116602483015290911690636a092e7990604401600060405180830381600087803b15801561340157600080fd5b505af1158015613415573d6000803e3d6000fd5b50505060008381526048602052604090205460ff1615159050613489576001600160a01b038416600090815260436020526040812080549161345683615ea2565b90915550506001600160a01b038316600090815260436020526040812080549161347f83615e56565b9190505550613611565b60008281526048602052604090205460ff16600214156134f0576001600160a01b03841660009081526044602052604081208054916134c783615ea2565b90915550506001600160a01b038316600090815260446020526040812080549161347f83615e56565b60008281526048602052604090205460ff1660031415613557576001600160a01b038416600090815260456020526040812080549161352e83615ea2565b90915550506001600160a01b038316600090815260456020526040812080549161347f83615e56565b60008281526048602052604090205460ff16600414156135be576001600160a01b038416600090815260466020526040812080549161359583615ea2565b90915550506001600160a01b038316600090815260466020526040812080549161347f83615e56565b6001600160a01b03841660009081526047602052604081208054916135e283615ea2565b90915550506001600160a01b038316600090815260476020526040812080549161360b83615e56565b91905055505b61361d8484848461472e565b50505050565b6060600061363083612946565b905060008167ffffffffffffffff81111561364d5761364d615f29565b604051908082528060200260200182016040528015613676578160200160208202803683370190505b50905060005b828110156136bd5761368e8582612278565b8282815181106136a0576136a0615f13565b6020908102919091010152806136b581615ea2565b91505061367c565b509392505050565b6060604280548060200260200160405190810160405280929190818152602001828054801561182f57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116136ff575050505050905090565b600a546001600160a01b031633146137505760405162461bcd60e51b81526004016118ae90615c43565b60ff81166137bb5760fa826026546137689190615da3565b11156137b65760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f742072657365727665206d6f726520636f6d70616e696f6e73210060448201526064016118ae565b61388e565b8060ff16600114156138305760fa826024546137d79190615da3565b11156137b65760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f742072657365727665206d6f7265206576696c206e6f756e646c65604482015261732160f01b60648201526084016118ae565b60fa826025546138409190615da3565b111561388e5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f742072657365727665206d6f7265206c616e64210000000000000060448201526064016118ae565b600061389960085490565b905060005b8381101561361d576138ba336138b48385615da3565b8561428c565b60ff83166138dc57602680549060006138d283615ea2565b919050555061390e565b8260ff16600114156138f857602480549060006138d283615ea2565b6025805490600061390883615ea2565b91905055505b8061391881615ea2565b91505061389e565b6000818152600260205260409020546060906001600160a01b031661399f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016118ae565b60006139a9614760565b60008481526048602052604090205490915081906139c99060ff1661476f565b6000858152604960205260409020546139e19061476f565b6040516020016139f393929190615960565b604051602081830303815290604052915050919050565b600f5460609060009067ffffffffffffffff811115613a2b57613a2b615f29565b604051908082528060200260200182016040528015613a54578160200160208202803683370190505b50905060005b600f54811015613b135742603a54603c6000600f8581548110613a7f57613a7f615f13565b9060005260206000200154815260200190815260200160002054613aa39190615da3565b11613b0157613ace600f8281548110613abe57613abe615f13565b9060005260206000200154612817565b828281518110613ae057613ae0615f13565b60200260200101906001600160a01b031690816001600160a01b0316815250505b613b0c600182615da3565b9050613a5a565b50919050565b60345460ff16613b6b5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74206d696e74207769746820245241494e424f5753207965742e0060448201526064016118ae565b6000613b7660085490565b9050600082118015613b895750600a8211155b613ba55760405162461bcd60e51b81526004016118ae90615b5c565b619c40601a54601954613bb89190615da3565b613bc29084615da3565b1115613be05760405162461bcd60e51b81526004016118ae90615cc9565b60005b828110156119e457613bfe33613bf98385615da3565b614898565b80613c0881615ea2565b915050613be3565b600a546001600160a01b03163314613c3a5760405162461bcd60e51b81526004016118ae90615c43565b603955565b600a546001600160a01b03163314613c695760405162461bcd60e51b81526004016118ae90615c43565b60005b604254811015613cc65760006041600060428481548110613c8f57613c8f615f13565b60009182526020808320909101546001600160a01b03168352820192909252604001902055613cbf600182615da3565b9050613c6c565b50612a0160426000615443565b601081815481106123ef57600080fd5b600a546001600160a01b03163314613d0d5760405162461bcd60e51b81526004016118ae90615c43565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314613d595760405162461bcd60e51b81526004016118ae90615c43565b601f55565b600a546001600160a01b03163314613d885760405162461bcd60e51b81526004016118ae90615c43565b603555565b600a546001600160a01b03163314613db75760405162461bcd60e51b81526004016118ae90615c43565b601e55565b600a546001600160a01b03163314613de65760405162461bcd60e51b81526004016118ae90615c43565b603b55565b6032544210158015613dff57506000603254115b613e1b5760405162461bcd60e51b81526004016118ae90615d17565b6000613e2660085490565b90506122b86022546001613e3a9190615da3565b1115613e885760405162461bcd60e51b815260206004820152601e60248201527f57652072616e206f7574206f66206576696c206e6f756e646c6573203a28000060448201526064016118ae565b3360009081526029602052604090205460ff16613ee25760405162461bcd60e51b8152602060048201526018602482015277165bdd48185c99481b9bdd081bdb881dda1a5d195b1a5cdd60421b60448201526064016118ae565b336000908152602a602052604090205460ff1615613f525760405162461bcd60e51b815260206004820152602760248201527f596f7520616c7265616479206d696e74656420796f7572206672656520636f6d6044820152663830b734b7b71760c91b60648201526084016118ae565b600c5460405163171ee88760e31b81523360048201526000916001600160a01b03169063b8f744389060240160006040518083038186803b158015613f9657600080fd5b505afa158015613faa573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052613fd29190810190615780565b5111613ff05760405162461bcd60e51b81526004016118ae90615b12565b336000908152602a60205260408120805460ff191660019081179091556022805491929091614020908490615da3565b90915550611cc490503382600061428c565b600a546001600160a01b0316331461405c5760405162461bcd60e51b81526004016118ae90615c43565b601455565b600f81815481106123ef57600080fd5b600a546001600160a01b0316331461409b5760405162461bcd60e51b81526004016118ae90615c43565b603755565b600a546001600160a01b031633146140ca5760405162461bcd60e51b81526004016118ae90615c43565b601755565b600a546001600160a01b031633146140f95760405162461bcd60e51b81526004016118ae90615c43565b6001600160a01b03811661415e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016118ae565b611cc481614567565b600a546001600160a01b031633146141915760405162461bcd60e51b81526004016118ae90615c43565b60005b8151811015611d75576001602960008484815181106141b5576141b5615f13565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806141f181615ea2565b915050614194565b60006001600160e01b0319821663780e9d6360e01b14806117a157506117a182614a79565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061425382612817565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6142968383614ac9565b6000828152604860205260409020805460ff191660ff8316908117909155614333573360009081526043602052604081208054916142d383615ea2565b9091555050600e8054600181019091557fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0182905560198054600084815260496020526040812082905590919061432983615ea2565b9190505550505050565b8060ff16600114156143b05733600090815260446020526040812080549161435a83615ea2565b9091555050600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80201829055601a8054600084815260496020526040812082905590919061432983615ea2565b8060ff166002141561442d573360009081526045602052604081208054916143d783615ea2565b909155505060108054600181019091557f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67201829055601b8054600084815260496020526040812082905590919061432983615ea2565b8060ff16600314156144aa5733600090815260466020526040812080549161445483615ea2565b909155505060118054600181019091557f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c6801829055601c8054600084815260496020526040812082905590919061432983615ea2565b3360009081526047602052604081208054916144c583615ea2565b909155505060128054600181019091557fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec344401829055601d8054600084815260496020526040812082905590919061432983615ea2565b6145253382614ae3565b6145415760405162461bcd60e51b81526004016118ae90615c78565b6119e4838383614bda565b6119e483838360405180602001604052806000815250613390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600d54604051632cdc85e960e21b815260048101859052600091839185916001600160a01b03169063b37217a490602401602060405180830381600087803b15801561460457600080fd5b505af1158015614618573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061463c91906158c3565b6146469190615ebd565b101561465457506001614658565b5060005b9392505050565b816001600160a01b0316836001600160a01b031614156146c15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016118ae565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6147383383614ae3565b6147545760405162461bcd60e51b81526004016118ae90615c78565b61361d84848484614d85565b6060604a80546117b690615e6d565b6060816147935750506040805180820190915260018152600360fc1b602082015290565b8160005b81156147bd57806147a781615ea2565b91506147b69050600a83615de0565b9150614797565b60008167ffffffffffffffff8111156147d8576147d8615f29565b6040519080825280601f01601f191660200182016040528015614802576020820181803683370190505b509050815b851561488f57614818600182615e13565b90506000614827600a88615de0565b61483290600a615df4565b61483c9088615e13565b614847906030615dbb565b905060008160f81b90508084848151811061486457614864615f13565b60200101906001600160f81b031916908160001a905350614886600a89615de0565b97505050614807565b50949350505050565b600082905060006148ad8360646013546145b9565b156148b6575060015b6148c48360646014546145b9565b156149f65760006148d6846000614db8565b905080156149f4576001603d60008282546148f19190615da3565b925050819055506149068460646015546145b9565b15614939576000818152603c602052604080822042905580546001929061492e908490615da3565b909155506149f49050565b61494281612817565b92506001603e60008282546149579190615da3565b90915550506001600160a01b0383166000908152604160205260409020546149c557604280546001810182556000919091527f38dfe4635b27babeca8be38d3b448cb5161a639b899a14825ba9c8d7892eb8c30180546001600160a01b0319166001600160a01b0385161790555b6001600160a01b03831660009081526041602052604081208054600192906149ee908490615da3565b90915550505b505b600b546001600160a01b0316639dc29fac33614a106127d8565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015614a5657600080fd5b505af1158015614a6a573d6000803e3d6000fd5b5050505061361d82848361428c565b60006001600160e01b031982166380ac58cd60e01b1480614aaa57506001600160e01b03198216635b5e139f60e01b145b806117a157506301ffc9a760e01b6001600160e01b03198316146117a1565b611d75828260405180602001604052806000815250614ede565b6000818152600260205260408120546001600160a01b0316614b5c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016118ae565b6000614b6783612817565b9050806001600160a01b0316846001600160a01b03161480614ba25750836001600160a01b0316614b9784611839565b6001600160a01b0316145b80614bd257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316614bed82612817565b6001600160a01b031614614c555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016118ae565b6001600160a01b038216614cb75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016118ae565b614cc2838383614f11565b614ccd60008261421e565b6001600160a01b0383166000908152600360205260408120805460019290614cf6908490615e13565b90915550506001600160a01b0382166000908152600360205260408120805460019290614d24908490615da3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b614d90848484614bda565b614d9c84848484614f1c565b61361d5760405162461bcd60e51b81526004016118ae90615ac0565b600f54600d54604051632cdc85e960e21b815260048101859052600092839290916001600160a01b039091169063b37217a490602401602060405180830381600087803b158015614e0857600080fd5b505af1158015614e1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614e4091906158c3565b614e4a9190615ebd565b905042603a54603c6000600f8581548110614e6757614e67615f13565b9060005260206000200154815260200190815260200160002054614e8b9190615da3565b1015614eb757600f8181548110614ea457614ea4615f13565b90600052602060002001549150506117a1565b6063831115614eca5760009150506117a1565b614bd284614ed9856001615da3565b614db8565b614ee88383615029565b614ef56000848484614f1c565b6119e45760405162461bcd60e51b81526004016118ae90615ac0565b6119e4838383615177565b60006001600160a01b0384163b1561501e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290614f609033908990889088906004016159b0565b602060405180830381600087803b158015614f7a57600080fd5b505af1925050508015614faa575060408051601f3d908101601f19168201909252614fa791810190615844565b60015b615004573d808015614fd8576040519150601f19603f3d011682016040523d82523d6000602084013e614fdd565b606091505b508051614ffc5760405162461bcd60e51b81526004016118ae90615ac0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050614bd2565b506001949350505050565b6001600160a01b03821661507f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016118ae565b6000818152600260205260409020546001600160a01b0316156150e45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016118ae565b6150f060008383614f11565b6001600160a01b0382166000908152600360205260408120805460019290615119908490615da3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0383166151d2576151cd81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6151f5565b816001600160a01b0316836001600160a01b0316146151f5576151f5838261522f565b6001600160a01b03821661520c576119e4816152cc565b826001600160a01b0316826001600160a01b0316146119e4576119e4828261537b565b6000600161523c84612946565b6152469190615e13565b600083815260076020526040902054909150808214615299576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906152de90600190615e13565b6000838152600960205260408120546008805493945090928490811061530657615306615f13565b90600052602060002001549050806008838154811061532757615327615f13565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061535f5761535f615efd565b6001900381819060005260206000200160009055905550505050565b600061538683612946565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546153cb90615e6d565b90600052602060002090601f0160209004810192826153ed5760008555615433565b82601f1061540657805160ff1916838001178555615433565b82800160010185558215615433579182015b82811115615433578251825591602001919060010190615418565b5061543f92915061545d565b5090565b5080546000825590600052602060002090810190611cc491905b5b8082111561543f576000815560010161545e565b600067ffffffffffffffff83111561548c5761548c615f29565b61549f601f8401601f1916602001615d4e565b90508281528383830111156154b357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146154e157600080fd5b919050565b803580151581146154e157600080fd5b60006020828403121561550857600080fd5b614658826154ca565b6000806040838503121561552457600080fd5b61552d836154ca565b915061553b602084016154ca565b90509250929050565b60008060006060848603121561555957600080fd5b615562846154ca565b9250615570602085016154ca565b9150604084013590509250925092565b6000806000806080858703121561559657600080fd5b61559f856154ca565b93506155ad602086016154ca565b925060408501359150606085013567ffffffffffffffff8111156155d057600080fd5b8501601f810187136155e157600080fd5b6155f087823560208401615472565b91505092959194509250565b6000806040838503121561560f57600080fd5b615618836154ca565b915061553b602084016154e6565b6000806040838503121561563957600080fd5b615642836154ca565b946020939093013593505050565b6000602080838503121561566357600080fd5b823567ffffffffffffffff81111561567a57600080fd5b8301601f8101851361568b57600080fd5b803561569e61569982615d7f565b615d4e565b80828252848201915084840188868560051b87010111156156be57600080fd5b600094505b838510156156e8576156d4816154ca565b8352600194909401939185019185016156c3565b50979650505050505050565b6000602080838503121561570757600080fd5b823567ffffffffffffffff81111561571e57600080fd5b8301601f8101851361572f57600080fd5b803561573d61569982615d7f565b80828252848201915084840188868560051b870101111561575d57600080fd5b600094505b838510156156e8578035835260019490940193918501918501615762565b6000602080838503121561579357600080fd5b825167ffffffffffffffff8111156157aa57600080fd5b8301601f810185136157bb57600080fd5b80516157c961569982615d7f565b80828252848201915084840188868560051b87010111156157e957600080fd5b600094505b838510156156e85780518352600194909401939185019185016157ee565b60006020828403121561581e57600080fd5b614658826154e6565b60006020828403121561583957600080fd5b813561465881615f3f565b60006020828403121561585657600080fd5b815161465881615f3f565b60006020828403121561587357600080fd5b813567ffffffffffffffff81111561588a57600080fd5b8201601f8101841361589b57600080fd5b614bd284823560208401615472565b6000602082840312156158bc57600080fd5b5035919050565b6000602082840312156158d557600080fd5b5051919050565b600080604083850312156158ef57600080fd5b50508035926020909101359150565b6000806040838503121561591157600080fd5b82359150602083013560ff8116811461592957600080fd5b809150509250929050565b6000815180845261594c816020860160208601615e2a565b601f01601f19169290920160200192915050565b60008451615972818460208901615e2a565b845190830190615986818360208901615e2a565b602f60f81b910190815283516159a3816001840160208801615e2a565b0160010195945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906159e390830184615934565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015615a2e5783516001600160a01b031683529284019291840191600101615a09565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015615a2e57835183529284019291840191600101615a56565b6020808252825182820181905260009190848201906040850190845b81811015615a2e57835160ff1683529284019291840191600101615a8e565b6020815260006146586020830184615934565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602a908201527f596f75206d75737420686f6c64206174206c65617374206f6e65204e6f756e646040820152691b19481d1bc81b5a5b9d60b21b606082015260800190565b6020808252603a908201527f596f757220616d6f756e74206e6565647320746f20626520677265617465722060408201527f7468656e203020616e642063616e277420657863656564203130000000000000606082015260800190565b60208082526039908201527f596f757220616d6f756e74206e6565647320746f20626520677265617465722060408201527f7468656e203020616e642063616e277420657863656564203500000000000000606082015260800190565b60208082526013908201527221b0b73737ba1031329039b7b632103cb2ba1760691b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602e908201527f57652072616e206f7574206f66206e6f756e646c65732120547279206d696e7460408201526d696e672077697468206c6573732160901b606082015260800190565b60208082526018908201527f5068617365204f6e65206861736e277420737461727465640000000000000000604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715615d7757615d77615f29565b604052919050565b600067ffffffffffffffff821115615d9957615d99615f29565b5060051b60200190565b60008219821115615db657615db6615ed1565b500190565b600060ff821660ff84168060ff03821115615dd857615dd8615ed1565b019392505050565b600082615def57615def615ee7565b500490565b6000816000190483118215151615615e0e57615e0e615ed1565b500290565b600082821015615e2557615e25615ed1565b500390565b60005b83811015615e45578181015183820152602001615e2d565b8381111561361d5750506000910152565b600081615e6557615e65615ed1565b506000190190565b600181811c90821680615e8157607f821691505b60208210811415613b1357634e487b7160e01b600052602260045260246000fd5b6000600019821415615eb657615eb6615ed1565b5060010190565b600082615ecc57615ecc615ee7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611cc457600080fdfea26469706673582212204bc5b8985bad0c873d57273d2df2b570d62b7525bf86e1e1c4b650b2afc6c6af64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f63646e2e6e6f756e646c65732e696f2f6d657461646174615f322f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): https://cdn.noundles.io/metadata_2/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [2] : 68747470733a2f2f63646e2e6e6f756e646c65732e696f2f6d65746164617461
Arg [3] : 5f322f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46448:28982:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72849:179;;;;;;;;;;-1:-1:-1;72849:179:0;;;;;:::i;:::-;;:::i;:::-;;;12049:14:1;;12042:22;12024:41;;12012:2;11997:18;72849:179:0;;;;;;;;48935:57;;;;;;;;;;;;;;;;;;;27669:25:1;;;27657:2;27642:18;48935:57:0;27523:177:1;27225:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28784:221::-;;;;;;;;;;-1:-1:-1;28784:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8815:32:1;;;8797:51;;8785:2;8770:18;28784:221:0;8651:203:1;28307:411:0;;;;;;;;;;-1:-1:-1;28307:411:0;;;;;:::i;:::-;;:::i;:::-;;48806:58;;;;;;;;;;;;;;;;48594:38;;;;;;;;;;;;;;;;69805:83;;;;;;;;;;-1:-1:-1;69805:83:0;;;;;:::i;:::-;;:::i;56128:963::-;;;:::i;69148:103::-;;;;;;;;;;-1:-1:-1;69148:103:0;;;;;:::i;:::-;69212:7;69229:19;;;:9;:19;;;;;;;69148:103;52066:23;;;;;;;;;;-1:-1:-1;52066:23:0;;;;-1:-1:-1;;;;;52066:23:0;;;64563:239;;;;;;:::i;:::-;;:::i;53157:129::-;;;;;;;;;;-1:-1:-1;53157:129:0;;;;;:::i;:::-;-1:-1:-1;;;;;53249:29:0;53225:4;53249:29;;;:18;:29;;;;;;;;;53157:129;40371:113;;;;;;;;;;-1:-1:-1;40459:10:0;:17;40371:113;;48165:36;;;;;;;;;;;;;;;;51186:35;;;;;;;;;;-1:-1:-1;51186:35:0;;;;;:::i;:::-;;:::i;69526:66::-;;;;;;;;;;;;;:::i;73036:778::-;;;;;;;;;;-1:-1:-1;73036:778:0;;;;;:::i;:::-;;:::i;48871:57::-;;;;;;;;;;;;;;;;58085:867;;;;;;:::i;:::-;;:::i;69716:83::-;;;;;;;;;;-1:-1:-1;69716:83:0;;;;;:::i;:::-;;:::i;70791:84::-;;;;;;;;;;-1:-1:-1;70791:84:0;;;;;:::i;:::-;;:::i;50456:49::-;;;;;;;;;;;;;;;;40039:256;;;;;;;;;;-1:-1:-1;40039:256:0;;;;;:::i;:::-;;:::i;48337:36::-;;;;;;;;;;;;;;;;51935:54;;;;;;;;;;-1:-1:-1;51935:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;69257:135;;;;;;;;;;-1:-1:-1;69257:135:0;;;;;:::i;:::-;;:::i;72149:107::-;;;;;;;;;;-1:-1:-1;72149:107:0;;;;;:::i;:::-;;:::i;70205:98::-;;;;;;;;;;-1:-1:-1;70205:98:0;;;;;:::i;:::-;;:::i;50913:41::-;;;;;;;;;;;;;;;;71063:82;;;;;;;;;;-1:-1:-1;71063:82:0;;;;;:::i;:::-;;:::i;46613:35::-;;;;;;;;;;-1:-1:-1;46613:35:0;;;;-1:-1:-1;;;;;46613:35:0;;;49700:47;;;;;;;;;;-1:-1:-1;49700:47:0;;;;;;;;48056:28;;;;;;;;;;-1:-1:-1;48056:28:0;;;;;:::i;:::-;;:::i;47952:30::-;;;;;;;;;;-1:-1:-1;47952:30:0;;;;;:::i;:::-;;:::i;73822:786::-;;;;;;;;;;-1:-1:-1;73822:786:0;;;;;:::i;:::-;;:::i;47542:55::-;;;;;;;;;;;;47593:4;47542:55;;47728:54;;;;;;;;;;;;47779:3;47728:54;;70309:109;;;;;;;;;;-1:-1:-1;70309:109:0;;;;;:::i;:::-;;:::i;48639:38::-;;;;;;;;;;;;;;;;40561:233;;;;;;;;;;-1:-1:-1;40561:233:0;;;;;:::i;:::-;;:::i;48251:36::-;;;;;;;;;;;;;;;;69446:74;;;;;;;;;;-1:-1:-1;69446:74:0;;;;;:::i;:::-;;:::i;50676:44::-;;;;;;;;;;;;;;;;51883:45;;;;;;;;;;-1:-1:-1;51883:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27877:4:1;27865:17;;;27847:36;;27835:2;27820:18;51883:45:0;27705:184:1;49363:31:0;;;;;;;;;;;;;;;;70693:92;;;;;;;;;;-1:-1:-1;70693:92:0;;;;;:::i;:::-;;:::i;65828:348::-;;;;;;;;;;;;;:::i;49175:36::-;;;;;;;;;;;;;;;;26919:239;;;;;;;;;;-1:-1:-1;26919:239:0;;;;;:::i;:::-;;:::i;71985:76::-;;;;;;;;;;-1:-1:-1;71985:76:0;;;;;:::i;:::-;;:::i;50625:44::-;;;;;;;;;;;;;;;;50794:40;;;;;;;;;;;;;;;;71591:91;;;;;;;;;;-1:-1:-1;71591:91:0;;;;;:::i;:::-;;:::i;71249:116::-;;;;;;;;;;-1:-1:-1;71249:116:0;;;;;:::i;:::-;;:::i;48091:29::-;;;;;;;;;;-1:-1:-1;48091:29:0;;;;;:::i;:::-;;:::i;26649:208::-;;;;;;;;;;-1:-1:-1;26649:208:0;;;;;:::i;:::-;;:::i;51476:50::-;;;;;;;;;;-1:-1:-1;51476:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;6195:103;;;;;;;;;;;;;:::i;50238:34::-;;;;;;;;;;-1:-1:-1;50238:34:0;;;;;;;;51009:41;;;;;;;;;;;;;;;;64406:149;;;;;;;;;;-1:-1:-1;64406:149:0;;;;;:::i;:::-;;:::i;70881:84::-;;;;;;;;;;-1:-1:-1;70881:84:0;;;;;:::i;:::-;;:::i;70101:98::-;;;;;;;;;;-1:-1:-1;70101:98:0;;;;;:::i;:::-;;:::i;71787:93::-;;;;;;;;;;-1:-1:-1;71787:93:0;;;;;:::i;:::-;;:::i;52869:232::-;;;;;;;;;;-1:-1:-1;52869:232:0;;;;;:::i;:::-;;:::i;52096:23::-;;;;;;;;;;-1:-1:-1;52096:23:0;;;;-1:-1:-1;;;;;52096:23:0;;;67903:105;;;;;;;;;;-1:-1:-1;67903:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;67984:22:0;67967:7;67984:22;;;:16;:22;;;;;;;67903:105;50316:30;;;;;;;;;;;;;;;;68434:107;;;;;;;;;;-1:-1:-1;68434:107:0;;;;;:::i;:::-;68501:5;68517:21;;;:11;:21;;;;;;;;;68434:107;49325:31;;;;;;;;;;;;;;;;59006:894;;;;;;:::i;:::-;;:::i;48459:38::-;;;;;;;;;;;;;;;;5544:87;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;46655:41;;;;;;;;;;-1:-1:-1;46655:41:0;;;;-1:-1:-1;;;;;46655:41:0;;;49132:36;;;;;;;;;;;;;;;;27394:104;;;;;;;;;;;;;:::i;62202:1630::-;;;;;;:::i;:::-;;:::i;63912:451::-;;;;;;:::i;:::-;;:::i;68547:329::-;;;;;;;;;;-1:-1:-1;68547:329:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;29077:155::-;;;;;;;;;;-1:-1:-1;29077:155:0;;;;;:::i;:::-;;:::i;70501:90::-;;;;;;;;;;-1:-1:-1;70501:90:0;;;;;:::i;:::-;;:::i;50405:44::-;;;;;;;;;;-1:-1:-1;50405:44:0;;;;;;;;71423:109;;;;;;;;;;-1:-1:-1;71423:109:0;;;;;:::i;:::-;;:::i;50751:36::-;;;;;;;;;;;;;;;;51344:47;;;;;;;;;;-1:-1:-1;51344:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;47479:56;;;;;;;;;;;;47530:5;47479:56;;74616:811;;;;;;;;;;-1:-1:-1;74616:811:0;;;;;:::i;:::-;;:::i;66269:373::-;;;;;;;;;;-1:-1:-1;66269:373:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48549:38::-;;;;;;;;;;;;;;;;67805:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49287:31::-;;;;;;;;;;;;;;;;48294:36;;;;;;;;;;;;;;;;47666:55;;;;;;;;;;;;47717:4;47666:55;;53639:131;;;;;;;;;;-1:-1:-1;53639:131:0;;;;;:::i;:::-;-1:-1:-1;;;;;53731:31:0;53707:4;53731:31;;;:20;:31;;;;;;;;;53639:131;55165:923;;;;;;;;;;-1:-1:-1;55165:923:0;;;;;:::i;:::-;;:::i;72299:353::-;;;;;;;;;;-1:-1:-1;72299:353:0;;;;;:::i;:::-;;:::i;51533:50::-;;;;;;;;;;-1:-1:-1;51533:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;66726:404;;;;;;;;;;;;;:::i;61593:571::-;;;;;;:::i;:::-;;:::i;50568:50::-;;;;;;;;;;;;;;;;72067:76;;;;;;;;;;-1:-1:-1;72067:76:0;;;;;:::i;:::-;;:::i;68014:295::-;;;;;;;;;;;;;:::i;48021:28::-;;;;;;;;;;-1:-1:-1;48021:28:0;;;;;:::i;:::-;;:::i;69598:112::-;;;;;;;;;;-1:-1:-1;69598:112:0;;;;;:::i;:::-;;:::i;48208:36::-;;;;;;;;;;;;;;;;50512:49;;;;;;;;;;;;;;;;69995:100;;;;;;;;;;-1:-1:-1;69995:100:0;;;;;:::i;:::-;;:::i;71688:93::-;;;;;;;;;;-1:-1:-1;71688:93:0;;;;;:::i;:::-;;:::i;50841:45::-;;;;;;;;;;-1:-1:-1;50841:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;69894:95;;;;;;;;;;-1:-1:-1;69894:95:0;;;;;:::i;:::-;;:::i;71151:92::-;;;;;;;;;;-1:-1:-1;71151:92:0;;;;;:::i;:::-;;:::i;69011:131::-;;;;;;;;;;-1:-1:-1;69011:131:0;;;;;:::i;:::-;69090:4;69104:35;;;:25;:35;;;;;;;;;69011:131;57133:904;;;:::i;68882:123::-;;;;;;;;;;-1:-1:-1;68882:123:0;;;;;:::i;:::-;68957:4;68971:31;;;:21;:31;;;;;;;;;68882:123;29303:164;;;;;;;;;;-1:-1:-1;29303:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29424:25:0;;;29400:4;29424:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29303:164;70971:86;;;;;;;;;;-1:-1:-1;70971:86:0;;;;;:::i;:::-;;:::i;48380:35::-;;;;;;;;;;;;;;;;50961:41;;;;;;;;;;;;;;;;47989:25;;;;;;;;;;-1:-1:-1;47989:25:0;;;;;:::i;:::-;;:::i;48999:57::-;;;;;;;;;;;;;;;;48504:38;;;;;;;;;;;;;;;;71886:93;;;;;;;;;;-1:-1:-1;71886:93:0;;;;;:::i;:::-;;:::i;70597:90::-;;;;;;;;;;-1:-1:-1;70597:90:0;;;;;:::i;:::-;;:::i;51285:52::-;;;;;;;;;;-1:-1:-1;51285:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;50279:30;;;;;;;;;;;;;;;;6453:201;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;51057:41::-;;;;;;;;;;;;;;;;51590:51;;;;;;;;;;-1:-1:-1;51590:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;46573:33;;;;;;;;;;-1:-1:-1;46573:33:0;;;;-1:-1:-1;;;;;46573:33:0;;;51127:52;;;;;;;;;;-1:-1:-1;51127:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;53349:234;;;;;;;;;;-1:-1:-1;53349:234:0;;;;;:::i;:::-;;:::i;72849:179::-;72960:4;72984:36;73008:11;72984:23;:36::i;:::-;72977:43;72849:179;-1:-1:-1;;72849:179:0:o;27225:100::-;27279:13;27312:5;27305:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27225:100;:::o;28784:221::-;28860:7;32127:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32127:16:0;28880:73;;;;-1:-1:-1;;;28880:73:0;;22249:2:1;28880:73:0;;;22231:21:1;22288:2;22268:18;;;22261:30;22327:34;22307:18;;;22300:62;-1:-1:-1;;;22378:18:1;;;22371:42;22430:19;;28880:73:0;;;;;;;;;-1:-1:-1;28973:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28973:24:0;;28784:221::o;28307:411::-;28388:13;28404:23;28419:7;28404:14;:23::i;:::-;28388:39;;28452:5;-1:-1:-1;;;;;28446:11:0;:2;-1:-1:-1;;;;;28446:11:0;;;28438:57;;;;-1:-1:-1;;;28438:57:0;;24252:2:1;28438:57:0;;;24234:21:1;24291:2;24271:18;;;24264:30;24330:34;24310:18;;;24303:62;-1:-1:-1;;;24381:18:1;;;24374:31;24422:19;;28438:57:0;24050:397:1;28438:57:0;4348:10;-1:-1:-1;;;;;28530:21:0;;;;:62;;-1:-1:-1;28555:37:0;28572:5;4348:10;29303:164;:::i;28555:37::-;28508:168;;;;-1:-1:-1;;;28508:168:0;;19587:2:1;28508:168:0;;;19569:21:1;19626:2;19606:18;;;19599:30;19665:34;19645:18;;;19638:62;19736:26;19716:18;;;19709:54;19780:19;;28508:168:0;19385:420:1;28508:168:0;28689:21;28698:2;28702:7;28689:8;:21::i;:::-;28377:341;28307:411;;:::o;69805:83::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;69867:11:::1;:18:::0;69805:83::o;56128:963::-;52320:11;;52301:15;:30;;:49;;;;;52349:1;52335:11;;:15;52301:49;52293:86;;;;-1:-1:-1;;;52293:86:0;;;;;;;:::i;:::-;56200:18:::1;56221:13;40459:10:::0;:17;;40371:113;56221:13:::1;56200:34;;47655:4;56283:17;;56303:1;56283:21;;;;:::i;:::-;:49;;56275:94;;;::::0;-1:-1:-1;;;56275:94:0;;14858:2:1;56275:94:0::1;::::0;::::1;14840:21:1::0;14897:2;14877:18;;;14870:30;14936:32;14916:18;;;14909:60;14986:18;;56275:94:0::1;14656:354:1::0;56275:94:0::1;56407:10;56388:30;::::0;;;:18:::1;:30;::::0;;;;;::::1;;56380:75;;;::::0;-1:-1:-1;;;56380:75:0;;21535:2:1;56380:75:0::1;::::0;::::1;21517:21:1::0;21574:2;21554:18;;;21547:30;-1:-1:-1;;;21593:18:1;;;21586:54;21657:18;;56380:75:0::1;21333:348:1::0;56380:75:0::1;56492:10;56474:29;::::0;;;:17:::1;:29;::::0;;;;;::::1;;:38;56466:88;;;::::0;-1:-1:-1;;;56466:88:0;;15217:2:1;56466:88:0::1;::::0;::::1;15199:21:1::0;15256:2;15236:18;;;15229:30;15295:34;15275:18;;;15268:62;-1:-1:-1;;;15346:18:1;;;15339:35;15391:19;;56466:88:0::1;15015:401:1::0;56466:88:0::1;56644:9;::::0;:43:::1;::::0;-1:-1:-1;;;56644:43:0;;56676:10:::1;56644:43;::::0;::::1;8797:51:1::0;56697:1:0::1;::::0;-1:-1:-1;;;;;56644:9:0::1;::::0;:31:::1;::::0;8770:18:1;;56644:43:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;56644:43:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;:50;:54;56636:109;;;;-1:-1:-1::0;;;56636:109:0::1;;;;;;;:::i;:::-;56789:8;::::0;56815:20:::1;::::0;56789:47:::1;::::0;-1:-1:-1;;;56789:47:0;;56803:10:::1;56789:47;::::0;::::1;9835:51:1::0;9902:18;;;9895:34;;;;-1:-1:-1;;;;;56789:8:0;;::::1;::::0;:13:::1;::::0;9808:18:1;;56789:47:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;56915:10:0::1;56897:29;::::0;;;:17:::1;:29;::::0;;;;:36;;-1:-1:-1;;56897:36:0::1;56929:4;56897:36:::0;;::::1;::::0;;;56986:17:::1;:22:::0;;56929:4;;-1:-1:-1;56986:17:0;-1:-1:-1;56986:22:0::1;::::0;56929:4;;56986:22:::1;:::i;:::-;::::0;;;-1:-1:-1;57042:41:0::1;::::0;-1:-1:-1;57057:10:0::1;57069::::0;57081:1:::1;57042:14;:41::i;:::-;56189:902;56128:963::o:0;64563:239::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;64641:17:::1;64661:15;64673:3;64661:9:::0;:15:::1;:::i;:::-;64705:8;::::0;64641:35;;-1:-1:-1;;;;;;64705:8:0::1;64697:38;64720:14;64641:35:::0;64732:2:::1;64720:14;:::i;:::-;64697:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;64689:47;;;::::0;::::1;;64763:8;::::0;-1:-1:-1;;;;;64763:8:0::1;64755:38;64778:14;:9:::0;64790:2:::1;64778:14;:::i;:::-;64755:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;64747:47;;;::::0;::::1;;64630:172;64563:239:::0;:::o;51186:35::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51186:35:0;;-1:-1:-1;51186:35:0;:::o;69526:66::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;69571:11:::1;:18:::0;;-1:-1:-1;;69571:18:0::1;69585:4;69571:18;::::0;;69526:66::o;73036:778::-;52190:11;;;;52182:43;;;;-1:-1:-1;;;52182:43:0;;;;;;;:::i;:::-;73142:8:::1;::::0;:33:::1;::::0;-1:-1:-1;;;73142:33:0;;-1:-1:-1;;;;;9089:15:1;;;73142:33:0::1;::::0;::::1;9071:34:1::0;9141:15;;;9121:18;;;9114:43;73142:8:0;;::::1;::::0;:23:::1;::::0;9006:18:1;;73142:33:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;73192:20:0::1;::::0;;;:11:::1;:20;::::0;;;;;::::1;;:25:::0;73188:568:::1;::::0;-1:-1:-1;73188:568:0::1;;-1:-1:-1::0;;;;;73234:22:0;::::1;;::::0;;;:16:::1;:22;::::0;;;;:24;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;73273:20:0;::::1;;::::0;;;:16:::1;:20;::::0;;;;:22;;;::::1;::::0;::::1;:::i;:::-;;;;;;73188:568;;;73317:20;::::0;;;:11:::1;:20;::::0;;;;;::::1;;73341:1;73317:25;73313:443;;;-1:-1:-1::0;;;;;73359:17:0;::::1;;::::0;;;:11:::1;:17;::::0;;;;:19;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;73393:15:0;::::1;;::::0;;;:11:::1;:15;::::0;;;;:17;;;::::1;::::0;::::1;:::i;73313:443::-;73432:20;::::0;;;:11:::1;:20;::::0;;;;;::::1;;73456:1;73432:25;73428:328;;;-1:-1:-1::0;;;;;73474:20:0;::::1;;::::0;;;:14:::1;:20;::::0;;;;:22;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;73511:18:0;::::1;;::::0;;;:14:::1;:18;::::0;;;;:20;;;::::1;::::0;::::1;:::i;73428:328::-;73553:20;::::0;;;:11:::1;:20;::::0;;;;;::::1;;73577:1;73553:25;73549:207;;;-1:-1:-1::0;;;;;73595:20:0;::::1;;::::0;;;:14:::1;:20;::::0;;;;:22;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;73632:18:0;::::1;;::::0;;;:14:::1;:18;::::0;;;;:20;;;::::1;::::0;::::1;:::i;73549:207::-;-1:-1:-1::0;;;;;73685:21:0;::::1;;::::0;;;:15:::1;:21;::::0;;;;:23;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;73723:19:0;::::1;;::::0;;;:15:::1;:19;::::0;;;;:21;;;::::1;::::0;::::1;:::i;:::-;;;;;;73549:207;73768:38;73788:4;73794:2;73798:7;73768:19;:38::i;58085:867::-:0;52320:11;;52301:15;:30;;:49;;;;;52349:1;52335:11;;:15;52301:49;52293:86;;;;-1:-1:-1;;;52293:86:0;;;;;;;:::i;:::-;58170:18:::1;58191:13;40459:10:::0;:17;;40371:113;58191:13:::1;58170:34;;58285:1;58273:9;:13;:31;;;;;58303:1;58290:9;:14;;58273:31;58265:115;;;;-1:-1:-1::0;;;58265:115:0::1;;;;;;;:::i;:::-;58442:9;58411:27;;58399:9;:39;;;;:::i;:::-;:52;;58391:107;;;::::0;-1:-1:-1;;;58391:107:0;;26548:2:1;58391:107:0::1;::::0;::::1;26530:21:1::0;26587:2;26567:18;;;26560:30;26626:34;26606:18;;;26599:62;-1:-1:-1;;;26677:18:1;;;26670:38;26725:19;;58391:107:0::1;26346:404:1::0;58391:107:0::1;47593:4;58517:22;58529:10:::0;58517:9;:22:::1;:::i;:::-;:48;;58509:107;;;;-1:-1:-1::0;;;58509:107:0::1;;;;;;;:::i;:::-;58655:10;58635:31;::::0;;;:19:::1;:31;::::0;;;;;::::1;;:40;::::0;:71:::1;;-1:-1:-1::0;58679:27:0::1;::::0;::::1;;58635:71;58627:105;;;::::0;-1:-1:-1;;;58627:105:0;;25014:2:1;58627:105:0::1;::::0;::::1;24996:21:1::0;25053:2;25033:18;;;25026:30;-1:-1:-1;;;25072:18:1;;;25065:51;25133:18;;58627:105:0::1;24812:345:1::0;58627:105:0::1;58765:10;58745:31;::::0;;;:19:::1;:31;::::0;;;;:38;;-1:-1:-1;;58745:38:0::1;58779:4;58745:38;::::0;;58796:149:::1;58836:9;58822:11;:23;58796:149;;;58877:56;58892:10;58905:24;58918:11:::0;58905:10;:24:::1;:::i;:::-;58931:1;58877:14;:56::i;:::-;58847:13:::0;::::1;::::0;::::1;:::i;:::-;;;;58796:149;;69716:83:::0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;69778:11:::1;:18:::0;69716:83::o;70791:84::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;70851:11:::1;:21:::0;70791:84::o;40039:256::-;40136:7;40172:23;40189:5;40172:16;:23::i;:::-;40164:5;:31;40156:87;;;;-1:-1:-1;;;40156:87:0;;13620:2:1;40156:87:0;;;13602:21:1;13659:2;13639:18;;;13632:30;13698:34;13678:18;;;13671:62;-1:-1:-1;;;13749:18:1;;;13742:41;13800:19;;40156:87:0;13418:407:1;40156:87:0;-1:-1:-1;;;;;;40261:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40039:256::o;69257:135::-;69360:10;;69323:4;69338:19;;;:9;:19;;;;;;69323:4;;69373:15;;69338:32;;69360:10;69338:32;:::i;:::-;:50;;69257:135;-1:-1:-1;;69257:135:0:o;72149:107::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;72215:8:::1;:38:::0;;-1:-1:-1;;;;;;72215:38:0::1;-1:-1:-1::0;;;;;72215:38:0;;;::::1;::::0;;;::::1;::::0;;72149:107::o;70205:98::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;70273:20:::1;:27:::0;70205:98::o;71063:82::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;71122:10:::1;:20:::0;71063:82::o;48056:28::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48056:28:0;:::o;47952:30::-;;;;;;;;;;;;73822:786;52190:11;;;;52182:43;;;;-1:-1:-1;;;52182:43:0;;;;;;;:::i;:::-;73932:8:::1;::::0;:33:::1;::::0;-1:-1:-1;;;73932:33:0;;-1:-1:-1;;;;;9089:15:1;;;73932:33:0::1;::::0;::::1;9071:34:1::0;9141:15;;;9121:18;;;9114:43;73932:8:0;;::::1;::::0;:23:::1;::::0;9006:18:1;;73932:33:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;73982:20:0::1;::::0;;;:11:::1;:20;::::0;;;;;::::1;;:25:::0;73978:568:::1;::::0;-1:-1:-1;73978:568:0::1;;-1:-1:-1::0;;;;;74024:22:0;::::1;;::::0;;;:16:::1;:22;::::0;;;;:24;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;74063:20:0;::::1;;::::0;;;:16:::1;:20;::::0;;;;:22;;;::::1;::::0;::::1;:::i;:::-;;;;;;73978:568;;;74107:20;::::0;;;:11:::1;:20;::::0;;;;;::::1;;74131:1;74107:25;74103:443;;;-1:-1:-1::0;;;;;74149:17:0;::::1;;::::0;;;:11:::1;:17;::::0;;;;:19;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;74183:15:0;::::1;;::::0;;;:11:::1;:15;::::0;;;;:17;;;::::1;::::0;::::1;:::i;74103:443::-;74222:20;::::0;;;:11:::1;:20;::::0;;;;;::::1;;74246:1;74222:25;74218:328;;;-1:-1:-1::0;;;;;74264:20:0;::::1;;::::0;;;:14:::1;:20;::::0;;;;:22;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;74301:18:0;::::1;;::::0;;;:14:::1;:18;::::0;;;;:20;;;::::1;::::0;::::1;:::i;74218:328::-;74343:20;::::0;;;:11:::1;:20;::::0;;;;;::::1;;74367:1;74343:25;74339:207;;;-1:-1:-1::0;;;;;74385:20:0;::::1;;::::0;;;:14:::1;:20;::::0;;;;:22;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;74422:18:0;::::1;;::::0;;;:14:::1;:18;::::0;;;;:20;;;::::1;::::0;::::1;:::i;74339:207::-;-1:-1:-1::0;;;;;74475:21:0;::::1;;::::0;;;:15:::1;:21;::::0;;;;:23;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;74513:19:0;::::1;;::::0;;;:15:::1;:19;::::0;;;;:21;;;::::1;::::0;::::1;:::i;:::-;;;;;;74339:207;74558:42;74582:4;74588:2;74592:7;74558:23;:42::i;70309:109::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;70381:27:::1;:34:::0;;-1:-1:-1;;70381:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;70309:109::o;40561:233::-;40636:7;40672:30;40459:10;:17;;40371:113;40672:30;40664:5;:38;40656:95;;;;-1:-1:-1;;;40656:95:0;;26135:2:1;40656:95:0;;;26117:21:1;26174:2;26154:18;;;26147:30;26213:34;26193:18;;;26186:62;-1:-1:-1;;;26264:18:1;;;26257:42;26316:19;;40656:95:0;25933:408:1;40656:95:0;40769:10;40780:5;40769:17;;;;;;;;:::i;:::-;;;;;;;;;40762:24;;40561:233;;;:::o;69446:74::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;69504:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;70693:92::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;70757:15:::1;:25:::0;70693:92::o;65828:348::-;65882:7;65904:13;65942;;65920:19;;:35;;;;:::i;:::-;65904:51;;65980:10;;65971:5;:19;65968:76;;-1:-1:-1;;66013:19:0;;;65828:348::o;65968:76::-;66066:10;;66057:5;:19;66054:76;;-1:-1:-1;;66099:19:0;;;65828:348::o;66054:76::-;-1:-1:-1;;66149:19:0;;;65828:348::o;26919:239::-;26991:7;27027:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27027:16:0;27062:19;27054:73;;;;-1:-1:-1;;;27054:73:0;;20777:2:1;27054:73:0;;;20759:21:1;20816:2;20796:18;;;20789:30;20855:34;20835:18;;;20828:62;-1:-1:-1;;;20906:18:1;;;20899:39;20955:19;;27054:73:0;20575:405:1;71985:76:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;72041:10:::1;:17:::0;71985:76::o;71591:91::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;71651:21:::1;:28:::0;;-1:-1:-1;;71651:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;71591:91::o;71249:116::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;71333:19:::1;::::0;;;:9:::1;:19;::::0;;;;;:29;71249:116::o;48091:29::-;;;;;;;;;;;;26649:208;26721:7;-1:-1:-1;;;;;26749:19:0;;26741:74;;;;-1:-1:-1;;;26741:74:0;;20366:2:1;26741:74:0;;;20348:21:1;20405:2;20385:18;;;20378:30;20444:34;20424:18;;;20417:62;-1:-1:-1;;;20495:18:1;;;20488:40;20545:19;;26741:74:0;20164:406:1;26741:74:0;-1:-1:-1;;;;;;26833:16:0;;;;;:9;:16;;;;;;;26649:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;64406:149::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;64501:9:::1;64511:1;64501:12;;;;;;;;:::i;:::-;;;;;;;64490:8;;:23;;;;;-1:-1:-1::0;;;;;64490:23:0::1;;;;;-1:-1:-1::0;;;;;64490:23:0::1;;;;;;64535:9;64545:1;64535:12;;;;;;;;:::i;:::-;;;;;;;64524:8;;:23;;;;;-1:-1:-1::0;;;;;64524:23:0::1;;;;;-1:-1:-1::0;;;;;64524:23:0::1;;;;;;64406:149:::0;:::o;70881:84::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;70941:11:::1;:21:::0;70881:84::o;70101:98::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;70169:20:::1;:27:::0;70101:98::o;71787:93::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;71851:19:::1;:26:::0;71787:93::o;52869:232::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;52956:18:::1;52951:143;52988:9;:16;52975:10;:29;52951:143;;;53078:4;53034:18;:41;53053:9;53063:10;53053:21;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;53034:41:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;53034:41:0;:48;;-1:-1:-1;;53034:48:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53005:12;::::1;::::0;::::1;:::i;:::-;;;;52951:143;;59006:894:::0;52320:11;;52301:15;:30;;:49;;;;;52349:1;52335:11;;:15;52301:49;52293:86;;;;-1:-1:-1;;;52293:86:0;;;;;;;:::i;:::-;59103:18:::1;59124:13;40459:10:::0;:17;;40371:113;59124:13:::1;59103:34;;59218:1;59206:9;:13;:31;;;;;59236:1;59223:9;:14;;59206:31;59198:114;;;;-1:-1:-1::0;;;59198:114:0::1;;;;;;;:::i;:::-;47593:4;59331:22;59343:10:::0;59331:9;:22:::1;:::i;:::-;:48;;59323:107;;;;-1:-1:-1::0;;;59323:107:0::1;;;;;;;:::i;:::-;59469:10;59449:31;::::0;;;:19:::1;:31;::::0;;;;;::::1;;:40;::::0;:71:::1;;-1:-1:-1::0;59493:27:0::1;::::0;::::1;;59449:71;59441:105;;;::::0;-1:-1:-1;;;59441:105:0;;25014:2:1;59441:105:0::1;::::0;::::1;24996:21:1::0;25053:2;25033:18;;;25026:30;-1:-1:-1;;;25072:18:1;;;25065:51;25133:18;;59441:105:0::1;24812:345:1::0;59441:105:0::1;59590:8;::::0;59616:31:::1;::::0;-1:-1:-1;;;;;59590:8:0;;::::1;::::0;:13:::1;::::0;59604:10:::1;::::0;59616:43:::1;::::0;59650:9;;59616:43:::1;:::i;:::-;59590:70;::::0;-1:-1:-1;;;;;;59590:70:0::1;::::0;;;;;;-1:-1:-1;;;;;9853:32:1;;;59590:70:0::1;::::0;::::1;9835:51:1::0;9902:18;;;9895:34;9808:18;;59590:70:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;59693:10:0::1;59673:31;::::0;;;:19:::1;:31;::::0;;;;:38;;-1:-1:-1;;59673:38:0::1;59707:4;59673:38;::::0;;:31;-1:-1:-1;;59745:148:0::1;59785:9;59771:11;:23;59745:148;;;59826:55;59841:10;59853:24;59866:11:::0;59853:10;:24:::1;:::i;59826:55::-;59796:13:::0;::::1;::::0;::::1;:::i;:::-;;;;59745:148;;27394:104:::0;27450:13;27483:7;27476:14;;;;;:::i;62202:1630::-;52474:11;;52455:15;:30;;:49;;;;;52503:1;52489:11;;:15;52455:49;52447:86;;;;-1:-1:-1;;;52447:86:0;;25782:2:1;52447:86:0;;;25764:21:1;25821:2;25801:18;;;25794:30;25860:26;25840:18;;;25833:54;25904:18;;52447:86:0;25580:348:1;52447:86:0;62297:18:::1;62318:13;40459:10:::0;:17;;40371:113;62318:13:::1;62297:34;;62364:1;62352:9;:13;:32;;;;;62382:2;62369:9;:15;;62352:32;62344:103;;;;-1:-1:-1::0;;;62344:103:0::1;;;;;;;:::i;:::-;47717:4;62466:22;62478:10:::0;62466:9;:22:::1;:::i;:::-;:45;;62458:100;;;::::0;-1:-1:-1;;;62458:100:0;;13209:2:1;62458:100:0::1;::::0;::::1;13191:21:1::0;13248:2;13228:18;;;13221:30;13287:34;13267:18;;;13260:62;-1:-1:-1;;;13338:18:1;;;13331:40;13388:19;;62458:100:0::1;13007:406:1::0;62458:100:0::1;62659:9;::::0;:43:::1;::::0;-1:-1:-1;;;62659:43:0;;62691:10:::1;62659:43;::::0;::::1;8797:51:1::0;62624:32:0::1;::::0;-1:-1:-1;;;;;62659:9:0::1;::::0;:31:::1;::::0;8770:18:1;;62659:43:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;62659:43:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;62624:78;;62715:14;62797:13:::0;62792:1033:::1;62821:15;:22;62813:5;:30;62812:53;;;;;62856:9;62848:5;:17;62812:53;62792:1033;;;62950:25;:49;62976:15;62992:5;62976:22;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;62950:49;;;::::1;::::0;;;;;;-1:-1:-1;62950:49:0;;::::1;;62947:96;;;63019:8;;62947:96;63073:1;63138:104;63152:19;63165:6:::0;63152:10;:19:::1;:::i;:::-;63208:15;;63191:14;;63174;;:31;;;;:::i;:::-;:49;;;;:::i;:::-;63226:15;;63138:13;:104::i;:::-;63135:308;;;-1:-1:-1::0;63270:1:0::1;63135:308;;;63295:103;63309:19;63322:6:::0;63309:10;:19:::1;:::i;:::-;63365:15;;63348:14;;63331;;:31;;;;:::i;:::-;:49;;;;:::i;:::-;63383:14;;63295:13;:103::i;:::-;63292:151;;;-1:-1:-1::0;63426:1:0::1;63292:151;63494:8;::::0;63520:20:::1;::::0;63494:47:::1;::::0;-1:-1:-1;;;63494:47:0;;63508:10:::1;63494:47;::::0;::::1;9835:51:1::0;9902:18;;;9895:34;;;;-1:-1:-1;;;;;63494:8:0;;::::1;::::0;:13:::1;::::0;9808:18:1;;63494:47:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;63645:4;63593:25;:49;63619:15;63635:5;63619:22;;;;;;;;:::i;:::-;;;;;;;63593:49;;;;;;;;;;;;:56;;;;;;;;;;;;;;;;;;63691:55;63706:10;63732:6;63719:10;:19;;;;:::i;:::-;63740:5;63691:14;:55::i;:::-;63802:11;63812:1;63802:11:::0;::::1;:::i;:::-;;;62878:947;62792:1033;62867:10;62876:1;62867:10:::0;::::1;:::i;:::-;;;62792:1033;;;;62286:1546;;;62202:1630:::0;:::o;63912:451::-;52615:21;;;;52607:65;;;;-1:-1:-1;;;52607:65:0;;16391:2:1;52607:65:0;;;16373:21:1;16430:2;16410:18;;;16403:30;16469:33;16449:18;;;16442:61;16520:18;;52607:65:0;16189:355:1;52607:65:0;64066:21:::1;::::0;;;:11:::1;:21;::::0;;;;;::::1;;::::0;:26:::1;64058:73;;;::::0;-1:-1:-1;;;64058:73:0;;18345:2:1;64058:73:0::1;::::0;::::1;18327:21:1::0;18384:2;18364:18;;;18357:30;18423:34;18403:18;;;18396:62;-1:-1:-1;;;18474:18:1;;;18467:32;18516:19;;64058:73:0::1;18143:398:1::0;64058:73:0::1;64194:8;::::0;64220:12:::1;::::0;64194:39:::1;::::0;-1:-1:-1;;;64194:39:0;;64208:10:::1;64194:39;::::0;::::1;9835:51:1::0;9902:18;;;9895:34;;;;-1:-1:-1;;;;;64194:8:0;;::::1;::::0;:13:::1;::::0;9808:18:1;;64194:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;64279:19:0::1;::::0;;;:9:::1;:19;::::0;;;;64301:1:::1;64279:23:::0;;;;64339:11:::1;:16:::0;;64301:1;;-1:-1:-1;64339:11:0;64279:19;64339:16:::1;::::0;64301:1;;64339:16:::1;:::i;:::-;::::0;;;-1:-1:-1;;;63912:451:0:o;68547:329::-;68623:14;68650:21;68686:8;:15;68674:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68674:28:0;;68650:52;;68720:13;68715:128;68743:8;:15;68735:5;:23;68715:128;;;68803:11;:28;68815:8;68824:5;68815:15;;;;;;;;:::i;:::-;;;;;;;68803:28;;;;;;;;;;;;;;;;;;;;;68787:6;68794:5;68787:13;;;;;;;;:::i;:::-;:44;;;;:13;;;;;;;;;;;:44;68760:10;68769:1;68760:10;;:::i;:::-;;;68715:128;;;-1:-1:-1;68862:6:0;68547:329;-1:-1:-1;;68547:329:0:o;29077:155::-;29172:52;4348:10;29205:8;29215;29172:18;:52::i;70501:90::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;70564:14:::1;:24:::0;70501:90::o;71423:109::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;71489:9:::1;:40:::0;;-1:-1:-1;;;;;;71489:40:0::1;-1:-1:-1::0;;;;;71489:40:0;;;::::1;::::0;;;::::1;::::0;;71423:109::o;74616:811::-;52190:11;;;;52182:43;;;;-1:-1:-1;;;52182:43:0;;;;;;;:::i;:::-;74745:8:::1;::::0;:33:::1;::::0;-1:-1:-1;;;74745:33:0;;-1:-1:-1;;;;;9089:15:1;;;74745:33:0::1;::::0;::::1;9071:34:1::0;9141:15;;;9121:18;;;9114:43;74745:8:0;;::::1;::::0;:23:::1;::::0;9006:18:1;;74745:33:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;74795:20:0::1;::::0;;;:11:::1;:20;::::0;;;;;::::1;;:25:::0;74791:568:::1;::::0;-1:-1:-1;74791:568:0::1;;-1:-1:-1::0;;;;;74837:22:0;::::1;;::::0;;;:16:::1;:22;::::0;;;;:24;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;74876:20:0;::::1;;::::0;;;:16:::1;:20;::::0;;;;:22;;;::::1;::::0;::::1;:::i;:::-;;;;;;74791:568;;;74920:20;::::0;;;:11:::1;:20;::::0;;;;;::::1;;74944:1;74920:25;74916:443;;;-1:-1:-1::0;;;;;74962:17:0;::::1;;::::0;;;:11:::1;:17;::::0;;;;:19;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;74996:15:0;::::1;;::::0;;;:11:::1;:15;::::0;;;;:17;;;::::1;::::0;::::1;:::i;74916:443::-;75035:20;::::0;;;:11:::1;:20;::::0;;;;;::::1;;75059:1;75035:25;75031:328;;;-1:-1:-1::0;;;;;75077:20:0;::::1;;::::0;;;:14:::1;:20;::::0;;;;:22;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;75114:18:0;::::1;;::::0;;;:14:::1;:18;::::0;;;;:20;;;::::1;::::0;::::1;:::i;75031:328::-;75156:20;::::0;;;:11:::1;:20;::::0;;;;;::::1;;75180:1;75156:25;75152:207;;;-1:-1:-1::0;;;;;75198:20:0;::::1;;::::0;;;:14:::1;:20;::::0;;;;:22;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;75235:18:0;::::1;;::::0;;;:14:::1;:18;::::0;;;;:20;;;::::1;::::0;::::1;:::i;75152:207::-;-1:-1:-1::0;;;;;75288:21:0;::::1;;::::0;;;:15:::1;:21;::::0;;;;:23;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;75326:19:0;::::1;;::::0;;;:15:::1;:19;::::0;;;;:21;;;::::1;::::0;::::1;:::i;:::-;;;;;;75152:207;75371:48;75395:4;75401:2;75405:7;75414:4;75371:23;:48::i;:::-;74616:811:::0;;;;:::o;66269:373::-;66342:16;66371:18;66392:20;66402:9;66392;:20::i;:::-;66371:41;;66425:28;66470:10;66456:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66456:25:0;;66425:56;;66497:9;66492:112;66511:10;66507:1;:14;66492:112;;;66559:33;66579:9;66590:1;66559:19;:33::i;:::-;66542:11;66554:1;66542:14;;;;;;;;:::i;:::-;;;;;;;;;;:50;66522:3;;;;:::i;:::-;;;;66492:112;;;-1:-1:-1;66623:11:0;66269:373;-1:-1:-1;;;66269:373:0:o;67805:92::-;67852:16;67878:17;67871:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;67871:24:0;;;;;;;;;;;;;;;;;;;;;;67805:92;:::o;55165:923::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;55309:10:::1;::::0;::::1;55305:383;;47901:3;55359:7;55344:12;;:22;;;;:::i;:::-;:43;;55336:87;;;::::0;-1:-1:-1;;;55336:87:0;;24654:2:1;55336:87:0::1;::::0;::::1;24636:21:1::0;24693:2;24673:18;;;24666:30;24732:33;24712:18;;;24705:61;24783:18;;55336:87:0::1;24452:355:1::0;55336:87:0::1;55305:383;;;55445:5;:10;;55454:1;55445:10;55441:247;;;47779:3;55495:7;55480:12;;:22;;;;:::i;:::-;:43;;55472:90;;;::::0;-1:-1:-1;;;55472:90:0;;23849:2:1;55472:90:0::1;::::0;::::1;23831:21:1::0;23888:2;23868:18;;;23861:30;23927:34;23907:18;;;23900:62;-1:-1:-1;;;23978:18:1;;;23971:32;24020:19;;55472:90:0::1;23647:398:1::0;55441:247:0::1;47840:3;55618:7;55603:12;;:22;;;;:::i;:::-;:43;;55595:81;;;::::0;-1:-1:-1;;;55595:81:0;;20012:2:1;55595:81:0::1;::::0;::::1;19994:21:1::0;20051:2;20031:18;;;20024:30;20090:27;20070:18;;;20063:55;20135:18;;55595:81:0::1;19810:349:1::0;55595:81:0::1;55700:11;55714:13;40459:10:::0;:17;;40371:113;55714:13:::1;55700:27;;55776:9;55771:310;55791:7;55787:1;:11;55771:310;;;55820:42;55835:10;55847:7;55853:1:::0;55847:3;:7:::1;:::i;:::-;55856:5;55820:14;:42::i;:::-;55883:10;::::0;::::1;55879:191;;55914:12;:14:::0;;;:12:::1;:14;::::0;::::1;:::i;:::-;;;;;;55879:191;;;55954:5;:10;;55963:1;55954:10;55950:120;;;55985:12;:14:::0;;;:12:::1;:14;::::0;::::1;:::i;55950:120::-;56040:12;:14:::0;;;:12:::1;:14;::::0;::::1;:::i;:::-;;;;;;55950:120;55800:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55771:310;;72299:353:::0;32103:4;32127:16;;;:7;:16;;;;;;72372:13;;-1:-1:-1;;;;;32127:16:0;72398:76;;;;-1:-1:-1;;;72398:76:0;;23433:2:1;72398:76:0;;;23415:21:1;23472:2;23452:18;;;23445:30;23511:34;23491:18;;;23484:62;-1:-1:-1;;;23562:18:1;;;23555:45;23617:19;;72398:76:0;23231:411:1;72398:76:0;72487:18;72508:10;:8;:10::i;:::-;72577:20;;;;:11;:20;;;;;;72487:31;;-1:-1:-1;72487:31:0;;72568:30;;72577:20;;72568:8;:30::i;:::-;72614:27;;;;:18;:27;;;;;;72605:37;;:8;:37::i;:::-;72545:98;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72531:113;;;72299:353;;;:::o;66726:404::-;66850:8;:15;66781:16;;66810:23;;66836:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66836:30:0;;66810:56;;66883:13;66879:218;66906:8;:15;66898:23;;66879:218;;;66995:15;66981:10;;66952:9;:26;66962:8;66971:5;66962:15;;;;;;;;:::i;:::-;;;;;;;;;66952:26;;;;;;;;;;;;:39;;;;:::i;:::-;:58;66949:137;;67046:24;67054:8;67063:5;67054:15;;;;;;;;:::i;:::-;;;;;;;;;67046:7;:24::i;:::-;67030:6;67037:5;67030:13;;;;;;;;:::i;:::-;;;;;;:40;-1:-1:-1;;;;;67030:40:0;;;-1:-1:-1;;;;;67030:40:0;;;;;66949:137;66923:10;66932:1;66923:10;;:::i;:::-;;;66879:218;;;-1:-1:-1;67116:6:0;66726:404;-1:-1:-1;66726:404:0:o;61593:571::-;52615:21;;;;52607:65;;;;-1:-1:-1;;;52607:65:0;;16391:2:1;52607:65:0;;;16373:21:1;16430:2;16410:18;;;16403:30;16469:33;16449:18;;;16442:61;16520:18;;52607:65:0;16189:355:1;52607:65:0;61688:18:::1;61709:13;40459:10:::0;:17;;40371:113;61709:13:::1;61688:34;;61755:1;61743:9;:13;:32;;;;;61773:2;61760:9;:15;;61743:32;61735:116;;;;-1:-1:-1::0;;;61735:116:0::1;;;;;;;:::i;:::-;47530:5;61905:13;;61883:19;;:35;;;;:::i;:::-;61870:49;::::0;:9;:49:::1;:::i;:::-;:70;;61862:129;;;;-1:-1:-1::0;;;61862:129:0::1;;;;;;;:::i;:::-;62009:19;62004:153;62044:9;62030:11;:23;62004:153;;;62085:60;62107:10;62120:24;62133:11:::0;62120:10;:24:::1;:::i;:::-;62085:21;:60::i;:::-;62055:13:::0;::::1;::::0;::::1;:::i;:::-;;;;62004:153;;72067:76:::0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;72123:10:::1;:17:::0;72067:76::o;68014:295::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;68113:9:::1;68109:125;68132:17;:24:::0;68128:28;::::1;68109:125;;;68221:1;68180:16;:38;68197:17;68215:1;68197:20;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;68197:20:0::1;68180:38:::0;;;::::1;::::0;;;;;;;;:42;68158:6:::1;68197:20:::0;68158:6;::::1;:::i;:::-;;;68109:125;;;-1:-1:-1::0;68277:24:0::1;68284:17;;68277:24;:::i;48021:28::-:0;;;;;;;;;;;;69598:112;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;69665:12:::1;:42:::0;;-1:-1:-1;;;;;;69665:42:0::1;-1:-1:-1::0;;;;;69665:42:0;;;::::1;::::0;;;::::1;::::0;;69598:112::o;69995:100::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;70054:31:::1;:38:::0;69995:100::o;71688:93::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;71752:19:::1;:26:::0;71688:93::o;69894:95::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;69952:27:::1;:34:::0;69894:95::o;71151:92::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;71218:12:::1;:22:::0;71151:92::o;57133:904::-;52320:11;;52301:15;:30;;:49;;;;;52349:1;52335:11;;:15;52301:49;52293:86;;;;-1:-1:-1;;;52293:86:0;;;;;;;:::i;:::-;57207:18:::1;57228:13;40459:10:::0;:17;;40371:113;57228:13:::1;57207:34;;47655:4;57290:17;;57310:1;57290:21;;;;:::i;:::-;:49;;57282:94;;;::::0;-1:-1:-1;;;57282:94:0;;14858:2:1;57282:94:0::1;::::0;::::1;14840:21:1::0;14897:2;14877:18;;;14870:30;14936:32;14916:18;;;14909:60;14986:18;;57282:94:0::1;14656:354:1::0;57282:94:0::1;57416:10;57395:32;::::0;;;:20:::1;:32;::::0;;;;;::::1;;57387:88;;;::::0;-1:-1:-1;;;57387:88:0;;21535:2:1;57387:88:0::1;::::0;::::1;21517:21:1::0;21574:2;21554:18;;;21547:30;-1:-1:-1;;;21593:18:1;;;21586:54;21657:18;;57387:88:0::1;21333:348:1::0;57387:88:0::1;57514:10;57494:31;::::0;;;:19:::1;:31;::::0;;;;;::::1;;:40;57486:103;;;::::0;-1:-1:-1;;;57486:103:0;;17937:2:1;57486:103:0::1;::::0;::::1;17919:21:1::0;17976:2;17956:18;;;17949:30;18015:34;17995:18;;;17988:62;-1:-1:-1;;;18066:18:1;;;18059:37;18113:19;;57486:103:0::1;17735:403:1::0;57486:103:0::1;57679:9;::::0;:43:::1;::::0;-1:-1:-1;;;57679:43:0;;57711:10:::1;57679:43;::::0;::::1;8797:51:1::0;57732:1:0::1;::::0;-1:-1:-1;;;;;57679:9:0::1;::::0;:31:::1;::::0;8770:18:1;;57679:43:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;57679:43:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;:50;:54;57671:109;;;;-1:-1:-1::0;;;57671:109:0::1;;;;;;;:::i;:::-;57861:10;57841:31;::::0;;;:19:::1;:31;::::0;;;;:38;;-1:-1:-1;;57841:38:0::1;57875:4;57841:38:::0;;::::1;::::0;;;57932:17:::1;:22:::0;;57875:4;;57932:17;;:22:::1;::::0;57875:4;;57932:22:::1;:::i;:::-;::::0;;;-1:-1:-1;57988:41:0::1;::::0;-1:-1:-1;58003:10:0::1;58015::::0;58027:1:::1;57988:14;:41::i;70971:86::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;71032:12:::1;:22:::0;70971:86::o;47989:25::-;;;;;;;;;;;;71886:93;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;71950:19:::1;:26:::0;71886:93::o;70597:90::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;70660:14:::1;:24:::0;70597:90::o;6453:201::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;14451:2:1;6534:73:0::1;::::0;::::1;14433:21:1::0;14490:2;14470:18;;;14463:30;14529:34;14509:18;;;14502:62;-1:-1:-1;;;14580:18:1;;;14573:36;14626:19;;6534:73:0::1;14249:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;53349:234::-:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;53436:18:::1;53431:145;53468:9;:16;53455:10;:29;53431:145;;;53560:4;53514:20;:43;53535:9;53545:10;53535:21;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;53514:43:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;53514:43:0;:50;;-1:-1:-1;;53514:50:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53485:12;::::1;::::0;::::1;:::i;:::-;;;;53431:145;;39731:224:::0;39833:4;-1:-1:-1;;;;;;39857:50:0;;-1:-1:-1;;;39857:50:0;;:90;;;39911:36;39935:11;39911:23;:36::i;36020:174::-;36095:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36095:29:0;-1:-1:-1;;;;;36095:29:0;;;;;;;;:24;;36149:23;36095:24;36149:14;:23::i;:::-;-1:-1:-1;;;;;36140:46:0;;;;;;;;;;;36020:174;;:::o;53816:1259::-;53932:22;53942:3;53947:6;53932:9;:22::i;:::-;54003:19;;;;:11;:19;;;;;:27;;-1:-1:-1;;54003:27:0;;;;;;;;;;54043:1025;;54091:10;54074:28;;;;:16;:28;;;;;:30;;;;;;:::i;:::-;;;;-1:-1:-1;;54119:13:0;:26;;;;;;;;;;;;;54189:19;;;-1:-1:-1;54160:26:0;;;:18;54119:26;54160;;;;:48;;;54189:19;;;54223:21;54189:19;54223:21;:::i;:::-;;;;;;28377:341;28307:411;;:::o;54043:1025::-;54266:5;:10;;54275:1;54266:10;54262:806;;;54305:10;54293:23;;;;:11;:23;;;;;:25;;;;;;:::i;:::-;;;;-1:-1:-1;;54333:8:0;:21;;;;;;;;;;;;;54398:13;;;-1:-1:-1;54369:26:0;;;:18;54333:21;54369:26;;;;:42;;;54398:13;;;54426:15;54398:13;54426:15;:::i;54262:806::-;54463:5;:10;;54472:1;54463:10;54459:609;;;54505:10;54490:26;;;;:14;:26;;;;;:28;;;;;;:::i;:::-;;;;-1:-1:-1;;54533:11:0;:24;;;;;;;;;;;;;54601:16;;;-1:-1:-1;54572:26:0;;;:18;54533:24;54572:26;;;;:45;;;54601:16;;;54632:18;54601:16;54632:18;:::i;54459:609::-;54672:5;:10;;54681:1;54672:10;54668:400;;;54714:10;54699:26;;;;:14;:26;;;;;:28;;;;;;:::i;:::-;;;;-1:-1:-1;;54742:11:0;:24;;;;;;;;;;;;;54810:16;;;-1:-1:-1;54781:26:0;;;:18;54742:24;54781:26;;;;:45;;;54810:16;;;54841:18;54810:16;54841:18;:::i;54668:400::-;54908:10;54892:27;;;;:15;:27;;;;;:29;;;;;;:::i;:::-;;;;-1:-1:-1;;54936:12:0;:25;;;;;;;;;;;;;55005:17;;;-1:-1:-1;54976:26:0;;;:18;54936:25;54976:26;;;;:46;;;55005:17;;;55037:19;55005:17;55037:19;:::i;29534:339::-;29729:41;4348:10;29762:7;29729:18;:41::i;:::-;29721:103;;;;-1:-1:-1;;;29721:103:0;;;;;;;:::i;:::-;29837:28;29847:4;29853:2;29857:7;29837:9;:28::i;29944:185::-;30082:39;30099:4;30105:2;30109:7;30082:39;;;;;;;;;;;;:16;:39::i;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;65515:249::-;65622:12;;:35;;-1:-1:-1;;;65622:35:0;;;;;27669:25:1;;;65601:4:0;;65669:6;;65660:5;;-1:-1:-1;;;;;65622:12:0;;:28;;27642:18:1;;65622:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:43;;;;:::i;:::-;65621:54;65618:139;;;-1:-1:-1;65698:4:0;65691:11;;65618:139;-1:-1:-1;65740:5:0;65618:139;65515:249;;;;;:::o;36336:315::-;36491:8;-1:-1:-1;;;;;36482:17:0;:5;-1:-1:-1;;;;;36482:17:0;;;36474:55;;;;-1:-1:-1;;;36474:55:0;;17156:2:1;36474:55:0;;;17138:21:1;17195:2;17175:18;;;17168:30;17234:27;17214:18;;;17207:55;17279:18;;36474:55:0;16954:349:1;36474:55:0;-1:-1:-1;;;;;36540:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36540:46:0;;;;;;;;;;36602:41;;12024::1;;;36602::0;;11997:18:1;36602:41:0;;;;;;;36336:315;;;:::o;30200:328::-;30375:41;4348:10;30408:7;30375:18;:41::i;:::-;30367:103;;;;-1:-1:-1;;;30367:103:0;;;;;;;:::i;:::-;30481:39;30495:4;30501:2;30505:7;30514:5;30481:13;:39::i;68342:86::-;68394:13;68418:7;68411:14;;;;;:::i;67203:573::-;67253:27;67297:7;67293:50;;-1:-1:-1;;67321:10:0;;;;;;;;;;;;-1:-1:-1;;;67321:10:0;;;;;67203:573::o;67293:50::-;67362:2;67353:6;67394:69;67401:6;;67394:69;;67424:5;;;;:::i;:::-;;-1:-1:-1;67444:7:0;;-1:-1:-1;67449:2:0;67444:7;;:::i;:::-;;;67394:69;;;67473:17;67503:3;67493:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67493:14:0;-1:-1:-1;67473:34:0;-1:-1:-1;67527:3:0;67541:198;67548:7;;67541:198;;67576:3;67578:1;67576;:3;:::i;:::-;67572:7;-1:-1:-1;67594:10:0;67624:7;67629:2;67624;:7;:::i;:::-;:12;;67634:2;67624:12;:::i;:::-;67619:17;;:2;:17;:::i;:::-;67608:29;;:2;:29;:::i;:::-;67594:44;;67653:9;67672:4;67665:12;;67653:24;;67702:2;67692:4;67697:1;67692:7;;;;;;;;:::i;:::-;;;;:12;-1:-1:-1;;;;;67692:12:0;;;;;;;;-1:-1:-1;67719:8:0;67725:2;67719:8;;:::i;:::-;;;67557:182;;67541:198;;;-1:-1:-1;67763:4:0;67203:573;-1:-1:-1;;;;67203:573:0:o;59950:1564::-;60076:10;60089:3;60076:16;;60159:11;60229:38;60243:5;60250:3;60255:11;;60229:13;:38::i;:::-;60226:78;;;-1:-1:-1;60291:1:0;60226:78;60394:39;60408:5;60415:3;60420:12;;60394:13;:39::i;:::-;60391:955;;;60449:19;60471:30;60492:5;60499:1;60471:20;:30::i;:::-;60449:52;-1:-1:-1;60596:16:0;;60593:742;;60660:1;60634:22;;:27;;;;;;;:::i;:::-;;;;;;;;60758:38;60772:5;60779:3;60784:11;;60758:13;:38::i;:::-;60755:565;;;60820:22;;;;:9;:22;;;;;;60845:15;60820:40;;60885:18;;60902:1;;60820:22;60885:18;;60902:1;;60885:18;:::i;:::-;;;;-1:-1:-1;60755:565:0;;-1:-1:-1;60755:565:0;;61011:20;61019:11;61011:7;:20::i;:::-;61006:25;;61071:1;61054:13;;:18;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;61148:20:0;;;;;;:16;:20;;;;;;61145:106;;61201:17;:26;;;;;;;-1:-1:-1;61201:26:0;;;;;;;;-1:-1:-1;;;;;;61201:26:0;-1:-1:-1;;;;;61201:26:0;;;;;61145:106;-1:-1:-1;;;;;61275:20:0;;;;;;:16;:20;;;;;:25;;61299:1;;61275:20;:25;;61299:1;;61275:25;:::i;:::-;;;;-1:-1:-1;;60755:565:0;60434:912;60391:955;61389:8;;-1:-1:-1;;;;;61389:8:0;:13;61403:10;61415:24;:22;:24::i;:::-;61389:51;;-1:-1:-1;;;;;;61389:51:0;;;;;;;-1:-1:-1;;;;;9853:32:1;;;61389:51:0;;;9835::1;9902:18;;;9895:34;9808:18;;61389:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61474:32;61489:2;61493:5;61500;61474:14;:32::i;26280:305::-;26382:4;-1:-1:-1;;;;;;26419:40:0;;-1:-1:-1;;;26419:40:0;;:105;;-1:-1:-1;;;;;;;26476:48:0;;-1:-1:-1;;;26476:48:0;26419:105;:158;;;-1:-1:-1;;;;;;;;;;18085:40:0;;;26541:36;17976:157;33022:110;33098:26;33108:2;33112:7;33098:26;;;;;;;;;;;;:9;:26::i;32332:348::-;32425:4;32127:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32127:16:0;32442:73;;;;-1:-1:-1;;;32442:73:0;;18748:2:1;32442:73:0;;;18730:21:1;18787:2;18767:18;;;18760:30;18826:34;18806:18;;;18799:62;-1:-1:-1;;;18877:18:1;;;18870:42;18929:19;;32442:73:0;18546:408:1;32442:73:0;32526:13;32542:23;32557:7;32542:14;:23::i;:::-;32526:39;;32595:5;-1:-1:-1;;;;;32584:16:0;:7;-1:-1:-1;;;;;32584:16:0;;:51;;;;32628:7;-1:-1:-1;;;;;32604:31:0;:20;32616:7;32604:11;:20::i;:::-;-1:-1:-1;;;;;32604:31:0;;32584:51;:87;;;-1:-1:-1;;;;;;29424:25:0;;;29400:4;29424:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32639:32;32576:96;32332:348;-1:-1:-1;;;;32332:348:0:o;35324:578::-;35483:4;-1:-1:-1;;;;;35456:31:0;:23;35471:7;35456:14;:23::i;:::-;-1:-1:-1;;;;;35456:31:0;;35448:85;;;;-1:-1:-1;;;35448:85:0;;23023:2:1;35448:85:0;;;23005:21:1;23062:2;23042:18;;;23035:30;23101:34;23081:18;;;23074:62;-1:-1:-1;;;23152:18:1;;;23145:39;23201:19;;35448:85:0;22821:405:1;35448:85:0;-1:-1:-1;;;;;35552:16:0;;35544:65;;;;-1:-1:-1;;;35544:65:0;;16751:2:1;35544:65:0;;;16733:21:1;16790:2;16770:18;;;16763:30;16829:34;16809:18;;;16802:62;-1:-1:-1;;;16880:18:1;;;16873:34;16924:19;;35544:65:0;16549:400:1;35544:65:0;35622:39;35643:4;35649:2;35653:7;35622:20;:39::i;:::-;35726:29;35743:1;35747:7;35726:8;:29::i;:::-;-1:-1:-1;;;;;35768:15:0;;;;;;:9;:15;;;;;:20;;35787:1;;35768:15;:20;;35787:1;;35768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35799:13:0;;;;;;:9;:13;;;;;:18;;35816:1;;35799:13;:18;;35816:1;;35799:18;:::i;:::-;;;;-1:-1:-1;;35828:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35828:21:0;-1:-1:-1;;;;;35828:21:0;;;;;;;;;35867:27;;35828:16;;35867:27;;;;;;;35324:578;;;:::o;31410:315::-;31567:28;31577:4;31583:2;31587:7;31567:9;:28::i;:::-;31614:48;31637:4;31643:2;31647:7;31656:5;31614:22;:48::i;:::-;31606:111;;;;-1:-1:-1;;;31606:111:0;;;;;;;:::i;64862:593::-;65021:8;:15;64983:12;;:35;;-1:-1:-1;;;64983:35:0;;;;;27669:25:1;;;64939:7:0;;;;65021:15;;-1:-1:-1;;;;;64983:12:0;;;;:28;;27642:18:1;;64983:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;64959:77;;65135:15;65122:10;;65085:9;:34;65095:8;65104:13;65095:23;;;;;;;;:::i;:::-;;;;;;;;;65085:34;;;;;;;;;;;;:47;;;;:::i;:::-;:65;65082:126;;;65173:8;65182:13;65173:23;;;;;;;;:::i;:::-;;;;;;;;;65166:30;;;;;65082:126;65294:2;65286:5;:10;65283:49;;;65319:1;65312:8;;;;;65283:49;65409:38;65430:5;65437:9;:5;65445:1;65437:9;:::i;:::-;65409:20;:38::i;33359:321::-;33489:18;33495:2;33499:7;33489:5;:18::i;:::-;33540:54;33571:1;33575:2;33579:7;33588:5;33540:22;:54::i;:::-;33518:154;;;;-1:-1:-1;;;33518:154:0;;;;;;;:::i;72660:181::-;72788:45;72815:4;72821:2;72825:7;72788:26;:45::i;37216:799::-;37371:4;-1:-1:-1;;;;;37392:13:0;;8155:20;8203:8;37388:620;;37428:72;;-1:-1:-1;;;37428:72:0;;-1:-1:-1;;;;;37428:36:0;;;;;:72;;4348:10;;37479:4;;37485:7;;37494:5;;37428:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37428:72:0;;;;;;;;-1:-1:-1;;37428:72:0;;;;;;;;;;;;:::i;:::-;;;37424:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37670:13:0;;37666:272;;37713:60;;-1:-1:-1;;;37713:60:0;;;;;;;:::i;37666:272::-;37888:6;37882:13;37873:6;37869:2;37865:15;37858:38;37424:529;-1:-1:-1;;;;;;37551:51:0;-1:-1:-1;;;37551:51:0;;-1:-1:-1;37544:58:0;;37388:620;-1:-1:-1;37992:4:0;37216:799;;;;;;:::o;34016:382::-;-1:-1:-1;;;;;34096:16:0;;34088:61;;;;-1:-1:-1;;;34088:61:0;;21888:2:1;34088:61:0;;;21870:21:1;;;21907:18;;;21900:30;21966:34;21946:18;;;21939:62;22018:18;;34088:61:0;21686:356:1;34088:61:0;32103:4;32127:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32127:16:0;:30;34160:58;;;;-1:-1:-1;;;34160:58:0;;16034:2:1;34160:58:0;;;16016:21:1;16073:2;16053:18;;;16046:30;16112;16092:18;;;16085:58;16160:18;;34160:58:0;15832:352:1;34160:58:0;34231:45;34260:1;34264:2;34268:7;34231:20;:45::i;:::-;-1:-1:-1;;;;;34289:13:0;;;;;;:9;:13;;;;;:18;;34306:1;;34289:13;:18;;34306:1;;34289:18;:::i;:::-;;;;-1:-1:-1;;34318:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34318:21:0;-1:-1:-1;;;;;34318:21:0;;;;;;;;34357:33;;34318:16;;;34357:33;;34318:16;;34357:33;34016:382;;:::o;41407:589::-;-1:-1:-1;;;;;41613:18:0;;41609:187;;41648:40;41680:7;42823:10;:17;;42796:24;;;;:15;:24;;;;;:44;;;42851:24;;;;;;;;;;;;42719:164;41648:40;41609:187;;;41718:2;-1:-1:-1;;;;;41710:10:0;:4;-1:-1:-1;;;;;41710:10:0;;41706:90;;41737:47;41770:4;41776:7;41737:32;:47::i;:::-;-1:-1:-1;;;;;41810:16:0;;41806:183;;41843:45;41880:7;41843:36;:45::i;41806:183::-;41916:4;-1:-1:-1;;;;;41910:10:0;:2;-1:-1:-1;;;;;41910:10:0;;41906:83;;41937:40;41965:2;41969:7;41937:27;:40::i;43510:988::-;43776:22;43826:1;43801:22;43818:4;43801:16;:22::i;:::-;:26;;;;:::i;:::-;43838:18;43859:26;;;:17;:26;;;;;;43776:51;;-1:-1:-1;43992:28:0;;;43988:328;;-1:-1:-1;;;;;44059:18:0;;44037:19;44059:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44110:30;;;;;;:44;;;44227:30;;:17;:30;;;;;:43;;;43988:328;-1:-1:-1;44412:26:0;;;;:17;:26;;;;;;;;44405:33;;;-1:-1:-1;;;;;44456:18:0;;;;;:12;:18;;;;;:34;;;;;;;44449:41;43510:988::o;44793:1079::-;45071:10;:17;45046:22;;45071:21;;45091:1;;45071:21;:::i;:::-;45103:18;45124:24;;;:15;:24;;;;;;45497:10;:26;;45046:46;;-1:-1:-1;45124:24:0;;45046:46;;45497:26;;;;;;:::i;:::-;;;;;;;;;45475:48;;45561:11;45536:10;45547;45536:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45641:28;;;:15;:28;;;;;;;:41;;;45813:24;;;;;45806:31;45848:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44864:1008;;;44793:1079;:::o;42297:221::-;42382:14;42399:20;42416:2;42399:16;:20::i;:::-;-1:-1:-1;;;;;42430:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42475:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42297:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:908::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2993:18;2985:6;2982:30;2979:50;;;3025:1;3022;3015:12;2979:50;3048:22;;3101:4;3093:13;;3089:27;-1:-1:-1;3079:55:1;;3130:1;3127;3120:12;3079:55;3166:2;3153:16;3189:60;3205:43;3245:2;3205:43;:::i;:::-;3189:60;:::i;:::-;3271:3;3295:2;3290:3;3283:15;3323:2;3318:3;3314:12;3307:19;;3354:2;3350;3346:11;3402:7;3397:2;3391;3388:1;3384:10;3380:2;3376:19;3372:28;3369:41;3366:61;;;3423:1;3420;3413:12;3366:61;3445:1;3436:10;;3455:169;3469:2;3466:1;3463:9;3455:169;;;3526:23;3545:3;3526:23;:::i;:::-;3514:36;;3487:1;3480:9;;;;;3570:12;;;;3602;;3455:169;;;-1:-1:-1;3643:5:1;2746:908;-1:-1:-1;;;;;;;2746:908:1:o;3659:902::-;3743:6;3774:2;3817;3805:9;3796:7;3792:23;3788:32;3785:52;;;3833:1;3830;3823:12;3785:52;3873:9;3860:23;3906:18;3898:6;3895:30;3892:50;;;3938:1;3935;3928:12;3892:50;3961:22;;4014:4;4006:13;;4002:27;-1:-1:-1;3992:55:1;;4043:1;4040;4033:12;3992:55;4079:2;4066:16;4102:60;4118:43;4158:2;4118:43;:::i;4102:60::-;4184:3;4208:2;4203:3;4196:15;4236:2;4231:3;4227:12;4220:19;;4267:2;4263;4259:11;4315:7;4310:2;4304;4301:1;4297:10;4293:2;4289:19;4285:28;4282:41;4279:61;;;4336:1;4333;4326:12;4279:61;4358:1;4349:10;;4368:163;4382:2;4379:1;4376:9;4368:163;;;4439:17;;4427:30;;4400:1;4393:9;;;;;4477:12;;;;4509;;4368:163;;4566:892;4661:6;4692:2;4735;4723:9;4714:7;4710:23;4706:32;4703:52;;;4751:1;4748;4741:12;4703:52;4784:9;4778:16;4817:18;4809:6;4806:30;4803:50;;;4849:1;4846;4839:12;4803:50;4872:22;;4925:4;4917:13;;4913:27;-1:-1:-1;4903:55:1;;4954:1;4951;4944:12;4903:55;4983:2;4977:9;5006:60;5022:43;5062:2;5022:43;:::i;5006:60::-;5088:3;5112:2;5107:3;5100:15;5140:2;5135:3;5131:12;5124:19;;5171:2;5167;5163:11;5219:7;5214:2;5208;5205:1;5201:10;5197:2;5193:19;5189:28;5186:41;5183:61;;;5240:1;5237;5230:12;5183:61;5262:1;5253:10;;5272:156;5286:2;5283:1;5280:9;5272:156;;;5343:10;;5331:23;;5304:1;5297:9;;;;;5374:12;;;;5406;;5272:156;;5463:180;5519:6;5572:2;5560:9;5551:7;5547:23;5543:32;5540:52;;;5588:1;5585;5578:12;5540:52;5611:26;5627:9;5611:26;:::i;5648:245::-;5706:6;5759:2;5747:9;5738:7;5734:23;5730:32;5727:52;;;5775:1;5772;5765:12;5727:52;5814:9;5801:23;5833:30;5857:5;5833:30;:::i;5898:249::-;5967:6;6020:2;6008:9;5999:7;5995:23;5991:32;5988:52;;;6036:1;6033;6026:12;5988:52;6068:9;6062:16;6087:30;6111:5;6087:30;:::i;6152:450::-;6221:6;6274:2;6262:9;6253:7;6249:23;6245:32;6242:52;;;6290:1;6287;6280:12;6242:52;6330:9;6317:23;6363:18;6355:6;6352:30;6349:50;;;6395:1;6392;6385:12;6349:50;6418:22;;6471:4;6463:13;;6459:27;-1:-1:-1;6449:55:1;;6500:1;6497;6490:12;6449:55;6523:73;6588:7;6583:2;6570:16;6565:2;6561;6557:11;6523:73;:::i;6607:180::-;6666:6;6719:2;6707:9;6698:7;6694:23;6690:32;6687:52;;;6735:1;6732;6725:12;6687:52;-1:-1:-1;6758:23:1;;6607:180;-1:-1:-1;6607:180:1:o;6792:184::-;6862:6;6915:2;6903:9;6894:7;6890:23;6886:32;6883:52;;;6931:1;6928;6921:12;6883:52;-1:-1:-1;6954:16:1;;6792:184;-1:-1:-1;6792:184:1:o;6981:248::-;7049:6;7057;7110:2;7098:9;7089:7;7085:23;7081:32;7078:52;;;7126:1;7123;7116:12;7078:52;-1:-1:-1;;7149:23:1;;;7219:2;7204:18;;;7191:32;;-1:-1:-1;6981:248:1:o;7234:337::-;7300:6;7308;7361:2;7349:9;7340:7;7336:23;7332:32;7329:52;;;7377:1;7374;7367:12;7329:52;7413:9;7400:23;7390:33;;7473:2;7462:9;7458:18;7445:32;7517:4;7510:5;7506:16;7499:5;7496:27;7486:55;;7537:1;7534;7527:12;7486:55;7560:5;7550:15;;;7234:337;;;;;:::o;7576:257::-;7617:3;7655:5;7649:12;7682:6;7677:3;7670:19;7698:63;7754:6;7747:4;7742:3;7738:14;7731:4;7724:5;7720:16;7698:63;:::i;:::-;7815:2;7794:15;-1:-1:-1;;7790:29:1;7781:39;;;;7822:4;7777:50;;7576:257;-1:-1:-1;;7576:257:1:o;7838:808::-;8166:3;8204:6;8198:13;8220:53;8266:6;8261:3;8254:4;8246:6;8242:17;8220:53;:::i;:::-;8336:13;;8295:16;;;;8358:57;8336:13;8295:16;8392:4;8380:17;;8358:57;:::i;:::-;-1:-1:-1;;;8437:20:1;;8466:18;;;8509:13;;8531:65;8509:13;8583:1;8572:13;;8565:4;8553:17;;8531:65;:::i;:::-;8616:20;8638:1;8612:28;;7838:808;-1:-1:-1;;;;;7838:808:1:o;9168:488::-;-1:-1:-1;;;;;9437:15:1;;;9419:34;;9489:15;;9484:2;9469:18;;9462:43;9536:2;9521:18;;9514:34;;;9584:3;9579:2;9564:18;;9557:31;;;9362:4;;9605:45;;9630:19;;9622:6;9605:45;:::i;:::-;9597:53;9168:488;-1:-1:-1;;;;;;9168:488:1:o;9940:658::-;10111:2;10163:21;;;10233:13;;10136:18;;;10255:22;;;10082:4;;10111:2;10334:15;;;;10308:2;10293:18;;;10082:4;10377:195;10391:6;10388:1;10385:13;10377:195;;;10456:13;;-1:-1:-1;;;;;10452:39:1;10440:52;;10547:15;;;;10512:12;;;;10488:1;10406:9;10377:195;;;-1:-1:-1;10589:3:1;;9940:658;-1:-1:-1;;;;;;9940:658:1:o;10603:632::-;10774:2;10826:21;;;10896:13;;10799:18;;;10918:22;;;10745:4;;10774:2;10997:15;;;;10971:2;10956:18;;;10745:4;11040:169;11054:6;11051:1;11048:13;11040:169;;;11115:13;;11103:26;;11184:15;;;;11149:12;;;;11076:1;11069:9;11040:169;;11240:639;11407:2;11459:21;;;11529:13;;11432:18;;;11551:22;;;11378:4;;11407:2;11630:15;;;;11604:2;11589:18;;;11378:4;11673:180;11687:6;11684:1;11681:13;11673:180;;;11752:13;;11767:4;11748:24;11736:37;;11828:15;;;;11793:12;;;;11709:1;11702:9;11673:180;;12783:219;12932:2;12921:9;12914:21;12895:4;12952:44;12992:2;12981:9;12977:18;12969:6;12952:44;:::i;13830:414::-;14032:2;14014:21;;;14071:2;14051:18;;;14044:30;14110:34;14105:2;14090:18;;14083:62;-1:-1:-1;;;14176:2:1;14161:18;;14154:48;14234:3;14219:19;;13830:414::o;15421:406::-;15623:2;15605:21;;;15662:2;15642:18;;;15635:30;15701:34;15696:2;15681:18;;15674:62;-1:-1:-1;;;15767:2:1;15752:18;;15745:40;15817:3;15802:19;;15421:406::o;17308:422::-;17510:2;17492:21;;;17549:2;17529:18;;;17522:30;17588:34;17583:2;17568:18;;17561:62;17659:28;17654:2;17639:18;;17632:56;17720:3;17705:19;;17308:422::o;18959:421::-;19161:2;19143:21;;;19200:2;19180:18;;;19173:30;19239:34;19234:2;19219:18;;19212:62;19310:27;19305:2;19290:18;;19283:55;19370:3;19355:19;;18959:421::o;20985:343::-;21187:2;21169:21;;;21226:2;21206:18;;;21199:30;-1:-1:-1;;;21260:2:1;21245:18;;21238:49;21319:2;21304:18;;20985:343::o;22460:356::-;22662:2;22644:21;;;22681:18;;;22674:30;22740:34;22735:2;22720:18;;22713:62;22807:2;22792:18;;22460:356::o;25162:413::-;25364:2;25346:21;;;25403:2;25383:18;;;25376:30;25442:34;25437:2;25422:18;;25415:62;-1:-1:-1;;;25508:2:1;25493:18;;25486:47;25565:3;25550:19;;25162:413::o;26755:410::-;26957:2;26939:21;;;26996:2;26976:18;;;26969:30;27035:34;27030:2;27015:18;;27008:62;-1:-1:-1;;;27101:2:1;27086:18;;27079:44;27155:3;27140:19;;26755:410::o;27170:348::-;27372:2;27354:21;;;27411:2;27391:18;;;27384:30;27450:26;27445:2;27430:18;;27423:54;27509:2;27494:18;;27170:348::o;27894:275::-;27965:2;27959:9;28030:2;28011:13;;-1:-1:-1;;28007:27:1;27995:40;;28065:18;28050:34;;28086:22;;;28047:62;28044:88;;;28112:18;;:::i;:::-;28148:2;28141:22;27894:275;;-1:-1:-1;27894:275:1:o;28174:183::-;28234:4;28267:18;28259:6;28256:30;28253:56;;;28289:18;;:::i;:::-;-1:-1:-1;28334:1:1;28330:14;28346:4;28326:25;;28174:183::o;28362:128::-;28402:3;28433:1;28429:6;28426:1;28423:13;28420:39;;;28439:18;;:::i;:::-;-1:-1:-1;28475:9:1;;28362:128::o;28495:204::-;28533:3;28569:4;28566:1;28562:12;28601:4;28598:1;28594:12;28636:3;28630:4;28626:14;28621:3;28618:23;28615:49;;;28644:18;;:::i;:::-;28680:13;;28495:204;-1:-1:-1;;;28495:204:1:o;28704:120::-;28744:1;28770;28760:35;;28775:18;;:::i;:::-;-1:-1:-1;28809:9:1;;28704:120::o;28829:168::-;28869:7;28935:1;28931;28927:6;28923:14;28920:1;28917:21;28912:1;28905:9;28898:17;28894:45;28891:71;;;28942:18;;:::i;:::-;-1:-1:-1;28982:9:1;;28829:168::o;29002:125::-;29042:4;29070:1;29067;29064:8;29061:34;;;29075:18;;:::i;:::-;-1:-1:-1;29112:9:1;;29002:125::o;29132:258::-;29204:1;29214:113;29228:6;29225:1;29222:13;29214:113;;;29304:11;;;29298:18;29285:11;;;29278:39;29250:2;29243:10;29214:113;;;29345:6;29342:1;29339:13;29336:48;;;-1:-1:-1;;29380:1:1;29362:16;;29355:27;29132:258::o;29395:136::-;29434:3;29462:5;29452:39;;29471:18;;:::i;:::-;-1:-1:-1;;;29507:18:1;;29395:136::o;29536:380::-;29615:1;29611:12;;;;29658;;;29679:61;;29733:4;29725:6;29721:17;29711:27;;29679:61;29786:2;29778:6;29775:14;29755:18;29752:38;29749:161;;;29832:10;29827:3;29823:20;29820:1;29813:31;29867:4;29864:1;29857:15;29895:4;29892:1;29885:15;29921:135;29960:3;-1:-1:-1;;29981:17:1;;29978:43;;;30001:18;;:::i;:::-;-1:-1:-1;30048:1:1;30037:13;;29921:135::o;30061:112::-;30093:1;30119;30109:35;;30124:18;;:::i;:::-;-1:-1:-1;30158:9:1;;30061:112::o;30178:127::-;30239:10;30234:3;30230:20;30227:1;30220:31;30270:4;30267:1;30260:15;30294:4;30291:1;30284:15;30310:127;30371:10;30366:3;30362:20;30359:1;30352:31;30402:4;30399:1;30392:15;30426:4;30423:1;30416:15;30442:127;30503:10;30498:3;30494:20;30491:1;30484:31;30534:4;30531:1;30524:15;30558:4;30555:1;30548:15;30574:127;30635:10;30630:3;30626:20;30623:1;30616:31;30666:4;30663:1;30656:15;30690:4;30687:1;30680:15;30706:127;30767:10;30762:3;30758:20;30755:1;30748:31;30798:4;30795:1;30788:15;30822:4;30819:1;30812:15;30838:131;-1:-1:-1;;;;;;30912:32:1;;30902:43;;30892:71;;30959:1;30956;30949:12

Swarm Source

ipfs://4bc5b8985bad0c873d57273d2df2b570d62b7525bf86e1e1c4b650b2afc6c6af
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.