ETH Price: $3,745.54 (+8.86%)
Gas: 13 Gwei

Token

Hype Hippos (HypeHippos)
 

Overview

Max Total Supply

10,000 HypeHippos

Holders

3,856

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 HypeHippos
0xafca99aa8404e0f637cb638fb3438406810216b5
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Located in the wet and swampy region of the metaverse, you can find 10,000 adorable swaggy Hype Hippos stomp-ing around on the ETH blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HypeHippos

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-25
*/

/**
 *Submitted for verification at Etherscan.io on 2021-07-27
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b > a) return (false, 0);
        return (true, a - b);
    }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    unchecked {
        require(b <= a, errorMessage);
        return a - b;
    }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a / b;
    }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a % b;
    }
    }
}


pragma solidity ^0.8.0;

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

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

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

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

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

}

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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);
}

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);
}


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;
    }
}


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;
}

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);
}

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);
}




pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _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, true);

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

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

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

    function _burnSave(address owner, uint256 tokenId) internal virtual {

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

        // 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, true);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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, bool isDelete) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId, isDelete);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0) && isDelete) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from && isDelete) {
            _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();
    }
}

pragma solidity ^0.8.0;


contract HypeHippos is ERC721Enumerable, Ownable{
    using SafeMath for uint256;
    using Address for address;
    using Strings for uint256;

    // This is SHA256 hash of the provenance record of all artworks
    // It is derived by hashing every individual NFT's picture, and then concatenating all those hash, deriving yet another SHA256 from that.
    string public PROVENANCE_HASH = "";
    uint256 public REVEAL_TIMESTAMP;

    uint256 public NFT_PRICE = 60000000000000000; // 0.06 ETH
    uint public constant MAX_NFT_PURCHASE = 20;
    uint256 public MAX_SUPPLY = 10000;
    bool public saleIsActive = false;
    uint256 public startingIndexBlock;
    uint256 public startingIndex;

    string private _baseURIExtended;
    mapping (uint256 => string) _tokenURIs;

    constructor() ERC721("Hype Hippos","HypeHippos"){
        REVEAL_TIMESTAMP = block.timestamp + (86400 * 7);
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    /*     
    * Set provenance once it's calculated
    */
    function setProvenanceHash(string memory _provenanceHash) external onlyOwner {
        PROVENANCE_HASH = _provenanceHash;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(_msgSender()).transfer(balance);
    }

    function reserveTokens(uint256 num) public onlyOwner {
        uint supply = totalSupply();
        uint i;
        for (i = 0; i < num; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function mint(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale is not active at the moment");
        require(numberOfTokens > 0, "Number of tokens can not be less than or equal to 0");
        require(totalSupply().add(numberOfTokens) <= MAX_SUPPLY, "Purchase would exceed max supply");
        if(msg.sender != owner()) {
            require(numberOfTokens <= MAX_NFT_PURCHASE,"Mint account exceed max");
            require(NFT_PRICE.mul(numberOfTokens) <= msg.value, "Sent ether value is incorrect");
        }

        for (uint i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, totalSupply());
        }

        // If we haven't set the starting index and this is either
        // 1) the last saleable token or 2) the first token to be sold after
        // the end of pre-sale, set the starting index block
        if (startingIndexBlock == 0 && (totalSupply() == MAX_SUPPLY || block.timestamp >= REVEAL_TIMESTAMP)) {
            startingIndexBlock = block.number;
        } 
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIExtended;
    }

    // Sets base URI for all tokens, only able to be called by contract owner
    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIExtended = baseURI_;
    }

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    function setMintPrice(uint256 _price) external onlyOwner {
        NFT_PRICE = _price;
    }

    /**
     * Set reveal timestamp when finished the sale.
     */
    function setRevealTimestamp(uint256 _revealTimeStamp) external onlyOwner {
        REVEAL_TIMESTAMP = _revealTimeStamp;
    } 

    /**
     * Set the starting index for the collection
     */
    function setStartingIndex() external {
        require(startingIndex == 0, "Starting index is already set");
        require(startingIndexBlock != 0, "Starting index block must be set");
        
        startingIndex = uint256(blockhash(startingIndexBlock)) % MAX_SUPPLY;
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
        if (block.number.sub(startingIndexBlock) > 255) {
            startingIndex = uint256(blockhash(block.number - 1)) % MAX_SUPPLY;
        }
        // Prevent default sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex.add(1);
        }
    }

    /**
     * Set the starting index block for the collection, essentially unblocking
     * setting starting index
     */
    function emergencySetStartingIndexBlock() external onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        
        startingIndexBlock = block.number;
    }

    /**
     * Get the array of token for owner.
     */
    function tokensOfOwner(address _owner) external view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            for (uint256 index; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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_NFT_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"reserveTokens","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":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revealTimeStamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b929190620001dc565b5066d529ae9e860000600d55612710600e556000600f60006101000a81548160ff0219169083151502179055503480156200006557600080fd5b506040518060400160405280600b81526020017f4879706520486970706f730000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f48797065486970706f73000000000000000000000000000000000000000000008152508160009080519060200190620000ea929190620001dc565b50806001908051906020019062000103929190620001dc565b505050600062000118620001d460201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062093a8042620001c891906200028c565b600c8190555062000387565b600033905090565b828054620001ea90620002f3565b90600052602060002090601f0160209004810192826200020e57600085556200025a565b82601f106200022957805160ff19168380011785556200025a565b828001600101855582156200025a579182015b82811115620002595782518255916020019190600101906200023c565b5b5090506200026991906200026d565b5090565b5b80821115620002885760008160009055506001016200026e565b5090565b60006200029982620002e9565b9150620002a683620002e9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620002de57620002dd62000329565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200030c57607f821691505b6020821081141562000323576200032262000358565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614a6080620003976000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063c87b56dd116100ab578063e98665501161006f578063e9866550146107e6578063eb8d2444146107fd578063f2fde38b14610828578063f4a0a52814610851578063ff1b65561461087a57610225565b8063c87b56dd146106ed578063cb774d471461072a578063d031370b14610755578063e36d64981461077e578063e985e9c5146107a957610225565b80638da5cb5b116100f25780638da5cb5b1461062957806395d89b4114610654578063a0712d681461067f578063a22cb4651461069b578063b88d4fde146106c457610225565b806370a0823114610581578063715018a6146105be5780637d17fcbe146105d55780638462151c146105ec57610225565b806323b872dd116101b157806342842e0e1161017557806342842e0e1461048a5780634f6ccce7146104b357806355f804b3146104f05780636352211e14610519578063676dd5631461055657610225565b806323b872dd146103cb5780632f745c59146103f457806332cb6b0c1461043157806334918dfd1461045c5780633ccfd60b1461047357610225565b8063081812fc116101f8578063081812fc146102e6578063095ea7b314610323578063109695231461034c57806318160ddd1461037557806318e20a38146103a057610225565b8063018a2c371461022a57806301ffc9a714610253578063020b39cc1461029057806306fdde03146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061360d565b6108a5565b005b34801561025f57600080fd5b5061027a6004803603810190610275919061357a565b61092b565b6040516102879190613ba3565b60405180910390f35b34801561029c57600080fd5b506102a56109a5565b6040516102b29190613f00565b60405180910390f35b3480156102c757600080fd5b506102d06109aa565b6040516102dd9190613bbe565b60405180910390f35b3480156102f257600080fd5b5061030d6004803603810190610308919061360d565b610a3c565b60405161031a9190613b1a565b60405180910390f35b34801561032f57600080fd5b5061034a6004803603810190610345919061353e565b610ac1565b005b34801561035857600080fd5b50610373600480360381019061036e91906135cc565b610bd9565b005b34801561038157600080fd5b5061038a610c6f565b6040516103979190613f00565b60405180910390f35b3480156103ac57600080fd5b506103b5610c7c565b6040516103c29190613f00565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190613438565b610c82565b005b34801561040057600080fd5b5061041b6004803603810190610416919061353e565b610ce2565b6040516104289190613f00565b60405180910390f35b34801561043d57600080fd5b50610446610d87565b6040516104539190613f00565b60405180910390f35b34801561046857600080fd5b50610471610d8d565b005b34801561047f57600080fd5b50610488610e35565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613438565b610f07565b005b3480156104bf57600080fd5b506104da60048036038101906104d5919061360d565b610f27565b6040516104e79190613f00565b60405180910390f35b3480156104fc57600080fd5b50610517600480360381019061051291906135cc565b610fbe565b005b34801561052557600080fd5b50610540600480360381019061053b919061360d565b611054565b60405161054d9190613b1a565b60405180910390f35b34801561056257600080fd5b5061056b611106565b6040516105789190613f00565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a391906133d3565b61110c565b6040516105b59190613f00565b60405180910390f35b3480156105ca57600080fd5b506105d36111c4565b005b3480156105e157600080fd5b506105ea611301565b005b3480156105f857600080fd5b50610613600480360381019061060e91906133d3565b6113cb565b6040516106209190613b81565b60405180910390f35b34801561063557600080fd5b5061063e611547565b60405161064b9190613b1a565b60405180910390f35b34801561066057600080fd5b50610669611571565b6040516106769190613bbe565b60405180910390f35b6106996004803603810190610694919061360d565b611603565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190613502565b611830565b005b3480156106d057600080fd5b506106eb60048036038101906106e69190613487565b6119b1565b005b3480156106f957600080fd5b50610714600480360381019061070f919061360d565b611a13565b6040516107219190613bbe565b60405180910390f35b34801561073657600080fd5b5061073f611b86565b60405161074c9190613f00565b60405180910390f35b34801561076157600080fd5b5061077c6004803603810190610777919061360d565b611b8c565b005b34801561078a57600080fd5b50610793611c4c565b6040516107a09190613f00565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb91906133fc565b611c52565b6040516107dd9190613ba3565b60405180910390f35b3480156107f257600080fd5b506107fb611ce6565b005b34801561080957600080fd5b50610812611df7565b60405161081f9190613ba3565b60405180910390f35b34801561083457600080fd5b5061084f600480360381019061084a91906133d3565b611e0a565b005b34801561085d57600080fd5b506108786004803603810190610873919061360d565b611fb6565b005b34801561088657600080fd5b5061088f61203c565b60405161089c9190613bbe565b60405180910390f35b6108ad6120ca565b73ffffffffffffffffffffffffffffffffffffffff166108cb611547565b73ffffffffffffffffffffffffffffffffffffffff1614610921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091890613de0565b60405180910390fd5b80600c8190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099e575061099d826120d2565b5b9050919050565b601481565b6060600080546109b9906141e9565b80601f01602080910402602001604051908101604052809291908181526020018280546109e5906141e9565b8015610a325780601f10610a0757610100808354040283529160200191610a32565b820191906000526020600020905b815481529060010190602001808311610a1557829003601f168201915b5050505050905090565b6000610a47826121b4565b610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d90613dc0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610acc82611054565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490613e40565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b5c6120ca565b73ffffffffffffffffffffffffffffffffffffffff161480610b8b5750610b8a81610b856120ca565b611c52565b5b610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc190613d00565b60405180910390fd5b610bd48383612220565b505050565b610be16120ca565b73ffffffffffffffffffffffffffffffffffffffff16610bff611547565b73ffffffffffffffffffffffffffffffffffffffff1614610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90613de0565b60405180910390fd5b80600b9080519060200190610c6b9291906131f7565b5050565b6000600880549050905090565b600c5481565b610c93610c8d6120ca565b826122d9565b610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990613e80565b60405180910390fd5b610cdd8383836123b7565b505050565b6000610ced8361110c565b8210610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2590613c00565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600e5481565b610d956120ca565b73ffffffffffffffffffffffffffffffffffffffff16610db3611547565b73ffffffffffffffffffffffffffffffffffffffff1614610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090613de0565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b610e3d6120ca565b73ffffffffffffffffffffffffffffffffffffffff16610e5b611547565b73ffffffffffffffffffffffffffffffffffffffff1614610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890613de0565b60405180910390fd5b6000479050610ebe6120ca565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f03573d6000803e3d6000fd5b5050565b610f22838383604051806020016040528060008152506119b1565b505050565b6000610f31610c6f565b8210610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990613ea0565b60405180910390fd5b60088281548110610fac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610fc66120ca565b73ffffffffffffffffffffffffffffffffffffffff16610fe4611547565b73ffffffffffffffffffffffffffffffffffffffff161461103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190613de0565b60405180910390fd5b80601290805190602001906110509291906131f7565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f490613d40565b60405180910390fd5b80915050919050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490613d20565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111cc6120ca565b73ffffffffffffffffffffffffffffffffffffffff166111ea611547565b73ffffffffffffffffffffffffffffffffffffffff1614611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123790613de0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6113096120ca565b73ffffffffffffffffffffffffffffffffffffffff16611327611547565b73ffffffffffffffffffffffffffffffffffffffff161461137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613de0565b60405180910390fd5b6000601154146113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990613ce0565b60405180910390fd5b43601081905550565b606060006113d88361110c565b9050600081141561145b57600067ffffffffffffffff811115611424577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114525781602001602082028036833780820191505090505b50915050611542565b60008167ffffffffffffffff81111561149d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114cb5781602001602082028036833780820191505090505b50905060005b8281101561153b576114e38582610ce2565b82828151811061151c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806115339061424c565b9150506114d1565b5080925050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611580906141e9565b80601f01602080910402602001604051908101604052809291908181526020018280546115ac906141e9565b80156115f95780601f106115ce576101008083540402835291602001916115f9565b820191906000526020600020905b8154815290600101906020018083116115dc57829003601f168201915b5050505050905090565b600f60009054906101000a900460ff16611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990613ee0565b60405180910390fd5b60008111611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c90613be0565b60405180910390fd5b600e546116b2826116a4610c6f565b61261590919063ffffffff16565b11156116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea90613d80565b60405180910390fd5b6116fb611547565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117c9576014811115611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890613ec0565b60405180910390fd5b3461178782600d5461262b90919063ffffffff16565b11156117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bf90613d60565b60405180910390fd5b5b60005b818110156117f8576117e5336117e0610c6f565b612641565b80806117f09061424c565b9150506117cc565b5060006010541480156118205750600e54611811610c6f565b148061181f5750600c544210155b5b1561182d57436010819055505b50565b6118386120ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d90613ca0565b60405180910390fd5b80600560006118b36120ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119606120ca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119a59190613ba3565b60405180910390a35050565b6119c26119bc6120ca565b836122d9565b611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f890613e80565b60405180910390fd5b611a0d8484848461265f565b50505050565b6060611a1e826121b4565b611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490613e20565b60405180910390fd5b6000601360008481526020019081526020016000208054611a7d906141e9565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa9906141e9565b8015611af65780601f10611acb57610100808354040283529160200191611af6565b820191906000526020600020905b815481529060010190602001808311611ad957829003601f168201915b505050505090506000611b076126bb565b9050600081511415611b1d578192505050611b81565b600082511115611b52578082604051602001611b3a929190613af6565b60405160208183030381529060405292505050611b81565b80611b5c8561274d565b604051602001611b6d929190613af6565b604051602081830303815290604052925050505b919050565b60115481565b611b946120ca565b73ffffffffffffffffffffffffffffffffffffffff16611bb2611547565b73ffffffffffffffffffffffffffffffffffffffff1614611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff90613de0565b60405180910390fd5b6000611c12610c6f565b905060005b82811015611c4757611c34338284611c2f919061401e565b612641565b8080611c3f9061424c565b915050611c17565b505050565b60105481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060115414611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2290613ce0565b60405180910390fd5b60006010541415611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6890613e60565b60405180910390fd5b600e546010544060001c611d859190614295565b60118190555060ff611da2601054436128fa90919063ffffffff16565b1115611dcd57600e54600143611db891906140ff565b4060001c611dc69190614295565b6011819055505b60006011541415611df557611dee600160115461261590919063ffffffff16565b6011819055505b565b600f60009054906101000a900460ff1681565b611e126120ca565b73ffffffffffffffffffffffffffffffffffffffff16611e30611547565b73ffffffffffffffffffffffffffffffffffffffff1614611e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7d90613de0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eed90613c40565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611fbe6120ca565b73ffffffffffffffffffffffffffffffffffffffff16611fdc611547565b73ffffffffffffffffffffffffffffffffffffffff1614612032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202990613de0565b60405180910390fd5b80600d8190555050565b600b8054612049906141e9565b80601f0160208091040260200160405190810160405280929190818152602001828054612075906141e9565b80156120c25780601f10612097576101008083540402835291602001916120c2565b820191906000526020600020905b8154815290600101906020018083116120a557829003601f168201915b505050505081565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061219d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121ad57506121ac82612910565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661229383611054565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122e4826121b4565b612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90613cc0565b60405180910390fd5b600061232e83611054565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061239d57508373ffffffffffffffffffffffffffffffffffffffff1661238584610a3c565b73ffffffffffffffffffffffffffffffffffffffff16145b806123ae57506123ad8185611c52565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123d782611054565b73ffffffffffffffffffffffffffffffffffffffff161461242d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242490613e00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561249d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249490613c80565b60405180910390fd5b6124aa838383600161297a565b6124b5600082612220565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461250591906140ff565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461255c919061401e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183612623919061401e565b905092915050565b6000818361263991906140a5565b905092915050565b61265b828260405180602001604052806000815250612aa4565b5050565b61266a8484846123b7565b61267684848484612aff565b6126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ac90613c20565b60405180910390fd5b50505050565b6060601280546126ca906141e9565b80601f01602080910402602001604051908101604052809291908181526020018280546126f6906141e9565b80156127435780601f1061271857610100808354040283529160200191612743565b820191906000526020600020905b81548152906001019060200180831161272657829003601f168201915b5050505050905090565b60606000821415612795576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128f5565b600082905060005b600082146127c75780806127b09061424c565b915050600a826127c09190614074565b915061279d565b60008167ffffffffffffffff811115612809577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561283b5781602001600182028036833780820191505090505b5090505b600085146128ee5760018261285491906140ff565b9150600a856128639190614295565b603061286f919061401e565b60f81b8183815181106128ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128e79190614074565b945061283f565b8093505050505b919050565b6000818361290891906140ff565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61298684848484612c96565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129c9576129c482612c9c565b612a08565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612a0757612a068483612ce5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015612a415750805b15612a5457612a4f82612e52565b612a9e565b8373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a8d5750805b15612a9d57612a9c8383612f95565b5b5b50505050565b612aae8383613014565b612abb6000848484612aff565b612afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af190613c20565b60405180910390fd5b505050565b6000612b208473ffffffffffffffffffffffffffffffffffffffff166131e4565b15612c89578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b496120ca565b8786866040518563ffffffff1660e01b8152600401612b6b9493929190613b35565b602060405180830381600087803b158015612b8557600080fd5b505af1925050508015612bb657506040513d601f19601f82011682018060405250810190612bb391906135a3565b60015b612c39573d8060008114612be6576040519150601f19603f3d011682016040523d82523d6000602084013e612beb565b606091505b50600081511415612c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2890613c20565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c8e565b600190505b949350505050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612cf28461110c565b612cfc91906140ff565b9050600060076000848152602001908152602001600020549050818114612de1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e6691906140ff565b9050600060096000848152602001908152602001600020549050600060088381548110612ebc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612f04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612fa08361110c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307b90613da0565b60405180910390fd5b61308d816121b4565b156130cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c490613c60565b60405180910390fd5b6130db60008383600161297a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461312b919061401e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613203906141e9565b90600052602060002090601f016020900481019282613225576000855561326c565b82601f1061323e57805160ff191683800117855561326c565b8280016001018555821561326c579182015b8281111561326b578251825591602001919060010190613250565b5b509050613279919061327d565b5090565b5b8082111561329657600081600090555060010161327e565b5090565b60006132ad6132a884613f40565b613f1b565b9050828152602081018484840111156132c557600080fd5b6132d08482856141a7565b509392505050565b60006132eb6132e684613f71565b613f1b565b90508281526020810184848401111561330357600080fd5b61330e8482856141a7565b509392505050565b600081359050613325816149ce565b92915050565b60008135905061333a816149e5565b92915050565b60008135905061334f816149fc565b92915050565b600081519050613364816149fc565b92915050565b600082601f83011261337b57600080fd5b813561338b84826020860161329a565b91505092915050565b600082601f8301126133a557600080fd5b81356133b58482602086016132d8565b91505092915050565b6000813590506133cd81614a13565b92915050565b6000602082840312156133e557600080fd5b60006133f384828501613316565b91505092915050565b6000806040838503121561340f57600080fd5b600061341d85828601613316565b925050602061342e85828601613316565b9150509250929050565b60008060006060848603121561344d57600080fd5b600061345b86828701613316565b935050602061346c86828701613316565b925050604061347d868287016133be565b9150509250925092565b6000806000806080858703121561349d57600080fd5b60006134ab87828801613316565b94505060206134bc87828801613316565b93505060406134cd878288016133be565b925050606085013567ffffffffffffffff8111156134ea57600080fd5b6134f68782880161336a565b91505092959194509250565b6000806040838503121561351557600080fd5b600061352385828601613316565b92505060206135348582860161332b565b9150509250929050565b6000806040838503121561355157600080fd5b600061355f85828601613316565b9250506020613570858286016133be565b9150509250929050565b60006020828403121561358c57600080fd5b600061359a84828501613340565b91505092915050565b6000602082840312156135b557600080fd5b60006135c384828501613355565b91505092915050565b6000602082840312156135de57600080fd5b600082013567ffffffffffffffff8111156135f857600080fd5b61360484828501613394565b91505092915050565b60006020828403121561361f57600080fd5b600061362d848285016133be565b91505092915050565b60006136428383613ad8565b60208301905092915050565b61365781614133565b82525050565b600061366882613fb2565b6136728185613fe0565b935061367d83613fa2565b8060005b838110156136ae5781516136958882613636565b97506136a083613fd3565b925050600181019050613681565b5085935050505092915050565b6136c481614145565b82525050565b60006136d582613fbd565b6136df8185613ff1565b93506136ef8185602086016141b6565b6136f881614382565b840191505092915050565b600061370e82613fc8565b6137188185614002565b93506137288185602086016141b6565b61373181614382565b840191505092915050565b600061374782613fc8565b6137518185614013565b93506137618185602086016141b6565b80840191505092915050565b600061377a603383614002565b915061378582614393565b604082019050919050565b600061379d602b83614002565b91506137a8826143e2565b604082019050919050565b60006137c0603283614002565b91506137cb82614431565b604082019050919050565b60006137e3602683614002565b91506137ee82614480565b604082019050919050565b6000613806601c83614002565b9150613811826144cf565b602082019050919050565b6000613829602483614002565b9150613834826144f8565b604082019050919050565b600061384c601983614002565b915061385782614547565b602082019050919050565b600061386f602c83614002565b915061387a82614570565b604082019050919050565b6000613892601d83614002565b915061389d826145bf565b602082019050919050565b60006138b5603883614002565b91506138c0826145e8565b604082019050919050565b60006138d8602a83614002565b91506138e382614637565b604082019050919050565b60006138fb602983614002565b915061390682614686565b604082019050919050565b600061391e601d83614002565b9150613929826146d5565b602082019050919050565b6000613941602083614002565b915061394c826146fe565b602082019050919050565b6000613964602083614002565b915061396f82614727565b602082019050919050565b6000613987602c83614002565b915061399282614750565b604082019050919050565b60006139aa602083614002565b91506139b58261479f565b602082019050919050565b60006139cd602983614002565b91506139d8826147c8565b604082019050919050565b60006139f0602f83614002565b91506139fb82614817565b604082019050919050565b6000613a13602183614002565b9150613a1e82614866565b604082019050919050565b6000613a36602083614002565b9150613a41826148b5565b602082019050919050565b6000613a59603183614002565b9150613a64826148de565b604082019050919050565b6000613a7c602c83614002565b9150613a878261492d565b604082019050919050565b6000613a9f601783614002565b9150613aaa8261497c565b602082019050919050565b6000613ac2602083614002565b9150613acd826149a5565b602082019050919050565b613ae18161419d565b82525050565b613af08161419d565b82525050565b6000613b02828561373c565b9150613b0e828461373c565b91508190509392505050565b6000602082019050613b2f600083018461364e565b92915050565b6000608082019050613b4a600083018761364e565b613b57602083018661364e565b613b646040830185613ae7565b8181036060830152613b7681846136ca565b905095945050505050565b60006020820190508181036000830152613b9b818461365d565b905092915050565b6000602082019050613bb860008301846136bb565b92915050565b60006020820190508181036000830152613bd88184613703565b905092915050565b60006020820190508181036000830152613bf98161376d565b9050919050565b60006020820190508181036000830152613c1981613790565b9050919050565b60006020820190508181036000830152613c39816137b3565b9050919050565b60006020820190508181036000830152613c59816137d6565b9050919050565b60006020820190508181036000830152613c79816137f9565b9050919050565b60006020820190508181036000830152613c998161381c565b9050919050565b60006020820190508181036000830152613cb98161383f565b9050919050565b60006020820190508181036000830152613cd981613862565b9050919050565b60006020820190508181036000830152613cf981613885565b9050919050565b60006020820190508181036000830152613d19816138a8565b9050919050565b60006020820190508181036000830152613d39816138cb565b9050919050565b60006020820190508181036000830152613d59816138ee565b9050919050565b60006020820190508181036000830152613d7981613911565b9050919050565b60006020820190508181036000830152613d9981613934565b9050919050565b60006020820190508181036000830152613db981613957565b9050919050565b60006020820190508181036000830152613dd98161397a565b9050919050565b60006020820190508181036000830152613df98161399d565b9050919050565b60006020820190508181036000830152613e19816139c0565b9050919050565b60006020820190508181036000830152613e39816139e3565b9050919050565b60006020820190508181036000830152613e5981613a06565b9050919050565b60006020820190508181036000830152613e7981613a29565b9050919050565b60006020820190508181036000830152613e9981613a4c565b9050919050565b60006020820190508181036000830152613eb981613a6f565b9050919050565b60006020820190508181036000830152613ed981613a92565b9050919050565b60006020820190508181036000830152613ef981613ab5565b9050919050565b6000602082019050613f156000830184613ae7565b92915050565b6000613f25613f36565b9050613f31828261421b565b919050565b6000604051905090565b600067ffffffffffffffff821115613f5b57613f5a614353565b5b613f6482614382565b9050602081019050919050565b600067ffffffffffffffff821115613f8c57613f8b614353565b5b613f9582614382565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006140298261419d565b91506140348361419d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614069576140686142c6565b5b828201905092915050565b600061407f8261419d565b915061408a8361419d565b92508261409a576140996142f5565b5b828204905092915050565b60006140b08261419d565b91506140bb8361419d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140f4576140f36142c6565b5b828202905092915050565b600061410a8261419d565b91506141158361419d565b925082821015614128576141276142c6565b5b828203905092915050565b600061413e8261417d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141d45780820151818401526020810190506141b9565b838111156141e3576000848401525b50505050565b6000600282049050600182168061420157607f821691505b6020821081141561421557614214614324565b5b50919050565b61422482614382565b810181811067ffffffffffffffff8211171561424357614242614353565b5b80604052505050565b60006142578261419d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561428a576142896142c6565b5b600182019050919050565b60006142a08261419d565b91506142ab8361419d565b9250826142bb576142ba6142f5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c65737360008201527f207468616e206f7220657175616c20746f203000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53656e742065746865722076616c756520697320696e636f7272656374000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d696e74206163636f756e7420657863656564206d6178000000000000000000600082015250565b7f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74600082015250565b6149d781614133565b81146149e257600080fd5b50565b6149ee81614145565b81146149f957600080fd5b50565b614a0581614151565b8114614a1057600080fd5b50565b614a1c8161419d565b8114614a2757600080fd5b5056fea2646970667358221220806ddc4f0077f6a93b71bb7fa26372735d6d7f47a7b26b298882af42279b10ac64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063c87b56dd116100ab578063e98665501161006f578063e9866550146107e6578063eb8d2444146107fd578063f2fde38b14610828578063f4a0a52814610851578063ff1b65561461087a57610225565b8063c87b56dd146106ed578063cb774d471461072a578063d031370b14610755578063e36d64981461077e578063e985e9c5146107a957610225565b80638da5cb5b116100f25780638da5cb5b1461062957806395d89b4114610654578063a0712d681461067f578063a22cb4651461069b578063b88d4fde146106c457610225565b806370a0823114610581578063715018a6146105be5780637d17fcbe146105d55780638462151c146105ec57610225565b806323b872dd116101b157806342842e0e1161017557806342842e0e1461048a5780634f6ccce7146104b357806355f804b3146104f05780636352211e14610519578063676dd5631461055657610225565b806323b872dd146103cb5780632f745c59146103f457806332cb6b0c1461043157806334918dfd1461045c5780633ccfd60b1461047357610225565b8063081812fc116101f8578063081812fc146102e6578063095ea7b314610323578063109695231461034c57806318160ddd1461037557806318e20a38146103a057610225565b8063018a2c371461022a57806301ffc9a714610253578063020b39cc1461029057806306fdde03146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061360d565b6108a5565b005b34801561025f57600080fd5b5061027a6004803603810190610275919061357a565b61092b565b6040516102879190613ba3565b60405180910390f35b34801561029c57600080fd5b506102a56109a5565b6040516102b29190613f00565b60405180910390f35b3480156102c757600080fd5b506102d06109aa565b6040516102dd9190613bbe565b60405180910390f35b3480156102f257600080fd5b5061030d6004803603810190610308919061360d565b610a3c565b60405161031a9190613b1a565b60405180910390f35b34801561032f57600080fd5b5061034a6004803603810190610345919061353e565b610ac1565b005b34801561035857600080fd5b50610373600480360381019061036e91906135cc565b610bd9565b005b34801561038157600080fd5b5061038a610c6f565b6040516103979190613f00565b60405180910390f35b3480156103ac57600080fd5b506103b5610c7c565b6040516103c29190613f00565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190613438565b610c82565b005b34801561040057600080fd5b5061041b6004803603810190610416919061353e565b610ce2565b6040516104289190613f00565b60405180910390f35b34801561043d57600080fd5b50610446610d87565b6040516104539190613f00565b60405180910390f35b34801561046857600080fd5b50610471610d8d565b005b34801561047f57600080fd5b50610488610e35565b005b34801561049657600080fd5b506104b160048036038101906104ac9190613438565b610f07565b005b3480156104bf57600080fd5b506104da60048036038101906104d5919061360d565b610f27565b6040516104e79190613f00565b60405180910390f35b3480156104fc57600080fd5b50610517600480360381019061051291906135cc565b610fbe565b005b34801561052557600080fd5b50610540600480360381019061053b919061360d565b611054565b60405161054d9190613b1a565b60405180910390f35b34801561056257600080fd5b5061056b611106565b6040516105789190613f00565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a391906133d3565b61110c565b6040516105b59190613f00565b60405180910390f35b3480156105ca57600080fd5b506105d36111c4565b005b3480156105e157600080fd5b506105ea611301565b005b3480156105f857600080fd5b50610613600480360381019061060e91906133d3565b6113cb565b6040516106209190613b81565b60405180910390f35b34801561063557600080fd5b5061063e611547565b60405161064b9190613b1a565b60405180910390f35b34801561066057600080fd5b50610669611571565b6040516106769190613bbe565b60405180910390f35b6106996004803603810190610694919061360d565b611603565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190613502565b611830565b005b3480156106d057600080fd5b506106eb60048036038101906106e69190613487565b6119b1565b005b3480156106f957600080fd5b50610714600480360381019061070f919061360d565b611a13565b6040516107219190613bbe565b60405180910390f35b34801561073657600080fd5b5061073f611b86565b60405161074c9190613f00565b60405180910390f35b34801561076157600080fd5b5061077c6004803603810190610777919061360d565b611b8c565b005b34801561078a57600080fd5b50610793611c4c565b6040516107a09190613f00565b60405180910390f35b3480156107b557600080fd5b506107d060048036038101906107cb91906133fc565b611c52565b6040516107dd9190613ba3565b60405180910390f35b3480156107f257600080fd5b506107fb611ce6565b005b34801561080957600080fd5b50610812611df7565b60405161081f9190613ba3565b60405180910390f35b34801561083457600080fd5b5061084f600480360381019061084a91906133d3565b611e0a565b005b34801561085d57600080fd5b506108786004803603810190610873919061360d565b611fb6565b005b34801561088657600080fd5b5061088f61203c565b60405161089c9190613bbe565b60405180910390f35b6108ad6120ca565b73ffffffffffffffffffffffffffffffffffffffff166108cb611547565b73ffffffffffffffffffffffffffffffffffffffff1614610921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091890613de0565b60405180910390fd5b80600c8190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099e575061099d826120d2565b5b9050919050565b601481565b6060600080546109b9906141e9565b80601f01602080910402602001604051908101604052809291908181526020018280546109e5906141e9565b8015610a325780601f10610a0757610100808354040283529160200191610a32565b820191906000526020600020905b815481529060010190602001808311610a1557829003601f168201915b5050505050905090565b6000610a47826121b4565b610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d90613dc0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610acc82611054565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490613e40565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b5c6120ca565b73ffffffffffffffffffffffffffffffffffffffff161480610b8b5750610b8a81610b856120ca565b611c52565b5b610bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc190613d00565b60405180910390fd5b610bd48383612220565b505050565b610be16120ca565b73ffffffffffffffffffffffffffffffffffffffff16610bff611547565b73ffffffffffffffffffffffffffffffffffffffff1614610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90613de0565b60405180910390fd5b80600b9080519060200190610c6b9291906131f7565b5050565b6000600880549050905090565b600c5481565b610c93610c8d6120ca565b826122d9565b610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990613e80565b60405180910390fd5b610cdd8383836123b7565b505050565b6000610ced8361110c565b8210610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2590613c00565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600e5481565b610d956120ca565b73ffffffffffffffffffffffffffffffffffffffff16610db3611547565b73ffffffffffffffffffffffffffffffffffffffff1614610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090613de0565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b610e3d6120ca565b73ffffffffffffffffffffffffffffffffffffffff16610e5b611547565b73ffffffffffffffffffffffffffffffffffffffff1614610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea890613de0565b60405180910390fd5b6000479050610ebe6120ca565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f03573d6000803e3d6000fd5b5050565b610f22838383604051806020016040528060008152506119b1565b505050565b6000610f31610c6f565b8210610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990613ea0565b60405180910390fd5b60088281548110610fac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610fc66120ca565b73ffffffffffffffffffffffffffffffffffffffff16610fe4611547565b73ffffffffffffffffffffffffffffffffffffffff161461103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190613de0565b60405180910390fd5b80601290805190602001906110509291906131f7565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f490613d40565b60405180910390fd5b80915050919050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490613d20565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111cc6120ca565b73ffffffffffffffffffffffffffffffffffffffff166111ea611547565b73ffffffffffffffffffffffffffffffffffffffff1614611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123790613de0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6113096120ca565b73ffffffffffffffffffffffffffffffffffffffff16611327611547565b73ffffffffffffffffffffffffffffffffffffffff161461137d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137490613de0565b60405180910390fd5b6000601154146113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990613ce0565b60405180910390fd5b43601081905550565b606060006113d88361110c565b9050600081141561145b57600067ffffffffffffffff811115611424577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114525781602001602082028036833780820191505090505b50915050611542565b60008167ffffffffffffffff81111561149d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114cb5781602001602082028036833780820191505090505b50905060005b8281101561153b576114e38582610ce2565b82828151811061151c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806115339061424c565b9150506114d1565b5080925050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611580906141e9565b80601f01602080910402602001604051908101604052809291908181526020018280546115ac906141e9565b80156115f95780601f106115ce576101008083540402835291602001916115f9565b820191906000526020600020905b8154815290600101906020018083116115dc57829003601f168201915b5050505050905090565b600f60009054906101000a900460ff16611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164990613ee0565b60405180910390fd5b60008111611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c90613be0565b60405180910390fd5b600e546116b2826116a4610c6f565b61261590919063ffffffff16565b11156116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea90613d80565b60405180910390fd5b6116fb611547565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117c9576014811115611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890613ec0565b60405180910390fd5b3461178782600d5461262b90919063ffffffff16565b11156117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bf90613d60565b60405180910390fd5b5b60005b818110156117f8576117e5336117e0610c6f565b612641565b80806117f09061424c565b9150506117cc565b5060006010541480156118205750600e54611811610c6f565b148061181f5750600c544210155b5b1561182d57436010819055505b50565b6118386120ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d90613ca0565b60405180910390fd5b80600560006118b36120ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119606120ca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119a59190613ba3565b60405180910390a35050565b6119c26119bc6120ca565b836122d9565b611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f890613e80565b60405180910390fd5b611a0d8484848461265f565b50505050565b6060611a1e826121b4565b611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490613e20565b60405180910390fd5b6000601360008481526020019081526020016000208054611a7d906141e9565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa9906141e9565b8015611af65780601f10611acb57610100808354040283529160200191611af6565b820191906000526020600020905b815481529060010190602001808311611ad957829003601f168201915b505050505090506000611b076126bb565b9050600081511415611b1d578192505050611b81565b600082511115611b52578082604051602001611b3a929190613af6565b60405160208183030381529060405292505050611b81565b80611b5c8561274d565b604051602001611b6d929190613af6565b604051602081830303815290604052925050505b919050565b60115481565b611b946120ca565b73ffffffffffffffffffffffffffffffffffffffff16611bb2611547565b73ffffffffffffffffffffffffffffffffffffffff1614611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff90613de0565b60405180910390fd5b6000611c12610c6f565b905060005b82811015611c4757611c34338284611c2f919061401e565b612641565b8080611c3f9061424c565b915050611c17565b505050565b60105481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060115414611d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2290613ce0565b60405180910390fd5b60006010541415611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6890613e60565b60405180910390fd5b600e546010544060001c611d859190614295565b60118190555060ff611da2601054436128fa90919063ffffffff16565b1115611dcd57600e54600143611db891906140ff565b4060001c611dc69190614295565b6011819055505b60006011541415611df557611dee600160115461261590919063ffffffff16565b6011819055505b565b600f60009054906101000a900460ff1681565b611e126120ca565b73ffffffffffffffffffffffffffffffffffffffff16611e30611547565b73ffffffffffffffffffffffffffffffffffffffff1614611e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7d90613de0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eed90613c40565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611fbe6120ca565b73ffffffffffffffffffffffffffffffffffffffff16611fdc611547565b73ffffffffffffffffffffffffffffffffffffffff1614612032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202990613de0565b60405180910390fd5b80600d8190555050565b600b8054612049906141e9565b80601f0160208091040260200160405190810160405280929190818152602001828054612075906141e9565b80156120c25780601f10612097576101008083540402835291602001916120c2565b820191906000526020600020905b8154815290600101906020018083116120a557829003601f168201915b505050505081565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061219d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121ad57506121ac82612910565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661229383611054565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122e4826121b4565b612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90613cc0565b60405180910390fd5b600061232e83611054565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061239d57508373ffffffffffffffffffffffffffffffffffffffff1661238584610a3c565b73ffffffffffffffffffffffffffffffffffffffff16145b806123ae57506123ad8185611c52565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123d782611054565b73ffffffffffffffffffffffffffffffffffffffff161461242d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242490613e00565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561249d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249490613c80565b60405180910390fd5b6124aa838383600161297a565b6124b5600082612220565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461250591906140ff565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461255c919061401e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183612623919061401e565b905092915050565b6000818361263991906140a5565b905092915050565b61265b828260405180602001604052806000815250612aa4565b5050565b61266a8484846123b7565b61267684848484612aff565b6126b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ac90613c20565b60405180910390fd5b50505050565b6060601280546126ca906141e9565b80601f01602080910402602001604051908101604052809291908181526020018280546126f6906141e9565b80156127435780601f1061271857610100808354040283529160200191612743565b820191906000526020600020905b81548152906001019060200180831161272657829003601f168201915b5050505050905090565b60606000821415612795576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128f5565b600082905060005b600082146127c75780806127b09061424c565b915050600a826127c09190614074565b915061279d565b60008167ffffffffffffffff811115612809577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561283b5781602001600182028036833780820191505090505b5090505b600085146128ee5760018261285491906140ff565b9150600a856128639190614295565b603061286f919061401e565b60f81b8183815181106128ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128e79190614074565b945061283f565b8093505050505b919050565b6000818361290891906140ff565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61298684848484612c96565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129c9576129c482612c9c565b612a08565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612a0757612a068483612ce5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015612a415750805b15612a5457612a4f82612e52565b612a9e565b8373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a8d5750805b15612a9d57612a9c8383612f95565b5b5b50505050565b612aae8383613014565b612abb6000848484612aff565b612afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af190613c20565b60405180910390fd5b505050565b6000612b208473ffffffffffffffffffffffffffffffffffffffff166131e4565b15612c89578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b496120ca565b8786866040518563ffffffff1660e01b8152600401612b6b9493929190613b35565b602060405180830381600087803b158015612b8557600080fd5b505af1925050508015612bb657506040513d601f19601f82011682018060405250810190612bb391906135a3565b60015b612c39573d8060008114612be6576040519150601f19603f3d011682016040523d82523d6000602084013e612beb565b606091505b50600081511415612c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2890613c20565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c8e565b600190505b949350505050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612cf28461110c565b612cfc91906140ff565b9050600060076000848152602001908152602001600020549050818114612de1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e6691906140ff565b9050600060096000848152602001908152602001600020549050600060088381548110612ebc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612f04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612fa08361110c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307b90613da0565b60405180910390fd5b61308d816121b4565b156130cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c490613c60565b60405180910390fd5b6130db60008383600161297a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461312b919061401e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613203906141e9565b90600052602060002090601f016020900481019282613225576000855561326c565b82601f1061323e57805160ff191683800117855561326c565b8280016001018555821561326c579182015b8281111561326b578251825591602001919060010190613250565b5b509050613279919061327d565b5090565b5b8082111561329657600081600090555060010161327e565b5090565b60006132ad6132a884613f40565b613f1b565b9050828152602081018484840111156132c557600080fd5b6132d08482856141a7565b509392505050565b60006132eb6132e684613f71565b613f1b565b90508281526020810184848401111561330357600080fd5b61330e8482856141a7565b509392505050565b600081359050613325816149ce565b92915050565b60008135905061333a816149e5565b92915050565b60008135905061334f816149fc565b92915050565b600081519050613364816149fc565b92915050565b600082601f83011261337b57600080fd5b813561338b84826020860161329a565b91505092915050565b600082601f8301126133a557600080fd5b81356133b58482602086016132d8565b91505092915050565b6000813590506133cd81614a13565b92915050565b6000602082840312156133e557600080fd5b60006133f384828501613316565b91505092915050565b6000806040838503121561340f57600080fd5b600061341d85828601613316565b925050602061342e85828601613316565b9150509250929050565b60008060006060848603121561344d57600080fd5b600061345b86828701613316565b935050602061346c86828701613316565b925050604061347d868287016133be565b9150509250925092565b6000806000806080858703121561349d57600080fd5b60006134ab87828801613316565b94505060206134bc87828801613316565b93505060406134cd878288016133be565b925050606085013567ffffffffffffffff8111156134ea57600080fd5b6134f68782880161336a565b91505092959194509250565b6000806040838503121561351557600080fd5b600061352385828601613316565b92505060206135348582860161332b565b9150509250929050565b6000806040838503121561355157600080fd5b600061355f85828601613316565b9250506020613570858286016133be565b9150509250929050565b60006020828403121561358c57600080fd5b600061359a84828501613340565b91505092915050565b6000602082840312156135b557600080fd5b60006135c384828501613355565b91505092915050565b6000602082840312156135de57600080fd5b600082013567ffffffffffffffff8111156135f857600080fd5b61360484828501613394565b91505092915050565b60006020828403121561361f57600080fd5b600061362d848285016133be565b91505092915050565b60006136428383613ad8565b60208301905092915050565b61365781614133565b82525050565b600061366882613fb2565b6136728185613fe0565b935061367d83613fa2565b8060005b838110156136ae5781516136958882613636565b97506136a083613fd3565b925050600181019050613681565b5085935050505092915050565b6136c481614145565b82525050565b60006136d582613fbd565b6136df8185613ff1565b93506136ef8185602086016141b6565b6136f881614382565b840191505092915050565b600061370e82613fc8565b6137188185614002565b93506137288185602086016141b6565b61373181614382565b840191505092915050565b600061374782613fc8565b6137518185614013565b93506137618185602086016141b6565b80840191505092915050565b600061377a603383614002565b915061378582614393565b604082019050919050565b600061379d602b83614002565b91506137a8826143e2565b604082019050919050565b60006137c0603283614002565b91506137cb82614431565b604082019050919050565b60006137e3602683614002565b91506137ee82614480565b604082019050919050565b6000613806601c83614002565b9150613811826144cf565b602082019050919050565b6000613829602483614002565b9150613834826144f8565b604082019050919050565b600061384c601983614002565b915061385782614547565b602082019050919050565b600061386f602c83614002565b915061387a82614570565b604082019050919050565b6000613892601d83614002565b915061389d826145bf565b602082019050919050565b60006138b5603883614002565b91506138c0826145e8565b604082019050919050565b60006138d8602a83614002565b91506138e382614637565b604082019050919050565b60006138fb602983614002565b915061390682614686565b604082019050919050565b600061391e601d83614002565b9150613929826146d5565b602082019050919050565b6000613941602083614002565b915061394c826146fe565b602082019050919050565b6000613964602083614002565b915061396f82614727565b602082019050919050565b6000613987602c83614002565b915061399282614750565b604082019050919050565b60006139aa602083614002565b91506139b58261479f565b602082019050919050565b60006139cd602983614002565b91506139d8826147c8565b604082019050919050565b60006139f0602f83614002565b91506139fb82614817565b604082019050919050565b6000613a13602183614002565b9150613a1e82614866565b604082019050919050565b6000613a36602083614002565b9150613a41826148b5565b602082019050919050565b6000613a59603183614002565b9150613a64826148de565b604082019050919050565b6000613a7c602c83614002565b9150613a878261492d565b604082019050919050565b6000613a9f601783614002565b9150613aaa8261497c565b602082019050919050565b6000613ac2602083614002565b9150613acd826149a5565b602082019050919050565b613ae18161419d565b82525050565b613af08161419d565b82525050565b6000613b02828561373c565b9150613b0e828461373c565b91508190509392505050565b6000602082019050613b2f600083018461364e565b92915050565b6000608082019050613b4a600083018761364e565b613b57602083018661364e565b613b646040830185613ae7565b8181036060830152613b7681846136ca565b905095945050505050565b60006020820190508181036000830152613b9b818461365d565b905092915050565b6000602082019050613bb860008301846136bb565b92915050565b60006020820190508181036000830152613bd88184613703565b905092915050565b60006020820190508181036000830152613bf98161376d565b9050919050565b60006020820190508181036000830152613c1981613790565b9050919050565b60006020820190508181036000830152613c39816137b3565b9050919050565b60006020820190508181036000830152613c59816137d6565b9050919050565b60006020820190508181036000830152613c79816137f9565b9050919050565b60006020820190508181036000830152613c998161381c565b9050919050565b60006020820190508181036000830152613cb98161383f565b9050919050565b60006020820190508181036000830152613cd981613862565b9050919050565b60006020820190508181036000830152613cf981613885565b9050919050565b60006020820190508181036000830152613d19816138a8565b9050919050565b60006020820190508181036000830152613d39816138cb565b9050919050565b60006020820190508181036000830152613d59816138ee565b9050919050565b60006020820190508181036000830152613d7981613911565b9050919050565b60006020820190508181036000830152613d9981613934565b9050919050565b60006020820190508181036000830152613db981613957565b9050919050565b60006020820190508181036000830152613dd98161397a565b9050919050565b60006020820190508181036000830152613df98161399d565b9050919050565b60006020820190508181036000830152613e19816139c0565b9050919050565b60006020820190508181036000830152613e39816139e3565b9050919050565b60006020820190508181036000830152613e5981613a06565b9050919050565b60006020820190508181036000830152613e7981613a29565b9050919050565b60006020820190508181036000830152613e9981613a4c565b9050919050565b60006020820190508181036000830152613eb981613a6f565b9050919050565b60006020820190508181036000830152613ed981613a92565b9050919050565b60006020820190508181036000830152613ef981613ab5565b9050919050565b6000602082019050613f156000830184613ae7565b92915050565b6000613f25613f36565b9050613f31828261421b565b919050565b6000604051905090565b600067ffffffffffffffff821115613f5b57613f5a614353565b5b613f6482614382565b9050602081019050919050565b600067ffffffffffffffff821115613f8c57613f8b614353565b5b613f9582614382565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006140298261419d565b91506140348361419d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614069576140686142c6565b5b828201905092915050565b600061407f8261419d565b915061408a8361419d565b92508261409a576140996142f5565b5b828204905092915050565b60006140b08261419d565b91506140bb8361419d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140f4576140f36142c6565b5b828202905092915050565b600061410a8261419d565b91506141158361419d565b925082821015614128576141276142c6565b5b828203905092915050565b600061413e8261417d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141d45780820151818401526020810190506141b9565b838111156141e3576000848401525b50505050565b6000600282049050600182168061420157607f821691505b6020821081141561421557614214614324565b5b50919050565b61422482614382565b810181811067ffffffffffffffff8211171561424357614242614353565b5b80604052505050565b60006142578261419d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561428a576142896142c6565b5b600182019050919050565b60006142a08261419d565b91506142ab8361419d565b9250826142bb576142ba6142f5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c65737360008201527f207468616e206f7220657175616c20746f203000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53656e742065746865722076616c756520697320696e636f7272656374000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d696e74206163636f756e7420657863656564206d6178000000000000000000600082015250565b7f53616c65206973206e6f742061637469766520617420746865206d6f6d656e74600082015250565b6149d781614133565b81146149e257600080fd5b50565b6149ee81614145565b81146149f957600080fd5b50565b614a0581614151565b8114614a1057600080fd5b50565b614a1c8161419d565b8114614a2757600080fd5b5056fea2646970667358221220806ddc4f0077f6a93b71bb7fa26372735d6d7f47a7b26b298882af42279b10ac64736f6c63430008040033

Deployed Bytecode Sourcemap

49279:5717:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53225:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43078:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49789:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31000:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32452:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31989:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50363:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43727:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49686:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33342:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43395:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49838:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50202:89;;;;;;;;;;;;;:::i;:::-;;50500:142;;;;;;;;;;;;;:::i;:::-;;33718:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43917:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52134:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30694:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49726:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30424:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28260:148;;;;;;;;;;;;;:::i;:::-;;54254:194;;;;;;;;;;;;;:::i;:::-;;54516:477;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27609:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31169:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50870:1052;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32745:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33940:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52251:793;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49957:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50650:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49917:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33111:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53429:688;;;;;;;;;;;;;:::i;:::-;;49878:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28563:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53052:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49645:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53225:127;27840:12;:10;:12::i;:::-;27829:23;;:7;:5;:7::i;:::-;:23;;;27821:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53328:16:::1;53309;:35;;;;53225:127:::0;:::o;43078:233::-;43180:4;43219:35;43204:50;;;:11;:50;;;;:99;;;;43267:36;43291:11;43267:23;:36::i;:::-;43204:99;43197:106;;43078:233;;;:::o;49789:42::-;49829:2;49789:42;:::o;31000:100::-;31054:13;31087:5;31080:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31000:100;:::o;32452:221::-;32528:7;32556:16;32564:7;32556;:16::i;:::-;32548:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32641:15;:24;32657:7;32641:24;;;;;;;;;;;;;;;;;;;;;32634:31;;32452:221;;;:::o;31989:397::-;32070:13;32086:23;32101:7;32086:14;:23::i;:::-;32070:39;;32134:5;32128:11;;:2;:11;;;;32120:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;32214:5;32198:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32223:37;32240:5;32247:12;:10;:12::i;:::-;32223:16;:37::i;:::-;32198:62;32190:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32357:21;32366:2;32370:7;32357:8;:21::i;:::-;31989:397;;;:::o;50363:129::-;27840:12;:10;:12::i;:::-;27829:23;;:7;:5;:7::i;:::-;:23;;;27821:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50469:15:::1;50451;:33;;;;;;;;;;;;:::i;:::-;;50363:129:::0;:::o;43727:113::-;43788:7;43815:10;:17;;;;43808:24;;43727:113;:::o;49686:31::-;;;;:::o;33342:305::-;33503:41;33522:12;:10;:12::i;:::-;33536:7;33503:18;:41::i;:::-;33495:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;33611:28;33621:4;33627:2;33631:7;33611:9;:28::i;:::-;33342:305;;;:::o;43395:256::-;43492:7;43528:23;43545:5;43528:16;:23::i;:::-;43520:5;:31;43512:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;43617:12;:19;43630:5;43617:19;;;;;;;;;;;;;;;:26;43637:5;43617:26;;;;;;;;;;;;43610:33;;43395:256;;;;:::o;49838:33::-;;;;:::o;50202:89::-;27840:12;:10;:12::i;:::-;27829:23;;:7;:5;:7::i;:::-;:23;;;27821:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50271:12:::1;;;;;;;;;;;50270:13;50255:12;;:28;;;;;;;;;;;;;;;;;;50202:89::o:0;50500:142::-;27840:12;:10;:12::i;:::-;27829:23;;:7;:5;:7::i;:::-;:23;;;27821:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50548:12:::1;50563:21;50548:36;;50603:12;:10;:12::i;:::-;50595:30;;:39;50626:7;50595:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;27900:1;50500:142::o:0;33718:151::-;33822:39;33839:4;33845:2;33849:7;33822:39;;;;;;;;;;;;:16;:39::i;:::-;33718:151;;;:::o;43917:233::-;43992:7;44028:30;:28;:30::i;:::-;44020:5;:38;44012:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;44125:10;44136:5;44125:17;;;;;;;;;;;;;;;;;;;;;;;;44118:24;;43917:233;;;:::o;52134:109::-;27840:12;:10;:12::i;:::-;27829:23;;:7;:5;:7::i;:::-;:23;;;27821:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52227:8:::1;52208:16;:27;;;;;;;;;;;;:::i;:::-;;52134:109:::0;:::o;30694:239::-;30766:7;30786:13;30802:7;:16;30810:7;30802:16;;;;;;;;;;;;;;;;;;;;;30786:32;;30854:1;30837:19;;:5;:19;;;;30829:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30920:5;30913:12;;;30694:239;;;:::o;49726:44::-;;;;:::o;30424:208::-;30496:7;30541:1;30524:19;;:5;:19;;;;30516:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30608:9;:16;30618:5;30608:16;;;;;;;;;;;;;;;;30601:23;;30424:208;;;:::o;28260:148::-;27840:12;:10;:12::i;:::-;27829:23;;:7;:5;:7::i;:::-;:23;;;27821:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28367:1:::1;28330:40;;28351:6;;;;;;;;;;;28330:40;;;;;;;;;;;;28398:1;28381:6;;:19;;;;;;;;;;;;;;;;;;28260:148::o:0;54254:194::-;27840:12;:10;:12::i;:::-;27829:23;;:7;:5;:7::i;:::-;:23;;;27821:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54351:1:::1;54334:13;;:18;54326:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;54428:12;54407:18;:33;;;;54254:194::o:0;54516:477::-;54577:16;54606:18;54627:17;54637:6;54627:9;:17::i;:::-;54606:38;;54673:1;54659:10;:15;54655:331;;;54712:1;54698:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54691:23;;;;;54655:331;54747:23;54787:10;54773:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54747:51;;54818:13;54813:134;54841:10;54833:5;:18;54813:134;;;54897:34;54917:6;54925:5;54897:19;:34::i;:::-;54881:6;54888:5;54881:13;;;;;;;;;;;;;;;;;;;;;:50;;;;;54853:7;;;;;:::i;:::-;;;;54813:134;;;;54968:6;54961:13;;;;54516:477;;;;:::o;27609:87::-;27655:7;27682:6;;;;;;;;;;;27675:13;;27609:87;:::o;31169:104::-;31225:13;31258:7;31251:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31169:104;:::o;50870:1052::-;50939:12;;;;;;;;;;;50931:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;51024:1;51007:14;:18;50999:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;51137:10;;51100:33;51118:14;51100:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:47;;51092:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;51212:7;:5;:7::i;:::-;51198:21;;:10;:21;;;51195:221;;49829:2;51244:14;:34;;51236:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51361:9;51328:29;51342:14;51328:9;;:13;;:29;;;;:::i;:::-;:42;;51320:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;51195:221;51433:6;51428:105;51449:14;51445:1;:18;51428:105;;;51485:36;51495:10;51507:13;:11;:13::i;:::-;51485:9;:36::i;:::-;51465:3;;;;;:::i;:::-;;;;51428:105;;;;51779:1;51757:18;;:23;:95;;;;;51802:10;;51785:13;:11;:13::i;:::-;:27;:66;;;;51835:16;;51816:15;:35;;51785:66;51757:95;51753:161;;;51890:12;51869:18;:33;;;;51753:161;50870:1052;:::o;32745:295::-;32860:12;:10;:12::i;:::-;32848:24;;:8;:24;;;;32840:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32960:8;32915:18;:32;32934:12;:10;:12::i;:::-;32915:32;;;;;;;;;;;;;;;:42;32948:8;32915:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33013:8;32984:48;;32999:12;:10;:12::i;:::-;32984:48;;;33023:8;32984:48;;;;;;:::i;:::-;;;;;;;;32745:295;;:::o;33940:285::-;34072:41;34091:12;:10;:12::i;:::-;34105:7;34072:18;:41::i;:::-;34064:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34178:39;34192:4;34198:2;34202:7;34211:5;34178:13;:39::i;:::-;33940:285;;;;:::o;52251:793::-;52324:13;52358:16;52366:7;52358;:16::i;:::-;52350:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52439:23;52465:10;:19;52476:7;52465:19;;;;;;;;;;;52439:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52495:18;52516:10;:8;:10::i;:::-;52495:31;;52624:1;52608:4;52602:18;:23;52598:72;;;52649:9;52642:16;;;;;;52598:72;52800:1;52780:9;52774:23;:27;52770:108;;;52849:4;52855:9;52832:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52818:48;;;;;;52770:108;53010:4;53016:18;:7;:16;:18::i;:::-;52993:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52979:57;;;;52251:793;;;;:::o;49957:28::-;;;;:::o;50650:212::-;27840:12;:10;:12::i;:::-;27829:23;;:7;:5;:7::i;:::-;:23;;;27821:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50714:11:::1;50728:13;:11;:13::i;:::-;50714:27;;50752:6;50769:86;50785:3;50781:1;:7;50769:86;;;50810:33;50820:10;50841:1;50832:6;:10;;;;:::i;:::-;50810:9;:33::i;:::-;50790:3;;;;;:::i;:::-;;;;50769:86;;;27900:1;;50650:212:::0;:::o;49917:33::-;;;;:::o;33111:164::-;33208:4;33232:18;:25;33251:5;33232:25;;;;;;;;;;;;;;;:35;33258:8;33232:35;;;;;;;;;;;;;;;;;;;;;;;;;33225:42;;33111:164;;;;:::o;53429:688::-;53502:1;53485:13;;:18;53477:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;53578:1;53556:18;;:23;;53548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53694:10;;53671:18;;53661:29;53653:38;;:51;;;;:::i;:::-;53637:13;:67;;;;53879:3;53840:36;53857:18;;53840:12;:16;;:36;;;;:::i;:::-;:42;53836:140;;;53954:10;;53948:1;53933:12;:16;;;;:::i;:::-;53923:27;53915:36;;:49;;;;:::i;:::-;53899:13;:65;;;;53836:140;54044:1;54027:13;;:18;54023:87;;;54078:20;54096:1;54078:13;;:17;;:20;;;;:::i;:::-;54062:13;:36;;;;54023:87;53429:688::o;49878:32::-;;;;;;;;;;;;;:::o;28563:244::-;27840:12;:10;:12::i;:::-;27829:23;;:7;:5;:7::i;:::-;:23;;;27821:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28672:1:::1;28652:22;;:8;:22;;;;28644:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28762:8;28733:38;;28754:6;;;;;;;;;;;28733:38;;;;;;;;;;;;28791:8;28782:6;;:17;;;;;;;;;;;;;;;;;;28563:244:::0;:::o;53052:94::-;27840:12;:10;:12::i;:::-;27829:23;;:7;:5;:7::i;:::-;:23;;;27821:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53132:6:::1;53120:9;:18;;;;53052:94:::0;:::o;49645:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26226:98::-;26279:7;26306:10;26299:17;;26226:98;:::o;30076:284::-;30178:4;30217:25;30202:40;;;:11;:40;;;;:101;;;;30270:33;30255:48;;;:11;:48;;;;30202:101;:150;;;;30316:36;30340:11;30316:23;:36::i;:::-;30202:150;30195:157;;30076:284;;;:::o;35692:127::-;35757:4;35809:1;35781:30;;:7;:16;35789:7;35781:16;;;;;;;;;;;;;;;;;;;;;:30;;;;35774:37;;35692:127;;;:::o;39931:174::-;40033:2;40006:15;:24;40022:7;40006:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40089:7;40085:2;40051:46;;40060:23;40075:7;40060:14;:23::i;:::-;40051:46;;;;;;;;;;;;39931:174;;:::o;35986:348::-;36079:4;36104:16;36112:7;36104;:16::i;:::-;36096:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36180:13;36196:23;36211:7;36196:14;:23::i;:::-;36180:39;;36249:5;36238:16;;:7;:16;;;:51;;;;36282:7;36258:31;;:20;36270:7;36258:11;:20::i;:::-;:31;;;36238:51;:87;;;;36293:32;36310:5;36317:7;36293:16;:32::i;:::-;36238:87;36230:96;;;35986:348;;;;:::o;39263:550::-;39388:4;39361:31;;:23;39376:7;39361:14;:23::i;:::-;:31;;;39353:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39471:1;39457:16;;:2;:16;;;;39449:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39527:45;39548:4;39554:2;39558:7;39567:4;39527:20;:45::i;:::-;39637:29;39654:1;39658:7;39637:8;:29::i;:::-;39698:1;39679:9;:15;39689:4;39679:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;39727:1;39710:9;:13;39720:2;39710:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39758:2;39739:7;:16;39747:7;39739:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39797:7;39793:2;39778:27;;39787:4;39778:27;;;;;;;;;;;;39263:550;;;:::o;2730:98::-;2788:7;2819:1;2815;:5;;;;:::i;:::-;2808:12;;2730:98;;;;:::o;3468:::-;3526:7;3557:1;3553;:5;;;;:::i;:::-;3546:12;;3468:98;;;;:::o;36676:110::-;36752:26;36762:2;36766:7;36752:26;;;;;;;;;;;;:9;:26::i;:::-;36676:110;;:::o;35107:272::-;35221:28;35231:4;35237:2;35241:7;35221:9;:28::i;:::-;35268:48;35291:4;35297:2;35301:7;35310:5;35268:22;:48::i;:::-;35260:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;35107:272;;;;:::o;51930:117::-;51990:13;52023:16;52016:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51930:117;:::o;7223:723::-;7279:13;7509:1;7500:5;:10;7496:53;;;7527:10;;;;;;;;;;;;;;;;;;;;;7496:53;7559:12;7574:5;7559:20;;7590:14;7615:78;7630:1;7622:4;:9;7615:78;;7648:8;;;;;:::i;:::-;;;;7679:2;7671:10;;;;;:::i;:::-;;;7615:78;;;7703:19;7735:6;7725:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7703:39;;7753:154;7769:1;7760:5;:10;7753:154;;7797:1;7787:11;;;;;:::i;:::-;;;7864:2;7856:5;:10;;;;:::i;:::-;7843:2;:24;;;;:::i;:::-;7830:39;;7813:6;7820;7813:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;7893:2;7884:11;;;;;:::i;:::-;;;7753:154;;;7931:6;7917:21;;;;;7223:723;;;;:::o;3111:98::-;3169:7;3200:1;3196;:5;;;;:::i;:::-;3189:12;;3111:98;;;;:::o;19299:157::-;19384:4;19423:25;19408:40;;;:11;:40;;;;19401:47;;19299:157;;;:::o;44763:604::-;44888:55;44915:4;44921:2;44925:7;44934:8;44888:26;:55::i;:::-;44976:1;44960:18;;:4;:18;;;44956:187;;;44995:40;45027:7;44995:31;:40::i;:::-;44956:187;;;45065:2;45057:10;;:4;:10;;;45053:90;;45084:47;45117:4;45123:7;45084:32;:47::i;:::-;45053:90;44956:187;45171:1;45157:16;;:2;:16;;;:28;;;;;45177:8;45157:28;45153:207;;;45202:45;45239:7;45202:36;:45::i;:::-;45153:207;;;45275:4;45269:10;;:2;:10;;;;:22;;;;;45283:8;45269:22;45265:95;;;45308:40;45336:2;45340:7;45308:27;:40::i;:::-;45265:95;45153:207;44763:604;;;;:::o;37013:250::-;37109:18;37115:2;37119:7;37109:5;:18::i;:::-;37146:54;37177:1;37181:2;37185:7;37194:5;37146:22;:54::i;:::-;37138:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;37013:250;;;:::o;40670:839::-;40787:4;40813:15;:2;:13;;;:15::i;:::-;40809:693;;;40865:2;40849:36;;;40886:12;:10;:12::i;:::-;40900:4;40906:7;40915:5;40849:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40845:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41112:1;41095:6;:13;:18;41091:341;;;41138:60;;;;;;;;;;:::i;:::-;;;;;;;;41091:341;41382:6;41376:13;41367:6;41363:2;41359:15;41352:38;40845:602;40982:45;;;40972:55;;;:6;:55;;;;40965:62;;;;;40809:693;41486:4;41479:11;;40670:839;;;;;;;:::o;42122:108::-;;;;;:::o;46090:164::-;46194:10;:17;;;;46167:15;:24;46183:7;46167:24;;;;;;;;;;;:44;;;;46222:10;46238:7;46222:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46090:164;:::o;46881:988::-;47147:22;47197:1;47172:22;47189:4;47172:16;:22::i;:::-;:26;;;;:::i;:::-;47147:51;;47209:18;47230:17;:26;47248:7;47230:26;;;;;;;;;;;;47209:47;;47377:14;47363:10;:28;47359:328;;47408:19;47430:12;:18;47443:4;47430:18;;;;;;;;;;;;;;;:34;47449:14;47430:34;;;;;;;;;;;;47408:56;;47514:11;47481:12;:18;47494:4;47481:18;;;;;;;;;;;;;;;:30;47500:10;47481:30;;;;;;;;;;;:44;;;;47631:10;47598:17;:30;47616:11;47598:30;;;;;;;;;;;:43;;;;47359:328;;47783:17;:26;47801:7;47783:26;;;;;;;;;;;47776:33;;;47827:12;:18;47840:4;47827:18;;;;;;;;;;;;;;;:34;47846:14;47827:34;;;;;;;;;;;47820:41;;;46881:988;;;;:::o;48164:1079::-;48417:22;48462:1;48442:10;:17;;;;:21;;;;:::i;:::-;48417:46;;48474:18;48495:15;:24;48511:7;48495:24;;;;;;;;;;;;48474:45;;48846:19;48868:10;48879:14;48868:26;;;;;;;;;;;;;;;;;;;;;;;;48846:48;;48932:11;48907:10;48918;48907:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;49043:10;49012:15;:28;49028:11;49012:28;;;;;;;;;;;:41;;;;49184:15;:24;49200:7;49184:24;;;;;;;;;;;49177:31;;;49219:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48164:1079;;;;:::o;45668:221::-;45753:14;45770:20;45787:2;45770:16;:20::i;:::-;45753:37;;45828:7;45801:12;:16;45814:2;45801:16;;;;;;;;;;;;;;;:24;45818:6;45801:24;;;;;;;;;;;:34;;;;45875:6;45846:17;:26;45864:7;45846:26;;;;;;;;;;;:35;;;;45668:221;;;:::o;37599:388::-;37693:1;37679:16;;:2;:16;;;;37671:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;37752:16;37760:7;37752;:16::i;:::-;37751:17;37743:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;37814:51;37843:1;37847:2;37851:7;37860:4;37814:20;:51::i;:::-;37895:1;37878:9;:13;37888:2;37878:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;37926:2;37907:7;:16;37915:7;37907:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;37971:7;37967:2;37946:33;;37963:1;37946:33;;;;;;;;;;;;37599:388;;:::o;9688:422::-;9748:4;9956:12;10067:7;10055:20;10047:28;;10101:1;10094:4;:8;10087:15;;;9688:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:179::-;6155:10;6176:46;6218:3;6210:6;6176:46;:::i;:::-;6254:4;6249:3;6245:14;6231:28;;6166:99;;;;:::o;6271:118::-;6358:24;6376:5;6358:24;:::i;:::-;6353:3;6346:37;6336:53;;:::o;6425:732::-;6544:3;6573:54;6621:5;6573:54;:::i;:::-;6643:86;6722:6;6717:3;6643:86;:::i;:::-;6636:93;;6753:56;6803:5;6753:56;:::i;:::-;6832:7;6863:1;6848:284;6873:6;6870:1;6867:13;6848:284;;;6949:6;6943:13;6976:63;7035:3;7020:13;6976:63;:::i;:::-;6969:70;;7062:60;7115:6;7062:60;:::i;:::-;7052:70;;6908:224;6895:1;6892;6888:9;6883:14;;6848:284;;;6852:14;7148:3;7141:10;;6549:608;;;;;;;:::o;7163:109::-;7244:21;7259:5;7244:21;:::i;:::-;7239:3;7232:34;7222:50;;:::o;7278:360::-;7364:3;7392:38;7424:5;7392:38;:::i;:::-;7446:70;7509:6;7504:3;7446:70;:::i;:::-;7439:77;;7525:52;7570:6;7565:3;7558:4;7551:5;7547:16;7525:52;:::i;:::-;7602:29;7624:6;7602:29;:::i;:::-;7597:3;7593:39;7586:46;;7368:270;;;;;:::o;7644:364::-;7732:3;7760:39;7793:5;7760:39;:::i;:::-;7815:71;7879:6;7874:3;7815:71;:::i;:::-;7808:78;;7895:52;7940:6;7935:3;7928:4;7921:5;7917:16;7895:52;:::i;:::-;7972:29;7994:6;7972:29;:::i;:::-;7967:3;7963:39;7956:46;;7736:272;;;;;:::o;8014:377::-;8120:3;8148:39;8181:5;8148:39;:::i;:::-;8203:89;8285:6;8280:3;8203:89;:::i;:::-;8196:96;;8301:52;8346:6;8341:3;8334:4;8327:5;8323:16;8301:52;:::i;:::-;8378:6;8373:3;8369:16;8362:23;;8124:267;;;;;:::o;8397:366::-;8539:3;8560:67;8624:2;8619:3;8560:67;:::i;:::-;8553:74;;8636:93;8725:3;8636:93;:::i;:::-;8754:2;8749:3;8745:12;8738:19;;8543:220;;;:::o;8769:366::-;8911:3;8932:67;8996:2;8991:3;8932:67;:::i;:::-;8925:74;;9008:93;9097:3;9008:93;:::i;:::-;9126:2;9121:3;9117:12;9110:19;;8915:220;;;:::o;9141:366::-;9283:3;9304:67;9368:2;9363:3;9304:67;:::i;:::-;9297:74;;9380:93;9469:3;9380:93;:::i;:::-;9498:2;9493:3;9489:12;9482:19;;9287:220;;;:::o;9513:366::-;9655:3;9676:67;9740:2;9735:3;9676:67;:::i;:::-;9669:74;;9752:93;9841:3;9752:93;:::i;:::-;9870:2;9865:3;9861:12;9854:19;;9659:220;;;:::o;9885:366::-;10027:3;10048:67;10112:2;10107:3;10048:67;:::i;:::-;10041:74;;10124:93;10213:3;10124:93;:::i;:::-;10242:2;10237:3;10233:12;10226:19;;10031:220;;;:::o;10257:366::-;10399:3;10420:67;10484:2;10479:3;10420:67;:::i;:::-;10413:74;;10496:93;10585:3;10496:93;:::i;:::-;10614:2;10609:3;10605:12;10598:19;;10403:220;;;:::o;10629:366::-;10771:3;10792:67;10856:2;10851:3;10792:67;:::i;:::-;10785:74;;10868:93;10957:3;10868:93;:::i;:::-;10986:2;10981:3;10977:12;10970:19;;10775:220;;;:::o;11001:366::-;11143:3;11164:67;11228:2;11223:3;11164:67;:::i;:::-;11157:74;;11240:93;11329:3;11240:93;:::i;:::-;11358:2;11353:3;11349:12;11342:19;;11147:220;;;:::o;11373:366::-;11515:3;11536:67;11600:2;11595:3;11536:67;:::i;:::-;11529:74;;11612:93;11701:3;11612:93;:::i;:::-;11730:2;11725:3;11721:12;11714:19;;11519:220;;;:::o;11745:366::-;11887:3;11908:67;11972:2;11967:3;11908:67;:::i;:::-;11901:74;;11984:93;12073:3;11984:93;:::i;:::-;12102:2;12097:3;12093:12;12086:19;;11891:220;;;:::o;12117:366::-;12259:3;12280:67;12344:2;12339:3;12280:67;:::i;:::-;12273:74;;12356:93;12445:3;12356:93;:::i;:::-;12474:2;12469:3;12465:12;12458:19;;12263:220;;;:::o;12489:366::-;12631:3;12652:67;12716:2;12711:3;12652:67;:::i;:::-;12645:74;;12728:93;12817:3;12728:93;:::i;:::-;12846:2;12841:3;12837:12;12830:19;;12635:220;;;:::o;12861:366::-;13003:3;13024:67;13088:2;13083:3;13024:67;:::i;:::-;13017:74;;13100:93;13189:3;13100:93;:::i;:::-;13218:2;13213:3;13209:12;13202:19;;13007:220;;;:::o;13233:366::-;13375:3;13396:67;13460:2;13455:3;13396:67;:::i;:::-;13389:74;;13472:93;13561:3;13472:93;:::i;:::-;13590:2;13585:3;13581:12;13574:19;;13379:220;;;:::o;13605:366::-;13747:3;13768:67;13832:2;13827:3;13768:67;:::i;:::-;13761:74;;13844:93;13933:3;13844:93;:::i;:::-;13962:2;13957:3;13953:12;13946:19;;13751:220;;;:::o;13977:366::-;14119:3;14140:67;14204:2;14199:3;14140:67;:::i;:::-;14133:74;;14216:93;14305:3;14216:93;:::i;:::-;14334:2;14329:3;14325:12;14318:19;;14123:220;;;:::o;14349:366::-;14491:3;14512:67;14576:2;14571:3;14512:67;:::i;:::-;14505:74;;14588:93;14677:3;14588:93;:::i;:::-;14706:2;14701:3;14697:12;14690:19;;14495:220;;;:::o;14721:366::-;14863:3;14884:67;14948:2;14943:3;14884:67;:::i;:::-;14877:74;;14960:93;15049:3;14960:93;:::i;:::-;15078:2;15073:3;15069:12;15062:19;;14867:220;;;:::o;15093:366::-;15235:3;15256:67;15320:2;15315:3;15256:67;:::i;:::-;15249:74;;15332:93;15421:3;15332:93;:::i;:::-;15450:2;15445:3;15441:12;15434:19;;15239:220;;;:::o;15465:366::-;15607:3;15628:67;15692:2;15687:3;15628:67;:::i;:::-;15621:74;;15704:93;15793:3;15704:93;:::i;:::-;15822:2;15817:3;15813:12;15806:19;;15611:220;;;:::o;15837:366::-;15979:3;16000:67;16064:2;16059:3;16000:67;:::i;:::-;15993:74;;16076:93;16165:3;16076:93;:::i;:::-;16194:2;16189:3;16185:12;16178:19;;15983:220;;;:::o;16209:366::-;16351:3;16372:67;16436:2;16431:3;16372:67;:::i;:::-;16365:74;;16448:93;16537:3;16448:93;:::i;:::-;16566:2;16561:3;16557:12;16550:19;;16355:220;;;:::o;16581:366::-;16723:3;16744:67;16808:2;16803:3;16744:67;:::i;:::-;16737:74;;16820:93;16909:3;16820:93;:::i;:::-;16938:2;16933:3;16929:12;16922:19;;16727:220;;;:::o;16953:366::-;17095:3;17116:67;17180:2;17175:3;17116:67;:::i;:::-;17109:74;;17192:93;17281:3;17192:93;:::i;:::-;17310:2;17305:3;17301:12;17294:19;;17099:220;;;:::o;17325:366::-;17467:3;17488:67;17552:2;17547:3;17488:67;:::i;:::-;17481:74;;17564:93;17653:3;17564:93;:::i;:::-;17682:2;17677:3;17673:12;17666:19;;17471:220;;;:::o;17697:108::-;17774:24;17792:5;17774:24;:::i;:::-;17769:3;17762:37;17752:53;;:::o;17811:118::-;17898:24;17916:5;17898:24;:::i;:::-;17893:3;17886:37;17876:53;;:::o;17935:435::-;18115:3;18137:95;18228:3;18219:6;18137:95;:::i;:::-;18130:102;;18249:95;18340:3;18331:6;18249:95;:::i;:::-;18242:102;;18361:3;18354:10;;18119:251;;;;;:::o;18376:222::-;18469:4;18507:2;18496:9;18492:18;18484:26;;18520:71;18588:1;18577:9;18573:17;18564:6;18520:71;:::i;:::-;18474:124;;;;:::o;18604:640::-;18799:4;18837:3;18826:9;18822:19;18814:27;;18851:71;18919:1;18908:9;18904:17;18895:6;18851:71;:::i;:::-;18932:72;19000:2;18989:9;18985:18;18976:6;18932:72;:::i;:::-;19014;19082:2;19071:9;19067:18;19058:6;19014:72;:::i;:::-;19133:9;19127:4;19123:20;19118:2;19107:9;19103:18;19096:48;19161:76;19232:4;19223:6;19161:76;:::i;:::-;19153:84;;18804:440;;;;;;;:::o;19250:373::-;19393:4;19431:2;19420:9;19416:18;19408:26;;19480:9;19474:4;19470:20;19466:1;19455:9;19451:17;19444:47;19508:108;19611:4;19602:6;19508:108;:::i;:::-;19500:116;;19398:225;;;;:::o;19629:210::-;19716:4;19754:2;19743:9;19739:18;19731:26;;19767:65;19829:1;19818:9;19814:17;19805:6;19767:65;:::i;:::-;19721:118;;;;:::o;19845:313::-;19958:4;19996:2;19985:9;19981:18;19973:26;;20045:9;20039:4;20035:20;20031:1;20020:9;20016:17;20009:47;20073:78;20146:4;20137:6;20073:78;:::i;:::-;20065:86;;19963:195;;;;:::o;20164:419::-;20330:4;20368:2;20357:9;20353:18;20345:26;;20417:9;20411:4;20407:20;20403:1;20392:9;20388:17;20381:47;20445:131;20571:4;20445:131;:::i;:::-;20437:139;;20335:248;;;:::o;20589:419::-;20755:4;20793:2;20782:9;20778:18;20770:26;;20842:9;20836:4;20832:20;20828:1;20817:9;20813:17;20806:47;20870:131;20996:4;20870:131;:::i;:::-;20862:139;;20760:248;;;:::o;21014:419::-;21180:4;21218:2;21207:9;21203:18;21195:26;;21267:9;21261:4;21257:20;21253:1;21242:9;21238:17;21231:47;21295:131;21421:4;21295:131;:::i;:::-;21287:139;;21185:248;;;:::o;21439:419::-;21605:4;21643:2;21632:9;21628:18;21620:26;;21692:9;21686:4;21682:20;21678:1;21667:9;21663:17;21656:47;21720:131;21846:4;21720:131;:::i;:::-;21712:139;;21610:248;;;:::o;21864:419::-;22030:4;22068:2;22057:9;22053:18;22045:26;;22117:9;22111:4;22107:20;22103:1;22092:9;22088:17;22081:47;22145:131;22271:4;22145:131;:::i;:::-;22137:139;;22035:248;;;:::o;22289:419::-;22455:4;22493:2;22482:9;22478:18;22470:26;;22542:9;22536:4;22532:20;22528:1;22517:9;22513:17;22506:47;22570:131;22696:4;22570:131;:::i;:::-;22562:139;;22460:248;;;:::o;22714:419::-;22880:4;22918:2;22907:9;22903:18;22895:26;;22967:9;22961:4;22957:20;22953:1;22942:9;22938:17;22931:47;22995:131;23121:4;22995:131;:::i;:::-;22987:139;;22885:248;;;:::o;23139:419::-;23305:4;23343:2;23332:9;23328:18;23320:26;;23392:9;23386:4;23382:20;23378:1;23367:9;23363:17;23356:47;23420:131;23546:4;23420:131;:::i;:::-;23412:139;;23310:248;;;:::o;23564:419::-;23730:4;23768:2;23757:9;23753:18;23745:26;;23817:9;23811:4;23807:20;23803:1;23792:9;23788:17;23781:47;23845:131;23971:4;23845:131;:::i;:::-;23837:139;;23735:248;;;:::o;23989:419::-;24155:4;24193:2;24182:9;24178:18;24170:26;;24242:9;24236:4;24232:20;24228:1;24217:9;24213:17;24206:47;24270:131;24396:4;24270:131;:::i;:::-;24262:139;;24160:248;;;:::o;24414:419::-;24580:4;24618:2;24607:9;24603:18;24595:26;;24667:9;24661:4;24657:20;24653:1;24642:9;24638:17;24631:47;24695:131;24821:4;24695:131;:::i;:::-;24687:139;;24585:248;;;:::o;24839:419::-;25005:4;25043:2;25032:9;25028:18;25020:26;;25092:9;25086:4;25082:20;25078:1;25067:9;25063:17;25056:47;25120:131;25246:4;25120:131;:::i;:::-;25112:139;;25010:248;;;:::o;25264:419::-;25430:4;25468:2;25457:9;25453:18;25445:26;;25517:9;25511:4;25507:20;25503:1;25492:9;25488:17;25481:47;25545:131;25671:4;25545:131;:::i;:::-;25537:139;;25435:248;;;:::o;25689:419::-;25855:4;25893:2;25882:9;25878:18;25870:26;;25942:9;25936:4;25932:20;25928:1;25917:9;25913:17;25906:47;25970:131;26096:4;25970:131;:::i;:::-;25962:139;;25860:248;;;:::o;26114:419::-;26280:4;26318:2;26307:9;26303:18;26295:26;;26367:9;26361:4;26357:20;26353:1;26342:9;26338:17;26331:47;26395:131;26521:4;26395:131;:::i;:::-;26387:139;;26285:248;;;:::o;26539:419::-;26705:4;26743:2;26732:9;26728:18;26720:26;;26792:9;26786:4;26782:20;26778:1;26767:9;26763:17;26756:47;26820:131;26946:4;26820:131;:::i;:::-;26812:139;;26710:248;;;:::o;26964:419::-;27130:4;27168:2;27157:9;27153:18;27145:26;;27217:9;27211:4;27207:20;27203:1;27192:9;27188:17;27181:47;27245:131;27371:4;27245:131;:::i;:::-;27237:139;;27135:248;;;:::o;27389:419::-;27555:4;27593:2;27582:9;27578:18;27570:26;;27642:9;27636:4;27632:20;27628:1;27617:9;27613:17;27606:47;27670:131;27796:4;27670:131;:::i;:::-;27662:139;;27560:248;;;:::o;27814:419::-;27980:4;28018:2;28007:9;28003:18;27995:26;;28067:9;28061:4;28057:20;28053:1;28042:9;28038:17;28031:47;28095:131;28221:4;28095:131;:::i;:::-;28087:139;;27985:248;;;:::o;28239:419::-;28405:4;28443:2;28432:9;28428:18;28420:26;;28492:9;28486:4;28482:20;28478:1;28467:9;28463:17;28456:47;28520:131;28646:4;28520:131;:::i;:::-;28512:139;;28410:248;;;:::o;28664:419::-;28830:4;28868:2;28857:9;28853:18;28845:26;;28917:9;28911:4;28907:20;28903:1;28892:9;28888:17;28881:47;28945:131;29071:4;28945:131;:::i;:::-;28937:139;;28835:248;;;:::o;29089:419::-;29255:4;29293:2;29282:9;29278:18;29270:26;;29342:9;29336:4;29332:20;29328:1;29317:9;29313:17;29306:47;29370:131;29496:4;29370:131;:::i;:::-;29362:139;;29260:248;;;:::o;29514:419::-;29680:4;29718:2;29707:9;29703:18;29695:26;;29767:9;29761:4;29757:20;29753:1;29742:9;29738:17;29731:47;29795:131;29921:4;29795:131;:::i;:::-;29787:139;;29685:248;;;:::o;29939:419::-;30105:4;30143:2;30132:9;30128:18;30120:26;;30192:9;30186:4;30182:20;30178:1;30167:9;30163:17;30156:47;30220:131;30346:4;30220:131;:::i;:::-;30212:139;;30110:248;;;:::o;30364:419::-;30530:4;30568:2;30557:9;30553:18;30545:26;;30617:9;30611:4;30607:20;30603:1;30592:9;30588:17;30581:47;30645:131;30771:4;30645:131;:::i;:::-;30637:139;;30535:248;;;:::o;30789:222::-;30882:4;30920:2;30909:9;30905:18;30897:26;;30933:71;31001:1;30990:9;30986:17;30977:6;30933:71;:::i;:::-;30887:124;;;;:::o;31017:129::-;31051:6;31078:20;;:::i;:::-;31068:30;;31107:33;31135:4;31127:6;31107:33;:::i;:::-;31058:88;;;:::o;31152:75::-;31185:6;31218:2;31212:9;31202:19;;31192:35;:::o;31233:307::-;31294:4;31384:18;31376:6;31373:30;31370:2;;;31406:18;;:::i;:::-;31370:2;31444:29;31466:6;31444:29;:::i;:::-;31436:37;;31528:4;31522;31518:15;31510:23;;31299:241;;;:::o;31546:308::-;31608:4;31698:18;31690:6;31687:30;31684:2;;;31720:18;;:::i;:::-;31684:2;31758:29;31780:6;31758:29;:::i;:::-;31750:37;;31842:4;31836;31832:15;31824:23;;31613:241;;;:::o;31860:132::-;31927:4;31950:3;31942:11;;31980:4;31975:3;31971:14;31963:22;;31932:60;;;:::o;31998:114::-;32065:6;32099:5;32093:12;32083:22;;32072:40;;;:::o;32118:98::-;32169:6;32203:5;32197:12;32187:22;;32176:40;;;:::o;32222:99::-;32274:6;32308:5;32302:12;32292:22;;32281:40;;;:::o;32327:113::-;32397:4;32429;32424:3;32420:14;32412:22;;32402:38;;;:::o;32446:184::-;32545:11;32579:6;32574:3;32567:19;32619:4;32614:3;32610:14;32595:29;;32557:73;;;;:::o;32636:168::-;32719:11;32753:6;32748:3;32741:19;32793:4;32788:3;32784:14;32769:29;;32731:73;;;;:::o;32810:169::-;32894:11;32928:6;32923:3;32916:19;32968:4;32963:3;32959:14;32944:29;;32906:73;;;;:::o;32985:148::-;33087:11;33124:3;33109:18;;33099:34;;;;:::o;33139:305::-;33179:3;33198:20;33216:1;33198:20;:::i;:::-;33193:25;;33232:20;33250:1;33232:20;:::i;:::-;33227:25;;33386:1;33318:66;33314:74;33311:1;33308:81;33305:2;;;33392:18;;:::i;:::-;33305:2;33436:1;33433;33429:9;33422:16;;33183:261;;;;:::o;33450:185::-;33490:1;33507:20;33525:1;33507:20;:::i;:::-;33502:25;;33541:20;33559:1;33541:20;:::i;:::-;33536:25;;33580:1;33570:2;;33585:18;;:::i;:::-;33570:2;33627:1;33624;33620:9;33615:14;;33492:143;;;;:::o;33641:348::-;33681:7;33704:20;33722:1;33704:20;:::i;:::-;33699:25;;33738:20;33756:1;33738:20;:::i;:::-;33733:25;;33926:1;33858:66;33854:74;33851:1;33848:81;33843:1;33836:9;33829:17;33825:105;33822:2;;;33933:18;;:::i;:::-;33822:2;33981:1;33978;33974:9;33963:20;;33689:300;;;;:::o;33995:191::-;34035:4;34055:20;34073:1;34055:20;:::i;:::-;34050:25;;34089:20;34107:1;34089:20;:::i;:::-;34084:25;;34128:1;34125;34122:8;34119:2;;;34133:18;;:::i;:::-;34119:2;34178:1;34175;34171:9;34163:17;;34040:146;;;;:::o;34192:96::-;34229:7;34258:24;34276:5;34258:24;:::i;:::-;34247:35;;34237:51;;;:::o;34294:90::-;34328:7;34371:5;34364:13;34357:21;34346:32;;34336:48;;;:::o;34390:149::-;34426:7;34466:66;34459:5;34455:78;34444:89;;34434:105;;;:::o;34545:126::-;34582:7;34622:42;34615:5;34611:54;34600:65;;34590:81;;;:::o;34677:77::-;34714:7;34743:5;34732:16;;34722:32;;;:::o;34760:154::-;34844:6;34839:3;34834;34821:30;34906:1;34897:6;34892:3;34888:16;34881:27;34811:103;;;:::o;34920:307::-;34988:1;34998:113;35012:6;35009:1;35006:13;34998:113;;;35097:1;35092:3;35088:11;35082:18;35078:1;35073:3;35069:11;35062:39;35034:2;35031:1;35027:10;35022:15;;34998:113;;;35129:6;35126:1;35123:13;35120:2;;;35209:1;35200:6;35195:3;35191:16;35184:27;35120:2;34969:258;;;;:::o;35233:320::-;35277:6;35314:1;35308:4;35304:12;35294:22;;35361:1;35355:4;35351:12;35382:18;35372:2;;35438:4;35430:6;35426:17;35416:27;;35372:2;35500;35492:6;35489:14;35469:18;35466:38;35463:2;;;35519:18;;:::i;:::-;35463:2;35284:269;;;;:::o;35559:281::-;35642:27;35664:4;35642:27;:::i;:::-;35634:6;35630:40;35772:6;35760:10;35757:22;35736:18;35724:10;35721:34;35718:62;35715:2;;;35783:18;;:::i;:::-;35715:2;35823:10;35819:2;35812:22;35602:238;;;:::o;35846:233::-;35885:3;35908:24;35926:5;35908:24;:::i;:::-;35899:33;;35954:66;35947:5;35944:77;35941:2;;;36024:18;;:::i;:::-;35941:2;36071:1;36064:5;36060:13;36053:20;;35889:190;;;:::o;36085:176::-;36117:1;36134:20;36152:1;36134:20;:::i;:::-;36129:25;;36168:20;36186:1;36168:20;:::i;:::-;36163:25;;36207:1;36197:2;;36212:18;;:::i;:::-;36197:2;36253:1;36250;36246:9;36241:14;;36119:142;;;;:::o;36267:180::-;36315:77;36312:1;36305:88;36412:4;36409:1;36402:15;36436:4;36433:1;36426:15;36453:180;36501:77;36498:1;36491:88;36598:4;36595:1;36588:15;36622:4;36619:1;36612:15;36639:180;36687:77;36684:1;36677:88;36784:4;36781:1;36774:15;36808:4;36805:1;36798:15;36825:180;36873:77;36870:1;36863:88;36970:4;36967:1;36960:15;36994:4;36991:1;36984:15;37011:102;37052:6;37103:2;37099:7;37094:2;37087:5;37083:14;37079:28;37069:38;;37059:54;;;:::o;37119:238::-;37259:34;37255:1;37247:6;37243:14;37236:58;37328:21;37323:2;37315:6;37311:15;37304:46;37225:132;:::o;37363:230::-;37503:34;37499:1;37491:6;37487:14;37480:58;37572:13;37567:2;37559:6;37555:15;37548:38;37469:124;:::o;37599:237::-;37739:34;37735:1;37727:6;37723:14;37716:58;37808:20;37803:2;37795:6;37791:15;37784:45;37705:131;:::o;37842:225::-;37982:34;37978:1;37970:6;37966:14;37959:58;38051:8;38046:2;38038:6;38034:15;38027:33;37948:119;:::o;38073:178::-;38213:30;38209:1;38201:6;38197:14;38190:54;38179:72;:::o;38257:223::-;38397:34;38393:1;38385:6;38381:14;38374:58;38466:6;38461:2;38453:6;38449:15;38442:31;38363:117;:::o;38486:175::-;38626:27;38622:1;38614:6;38610:14;38603:51;38592:69;:::o;38667:231::-;38807:34;38803:1;38795:6;38791:14;38784:58;38876:14;38871:2;38863:6;38859:15;38852:39;38773:125;:::o;38904:179::-;39044:31;39040:1;39032:6;39028:14;39021:55;39010:73;:::o;39089:243::-;39229:34;39225:1;39217:6;39213:14;39206:58;39298:26;39293:2;39285:6;39281:15;39274:51;39195:137;:::o;39338:229::-;39478:34;39474:1;39466:6;39462:14;39455:58;39547:12;39542:2;39534:6;39530:15;39523:37;39444:123;:::o;39573:228::-;39713:34;39709:1;39701:6;39697:14;39690:58;39782:11;39777:2;39769:6;39765:15;39758:36;39679:122;:::o;39807:179::-;39947:31;39943:1;39935:6;39931:14;39924:55;39913:73;:::o;39992:182::-;40132:34;40128:1;40120:6;40116:14;40109:58;40098:76;:::o;40180:182::-;40320:34;40316:1;40308:6;40304:14;40297:58;40286:76;:::o;40368:231::-;40508:34;40504:1;40496:6;40492:14;40485:58;40577:14;40572:2;40564:6;40560:15;40553:39;40474:125;:::o;40605:182::-;40745:34;40741:1;40733:6;40729:14;40722:58;40711:76;:::o;40793:228::-;40933:34;40929:1;40921:6;40917:14;40910:58;41002:11;40997:2;40989:6;40985:15;40978:36;40899:122;:::o;41027:234::-;41167:34;41163:1;41155:6;41151:14;41144:58;41236:17;41231:2;41223:6;41219:15;41212:42;41133:128;:::o;41267:220::-;41407:34;41403:1;41395:6;41391:14;41384:58;41476:3;41471:2;41463:6;41459:15;41452:28;41373:114;:::o;41493:182::-;41633:34;41629:1;41621:6;41617:14;41610:58;41599:76;:::o;41681:236::-;41821:34;41817:1;41809:6;41805:14;41798:58;41890:19;41885:2;41877:6;41873:15;41866:44;41787:130;:::o;41923:231::-;42063:34;42059:1;42051:6;42047:14;42040:58;42132:14;42127:2;42119:6;42115:15;42108:39;42029:125;:::o;42160:173::-;42300:25;42296:1;42288:6;42284:14;42277:49;42266:67;:::o;42339:182::-;42479:34;42475:1;42467:6;42463:14;42456:58;42445:76;:::o;42527:122::-;42600:24;42618:5;42600:24;:::i;:::-;42593:5;42590:35;42580:2;;42639:1;42636;42629:12;42580:2;42570:79;:::o;42655:116::-;42725:21;42740:5;42725:21;:::i;:::-;42718:5;42715:32;42705:2;;42761:1;42758;42751:12;42705:2;42695:76;:::o;42777:120::-;42849:23;42866:5;42849:23;:::i;:::-;42842:5;42839:34;42829:2;;42887:1;42884;42877:12;42829:2;42819:78;:::o;42903:122::-;42976:24;42994:5;42976:24;:::i;:::-;42969:5;42966:35;42956:2;;43015:1;43012;43005:12;42956:2;42946:79;:::o

Swarm Source

ipfs://806ddc4f0077f6a93b71bb7fa26372735d6d7f47a7b26b298882af42279b10ac
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.