ETH Price: $3,437.15 (+1.67%)
Gas: 2 Gwei

Token

Idamura (WAIFU)
 

Overview

Max Total Supply

4,244 WAIFU

Holders

2,392

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WAIFU
0x91a5334135e54dc4f2855a0f146f2ecd3c3730bd
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The project follows the adventure of merchant Oryain who wandered upon a sacred village, home of the 4,444 waifu villagers. Don’t let their beauty fool you as they are also fierce warriors. Each of them has a name and history that the NFT owners get to decide what th...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
IRamura

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-22
*/

// SPDX-License-Identifier: MIT
//         _ .-') _     ('-.     _   .-')                _  .-')     ('-.     
//         ( (  OO) )   ( OO ).-.( '.( OO )_             ( \( -O )   ( OO ).-. 
//   ,-.-') \     .'_   / . --. / ,--.   ,--.),--. ,--.   ,------.   / . --. / 
//   |  |OO),`'--..._)  | \-.  \  |   `.'   | |  | |  |   |   /`. '  | \-.  \  
//   |  |  \|  |  \  '.-'-'  |  | |         | |  | | .-') |  /  | |.-'-'  |  | 
//   |  |(_/|  |   ' | \| |_.'  | |  |'.'|  | |  |_|( OO )|  |_.' | \| |_.'  | 
//  ,|  |_.'|  |   / :  |  .-.  | |  |   |  | |  | | `-' /|  .  '.'  |  .-.  | 
// (_|  |   |  '--'  /  |  | |  | |  |   |  |('  '-'(_.-' |  |\  \   |  | |  | 
//   `--'   `-------'   `--' `--' `--'   `--'  `-----'    `--' '--'  `--' `--'

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(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 from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-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` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

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 generally not needed starting with Solidity 0.8, since 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 subtraction 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. 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;
        }
    }
}

// File: contracts/idamura.sol

pragma solidity ^0.8.0;








interface IUniswapV2Pair {
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
}


interface IVoidCell {
 
    function mint(address addr) external;
    function burn(uint256 tokenId) external;

}


contract IRamura is Ownable, ERC721Enumerable, Pausable {
    using Strings for uint256;
    using Strings for uint8;
    using SafeMath for uint256;

    address public treasuryAddress;
    address public whitelistContract = 0xE36979d52B449A09C845E7519F743101975f8cAf;
    string private baseURL = 'https://metadata.idamura.xyz/';
    uint256 constant public MAX_SUPPLY = 4444;
    uint256 constant public MAX_SOCIAL_MINT = 4244;
    uint256 private totalMint;
    uint256 public totalSocialMinted;
    uint256 public constant price = 0.04444 ether;
    uint256 public startTime;
    uint256 private halfADays = 43200;
    uint256 private baseTime = 1641016800;
    address public voidCell = address(0);
    address private pair = address(0);
    mapping(address => bool) public whitelistedVoid;
    mapping(address => bool) public isVoidCell;
    mapping(uint256 => string) traits;
    mapping(bytes32 => bool) traitsExists;
    mapping(uint8 => uint8) maxTraits;
    mapping(address => bool) _isClaimedVoidCell;
    mapping(address => bool) _isMint;
    mapping(uint256 => bool) public isTransformed;
    mapping(uint256 => mapping(address => bool)) public isVoidTransformed;
    modifier mintRole() {
        if(block.timestamp <= startTime.add(1 days)){
            require(whitelisted(msg.sender) && block.timestamp >= startTime , "Only whitelited can mint");
        }
        _;
    }

    modifier onlyWhitelisted() {
        require(whitelistedVoid[msg.sender], "Only whitelited can mint");
        _;
    }

    modifier validateData(uint8[6] calldata data) {
       for(uint8 i=0; i<6; i++){
        require(data[i]>0 && data[i] <= maxTraits[i+1],"Wrong data");
       }
        _;
    }

    modifier validateToken(address token) {
        require(isVoidCell[token], "Wrong Token");
        _;
    }

    constructor(
        address _pair
    ) ERC721("Idamura","WAIFU") {
        startTime = 1666425600;
        pair = _pair;
        maxTraits[1] = 11;
        maxTraits[2] = 14;
        maxTraits[3] = 14;
        maxTraits[4] = 4;
        maxTraits[5] = 7;
        maxTraits[6] = 15;
    }

    function freeMint() external mintRole {
        require(block.timestamp >= startTime.add(30 minutes),"Not avaiable for free mint");
        require(totalSocialMinted < MAX_SOCIAL_MINT && !_isMint[msg.sender], "Full NFT or Have mint");
        uint8[6] memory _traits = _getRandom();
        string memory datastring;
        for(uint8 i=0; i<6; i++){
            datastring = string(abi.encodePacked(datastring,"/",_traits[i].toString()));
        }
        totalSocialMinted++;
        traitsExists[keccak256(abi.encodePacked(datastring))] = true;
        traits[totalSocialMinted] = datastring;
        _safeMint(msg.sender, totalSocialMinted);
        _isMint[msg.sender] = true;
    }

    function buildAWaifu(uint8[6] calldata data) external payable mintRole validateData(data){
        require(msg.value == price, "Not enought value");
        require(totalSocialMinted < MAX_SOCIAL_MINT && !_isMint[msg.sender], "Full NFT or Have mint");
        string memory datastring;
        for(uint8 i=0; i<6; i++){
            datastring = string(abi.encodePacked(datastring,"/",data[i].toString()));
        }
        require(!traitsExists[keccak256(abi.encodePacked(datastring))],"Traits Exists");
        traitsExists[keccak256(abi.encodePacked(datastring))] = true;
        totalSocialMinted++;
        _safeMint(msg.sender, totalSocialMinted);
        traits[totalSocialMinted] = datastring;
        _isMint[msg.sender] = true;
    }

    function mintTreasury(uint256 amount) external onlyOwner {
        require(totalMint.add(amount) < MAX_SUPPLY && MAX_SOCIAL_MINT.add(amount) <= MAX_SUPPLY);
        if(totalMint == 0){
            totalMint = MAX_SOCIAL_MINT;
        }
        for(uint i = 1; i <= amount; i++) {
            uint8[6] memory _traits = _getRandom();
            string memory datastring;
            for(uint8 j=0; j<6; j++){
                datastring = string(abi.encodePacked(datastring,"/",_traits[j].toString()));
            }
            traitsExists[keccak256(abi.encodePacked(datastring))] = true;
            traits[totalMint.add(i)] = datastring;
            _safeMint(msg.sender, totalMint.add(i));
        }
        totalMint = totalMint.add(amount);
    }

    function checkTraits(uint8[6] calldata _traits) external view returns(bool){
        return _compareTraits(_traits);
    }

    function collect() external onlyWhitelisted {
        require(!_isClaimedVoidCell[msg.sender],"Have been claimed voidCell");
        IVoidCell(voidCell).mint(msg.sender);
        _isClaimedVoidCell[msg.sender] = true;
    }

    function transform(uint256 tokenId) external {
        require(ERC721.ownerOf(tokenId) == msg.sender, "Only owner upgrade");
        require(!isTransformed[tokenId], "TokenID has been upgraded");
        uint256 token1 = ERC721Enumerable(voidCell).tokenOfOwnerByIndex(msg.sender, 0);
        IVoidCell(voidCell).burn(token1);
        isTransformed[tokenId] = true;    
    }

    function transform(address token, uint256 tokenId) external validateToken(token) {
        require(ERC721.ownerOf(tokenId) == msg.sender, "Only owner upgrade");
        require(!isVoidTransformed[tokenId][token], "TokenID has been upgraded");
        require(ERC721(token).isApprovedForAll(msg.sender, address(this)),"Not Set Approve");
        ERC721(token).transferFrom(msg.sender, treasuryAddress, ERC721Enumerable(token).tokenOfOwnerByIndex(msg.sender, 0));
        isVoidTransformed[tokenId][token] = true;    
    }

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

    function setBaseURI(string memory _uri) external onlyOwner {
        baseURL = _uri;
    }

    function _getRandom() internal view returns(uint8[6] memory result) {
        (uint256 reserve0, uint256 reserve1, ) = IUniswapV2Pair(pair).getReserves();
        uint256 number = uint256(keccak256(abi.encodePacked(block.timestamp, reserve0, reserve1)));
        bool isDone;
        uint256 increaseNumber = 1;
        while(!isDone){
            for(uint8 i =0; i<6; i++){
                result[i] = uint8(number.mod((maxTraits[i+1])) +1);
                number = number.div(maxTraits[i+1]);
            }
            if(number == 0) {
                 number = uint256(keccak256(abi.encodePacked(block.timestamp, reserve0.add(increaseNumber), reserve1)));
                 increaseNumber++;
            }

            if(!_compareTraits(result)){
                isDone = true;
            }
        }
        return result;
    }


    function _compareTraits(uint8[6] memory _traits) internal view returns(bool) {
        string memory datastring;
        for(uint8 i=0; i<6; i++){
            datastring = string(abi.encodePacked(datastring,"/",_traits[i].toString()));
        }

        return traitsExists[keccak256(abi.encodePacked(datastring))];
    }
    
    function tokenURI(uint256 tokenId)
    public
    view
    override
    returns (string memory)
    {
        if(isTransformed[tokenId]){
            if(block.timestamp.sub(baseTime).div(halfADays).mod(2) == 0){
                return string(abi.encodePacked(_baseURI(), tokenId.toString(), "/0", traits[tokenId]));
            } else {
                return string(abi.encodePacked(_baseURI(), tokenId.toString(), "/1", traits[tokenId]));
            }
        } else {
            return string(abi.encodePacked(_baseURI(), tokenId.toString(), "/0",  traits[tokenId]));
        }
    }

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

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._afterTokenTransfer(from,to,tokenId);
    }

    function pause() external onlyOwner whenNotPaused {
        _pause();
    }

    function unpause() external onlyOwner whenPaused {
        _unpause();
    }

    function setStartTime(uint256 time) external onlyOwner {
        startTime = time;
    }
    
    function addWhitelisteVoid(address[] calldata list) external onlyOwner {
        for(uint i =0; i < list.length ; i ++) {
            whitelistedVoid[list[i]] = true;
        }
    }

    function setVoidCell(address _voidCell, bool isBurn) external onlyOwner {
        if(isBurn){
            voidCell = _voidCell;
        } else {
            isVoidCell[_voidCell] = true;
        }
    }

    function setTreasuryAddress(address _treasuryAddress) external onlyOwner {
        require(_treasuryAddress != address(0), "Not accept zero address");
        treasuryAddress = _treasuryAddress;
    }

    function isMint(address addr) external view returns(bool) {
        return _isMint[addr];
    }

    function whitelisted(address addr) public view returns(bool) {
        return IRamura(whitelistContract).whitelisted(addr);
    }

    function takeFee(address token, uint256 amount) external onlyOwner {
        if(token == address(0)){
            if(amount <= address(this).balance){
                payable(owner()).transfer(amount);
            } else {
                payable(owner()).transfer(address(this).balance);
            }
        }  else {
            IERC20(token).transfer(owner(), amount);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SOCIAL_MINT","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":[{"internalType":"address[]","name":"list","type":"address[]"}],"name":"addWhitelisteVoid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8[6]","name":"data","type":"uint8[6]"}],"name":"buildAWaifu","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8[6]","name":"_traits","type":"uint8[6]"}],"name":"checkTraits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMint","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":"address","name":"addr","type":"address"}],"name":"isMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isTransformed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isVoidCell","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"isVoidTransformed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasuryAddress","type":"address"}],"name":"setTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_voidCell","type":"address"},{"internalType":"bool","name":"isBurn","type":"bool"}],"name":"setVoidCell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","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":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"takeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSocialMinted","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":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transform","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transform","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"voidCell","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedVoid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

600c80546001600160a01b03191673e36979d52b449a09c845e7519f743101975f8caf17905560c0604052601d60808190527f68747470733a2f2f6d657461646174612e6964616d7572612e78797a2f00000060a09081526200006691600d9190620002e1565b5061a8c06011556361cfede0601255601380546001600160a01b03199081169091556014805490911690553480156200009e57600080fd5b5060405162003c2838038062003c28833981016040819052620000c19162000387565b604051806040016040528060078152602001664964616d75726160c81b81525060405180604001604052806005815260200164574149465560d81b81525062000119620001136200028d60201b60201c565b62000291565b81516200012e906001906020850190620002e1565b50805162000144906002906020840190620002e1565b5050600b805460ff199081168255636353a300601055601480546001600160a01b039095166001600160a01b03199095169490941790935560196020527ffc941c3961fb6541da34150022cddf959da0fb2353866a6bfbd249c2da092914805484169091179055507f6f678ad17c55bce407239525f4bf7f1fe99197d3eb69bfdd9a0db84a9a11b58180548216600e9081179091557f3e323a6e0522b016fa22111dfed945f89456f9f44f69eac00209d92607a5b9408054831690911790557f77e53f5d8115e854915e54bd6f2fd46db8b881fe7106ff61c7d2a90a39a8983b8054821660041790557fef6a8f673ca5476c495d0ab5aa04e3cd3d07628b2ff5d0e5202b94c5c6f13bdc80548216600717905560066000527f4ca1d5f267eb2abf27b670f18ee76f6c205873a2168eb2e690c8c4babcc357dd8054909116600f179055620003f6565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002ef90620003b9565b90600052602060002090601f0160209004810192826200031357600085556200035e565b82601f106200032e57805160ff19168380011785556200035e565b828001600101855582156200035e579182015b828111156200035e57825182559160200191906001019062000341565b506200036c92915062000370565b5090565b5b808211156200036c576000815560010162000371565b6000602082840312156200039a57600080fd5b81516001600160a01b0381168114620003b257600080fd5b9392505050565b600181811c90821680620003ce57607f821691505b60208210811415620003f057634e487b7160e01b600052602260045260246000fd5b50919050565b61382280620004066000396000f3fe6080604052600436106102ae5760003560e01c806377df3f6d11610175578063b88d4fde116100dc578063e17b35ed11610095578063e985e9c51161006f578063e985e9c514610866578063eb9047bb146108af578063f1b3d9ac146108cf578063f2fde38b146108ef57600080fd5b8063e17b35ed14610802578063e52253811461083b578063e82d2d6d1461085057600080fd5b8063b88d4fde1461072d578063bc64f38a1461074d578063c5f956af1461076d578063c87b56dd14610792578063d936547e146107b2578063df557556146107d257600080fd5b806395d89b411161012e57806395d89b411461067a5780639b1eee0a1461068f578063a035b1fe146106bf578063a22cb465146106da578063b3ed9a24146106fa578063b439ac741461070d57600080fd5b806377df3f6d146105db57806378e97925146105f15780637ec97632146106075780638456cb591461062757806384900b041461063c5780638da5cb5b1461065c57600080fd5b806342842e0e116102195780635c975abb116101d25780635c975abb1461051e5780636352211e146105365780636605bfda1461055657806370a0823114610576578063715018a61461059657806376894c4e146105ab57600080fd5b806342842e0e1461044e5780634d69c47f1461046e5780634f6ccce7146104a957806355f804b3146104c95780635713874d146104e95780635b70ea9f1461050957600080fd5b806323b872dd1161026b57806323b872dd146103a35780632f745c59146103c357806332cb6b0c146103e35780633c273225146103f95780633e0a322d146104195780633f4ba83a1461043957600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063095ea7b31461034257806318160ddd146103645780631d759aae14610383575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004613236565b61090f565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd61093a565b6040516102df9190613558565b34801561031657600080fd5b5061032a610325366004613309565b6109cc565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d366004613152565b6109f3565b005b34801561037057600080fd5b506009545b6040519081526020016102df565b34801561038f57600080fd5b5061036261039e366004613152565b610b0e565b3480156103af57600080fd5b506103626103be366004613063565b610c43565b3480156103cf57600080fd5b506103756103de366004613152565b610c74565b3480156103ef57600080fd5b5061037561115c81565b34801561040557600080fd5b5061036261041436600461311b565b610d0a565b34801561042557600080fd5b50610362610434366004613309565b610d60565b34801561044557600080fd5b50610362610d6d565b34801561045a57600080fd5b50610362610469366004613063565b610d87565b34801561047a57600080fd5b506102d361048936600461333b565b601d60209081526000928352604080842090915290825290205460ff1681565b3480156104b557600080fd5b506103756104c4366004613309565b610da2565b3480156104d557600080fd5b506103626104e4366004613270565b610e35565b3480156104f557600080fd5b50610362610504366004613152565b610e50565b34801561051557600080fd5b50610362611154565b34801561052a57600080fd5b50600b5460ff166102d3565b34801561054257600080fd5b5061032a610551366004613309565b611384565b34801561056257600080fd5b50610362610571366004613015565b6113e4565b34801561058257600080fd5b50610375610591366004613015565b61146a565b3480156105a257600080fd5b506103626114f0565b3480156105b757600080fd5b506102d36105c6366004613015565b60166020526000908152604090205460ff1681565b3480156105e757600080fd5b5061037561109481565b3480156105fd57600080fd5b5061037560105481565b34801561061357600080fd5b5060135461032a906001600160a01b031681565b34801561063357600080fd5b50610362611502565b34801561064857600080fd5b50600c5461032a906001600160a01b031681565b34801561066857600080fd5b506000546001600160a01b031661032a565b34801561068657600080fd5b506102fd61151a565b34801561069b57600080fd5b506102d36106aa366004613015565b60156020526000908152604090205460ff1681565b3480156106cb57600080fd5b50610375669de1f1cdd1800081565b3480156106e657600080fd5b506103626106f536600461311b565b611529565b6103626107083660046131f1565b611534565b34801561071957600080fd5b50610362610728366004613309565b6118b9565b34801561073957600080fd5b5061036261074836600461309f565b611a4e565b34801561075957600080fd5b5061036261076836600461317c565b611a86565b34801561077957600080fd5b50600b5461032a9061010090046001600160a01b031681565b34801561079e57600080fd5b506102fd6107ad366004613309565b611b00565b3480156107be57600080fd5b506102d36107cd366004613015565b611bd1565b3480156107de57600080fd5b506102d36107ed366004613309565b601c6020526000908152604090205460ff1681565b34801561080e57600080fd5b506102d361081d366004613015565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561084757600080fd5b50610362611c4f565b34801561085c57600080fd5b50610375600f5481565b34801561087257600080fd5b506102d3610881366004613030565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108bb57600080fd5b506103626108ca366004613309565b611d57565b3480156108db57600080fd5b506102d36108ea3660046131f1565b611f05565b3480156108fb57600080fd5b5061036261090a366004613015565b611f39565b60006001600160e01b0319821663780e9d6360e01b1480610934575061093482611fb2565b92915050565b606060018054610949906136d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610975906136d6565b80156109c25780601f10610997576101008083540402835291602001916109c2565b820191906000526020600020905b8154815290600101906020018083116109a557829003601f168201915b5050505050905090565b60006109d782612002565b506000908152600560205260409020546001600160a01b031690565b60006109fe82611384565b9050806001600160a01b0316836001600160a01b03161415610a715760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610a8d5750610a8d8133610881565b610aff5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610a68565b610b098383612061565b505050565b610b166120cf565b6001600160a01b038216610b9e57478111610b6457600080546040516001600160a01b039091169183156108fc02918491818181858888f19350505050158015610b09573d6000803e3d6000fd5b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610b09573d6000803e3d6000fd5b816001600160a01b031663a9059cbb610bbf6000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b158015610c0757600080fd5b505af1158015610c1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b099190613219565b5050565b610c4d3382612129565b610c695760405162461bcd60e51b8152600401610a68906135f4565b610b098383836121a8565b6000610c7f8361146a565b8210610ce15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a68565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610d126120cf565b8015610d3957601380546001600160a01b0384166001600160a01b03199091161790555050565b6001600160a01b0382166000908152601660205260409020805460ff191660011790555050565b610d686120cf565b601055565b610d756120cf565b610d7d61234f565b610d85612398565b565b610b0983838360405180602001604052806000815250611a4e565b6000610dad60095490565b8210610e105760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a68565b60098281548110610e2357610e2361379c565b90600052602060002001549050919050565b610e3d6120cf565b8051610c3f90600d906020840190612eba565b6001600160a01b038216600090815260166020526040902054829060ff16610ea85760405162461bcd60e51b815260206004820152600b60248201526a2bb937b733902a37b5b2b760a91b6044820152606401610a68565b33610eb283611384565b6001600160a01b031614610efd5760405162461bcd60e51b81526020600482015260126024820152714f6e6c79206f776e6572207570677261646560701b6044820152606401610a68565b6000828152601d602090815260408083206001600160a01b038716845290915290205460ff1615610f6c5760405162461bcd60e51b8152602060048201526019602482015278151bdad95b9251081a185cc81899595b881d5c19dc98591959603a1b6044820152606401610a68565b60405163e985e9c560e01b81523360048201523060248201526001600160a01b0384169063e985e9c59060440160206040518083038186803b158015610fb157600080fd5b505afa158015610fc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe99190613219565b6110275760405162461bcd60e51b815260206004820152600f60248201526e4e6f742053657420417070726f766560881b6044820152606401610a68565b600b54604051632f745c5960e01b81523360048201819052600060248301526001600160a01b03868116936323b872dd93610100909104909116908490632f745c599060440160206040518083038186803b15801561108557600080fd5b505afa158015611099573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110bd9190613322565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561110c57600080fd5b505af1158015611120573d6000803e3d6000fd5b50505060009283525050601d602090815260408083206001600160a01b03909416835292905220805460ff19166001179055565b60105461116490620151806123ea565b421161119d5761117333611bd1565b801561118157506010544210155b61119d5760405162461bcd60e51b8152600401610a68906135bd565b6010546111ac906107086123ea565b4210156111fb5760405162461bcd60e51b815260206004820152601a60248201527f4e6f74206176616961626c6520666f722066726565206d696e740000000000006044820152606401610a68565b611094600f5410801561121e5750336000908152601b602052604090205460ff16155b6112625760405162461bcd60e51b8152602060048201526015602482015274119d5b1b08139195081bdc8812185d99481b5a5b9d605a1b6044820152606401610a68565b600061126c6123fd565b9050606060005b60068160ff1610156112da57816112a5848360ff16600681106112985761129861379c565b602002015160ff16612612565b6040516020016112b69291906134e9565b604051602081830303815290604052915080806112d290613726565b915050611273565b50600f80549060006112eb8361370b565b9190505550600160186000836040516020016113079190613447565b60408051808303601f1901815291815281516020928301208352828201939093529082016000908120805460ff191694151594909417909355600f548352601781529120825161135992840190612eba565b5061136633600f54612710565b5050336000908152601b60205260409020805460ff19166001179055565b6000818152600360205260408120546001600160a01b0316806109345760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a68565b6113ec6120cf565b6001600160a01b0381166114425760405162461bcd60e51b815260206004820152601760248201527f4e6f7420616363657074207a65726f20616464726573730000000000000000006044820152606401610a68565b600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60006001600160a01b0382166114d45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610a68565b506001600160a01b031660009081526004602052604090205490565b6114f86120cf565b610d85600061272a565b61150a6120cf565b61151261277a565b610d856127c0565b606060028054610949906136d6565b610c3f3383836127fd565b60105461154490620151806123ea565b421161157d5761155333611bd1565b801561156157506010544210155b61157d5760405162461bcd60e51b8152600401610a68906135bd565b8060005b60068160ff161015611662576000828260ff16600681106115a4576115a461379c565b6020020160208101906115b7919061335e565b60ff161180156116175750601960006115d183600161365a565b60ff908116825260208201929092526040016000205481169083908316600681106115fe576115fe61379c565b602002016020810190611611919061335e565b60ff1611155b6116505760405162461bcd60e51b815260206004820152600a60248201526957726f6e67206461746160b01b6044820152606401610a68565b8061165a81613726565b915050611581565b50669de1f1cdd1800034146116ad5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f756768742076616c756560781b6044820152606401610a68565b611094600f541080156116d05750336000908152601b602052604090205460ff16155b6117145760405162461bcd60e51b8152602060048201526015602482015274119d5b1b08139195081bdc8812185d99481b5a5b9d605a1b6044820152606401610a68565b606060005b60068160ff16101561178e5781611759858360ff166006811061173e5761173e61379c565b602002016020810190611751919061335e565b60ff16612612565b60405160200161176a9291906134e9565b6040516020818303038152906040529150808061178690613726565b915050611719565b5060186000826040516020016117a49190613447565b60408051601f198184030181529181528151602092830120835290820192909252016000205460ff161561180a5760405162461bcd60e51b815260206004820152600d60248201526c5472616974732045786973747360981b6044820152606401610a68565b600160186000836040516020016118219190613447565b60408051808303601f190181529181528151602092830120835290820192909252016000908120805460ff191692151592909217909155600f8054916118668361370b565b919050555061187733600f54612710565b600f546000908152601760209081526040909120825161189992840190612eba565b5050336000908152601b60205260409020805460ff191660011790555050565b6118c16120cf565b600e5461115c906118d290836123ea565b1080156118ec575061115c6118e9611094836123ea565b11155b6118f557600080fd5b600e5461190357611094600e555b60015b818111611a3a5760006119176123fd565b9050606060005b60068160ff1610156119785781611943848360ff16600681106112985761129861379c565b6040516020016119549291906134e9565b6040516020818303038152906040529150808061197090613726565b91505061191e565b50600160186000836040516020016119909190613447565b60405160208183030381529060405280519060200120815260200190815260200160002060006101000a81548160ff02191690831515021790555080601760006119e586600e546123ea90919063ffffffff16565b81526020019081526020016000209080519060200190611a06929190612eba565b50611a2533611a2085600e546123ea90919063ffffffff16565b612710565b50508080611a329061370b565b915050611906565b50600e54611a4890826123ea565b600e5550565b611a583383612129565b611a745760405162461bcd60e51b8152600401610a68906135f4565b611a80848484846128cc565b50505050565b611a8e6120cf565b60005b81811015610b0957600160156000858585818110611ab157611ab161379c565b9050602002016020810190611ac69190613015565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611af88161370b565b915050611a91565b6000818152601c602052604090205460609060ff1615611bc457611b466002611b40601154611b3a601254426128ff90919063ffffffff16565b9061290b565b90612917565b611b9257611b52612923565b611b5b83612612565b6000848152601760209081526040918290209151611b7c94939291016134ab565b6040516020818303038152906040529050919050565b611b9a612923565b611ba383612612565b6000848152601760209081526040918290209151611b7c9493929101613463565b611b52612923565b919050565b600c54604051636c9b2a3f60e11b81526001600160a01b038381166004830152600092169063d936547e9060240160206040518083038186803b158015611c1757600080fd5b505afa158015611c2b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109349190613219565b3360009081526015602052604090205460ff16611c7e5760405162461bcd60e51b8152600401610a68906135bd565b336000908152601a602052604090205460ff1615611cde5760405162461bcd60e51b815260206004820152601a60248201527f48617665206265656e20636c61696d656420766f696443656c6c0000000000006044820152606401610a68565b6013546040516335313c2160e11b81523360048201526001600160a01b0390911690636a62784290602401600060405180830381600087803b158015611d2357600080fd5b505af1158015611d37573d6000803e3d6000fd5b5050336000908152601a60205260409020805460ff191660011790555050565b33611d6182611384565b6001600160a01b031614611dac5760405162461bcd60e51b81526020600482015260126024820152714f6e6c79206f776e6572207570677261646560701b6044820152606401610a68565b6000818152601c602052604090205460ff1615611e075760405162461bcd60e51b8152602060048201526019602482015278151bdad95b9251081a185cc81899595b881d5c19dc98591959603a1b6044820152606401610a68565b601354604051632f745c5960e01b8152336004820152600060248201819052916001600160a01b031690632f745c599060440160206040518083038186803b158015611e5257600080fd5b505afa158015611e66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e8a9190613322565b601354604051630852cd8d60e31b8152600481018390529192506001600160a01b0316906342966c6890602401600060405180830381600087803b158015611ed157600080fd5b505af1158015611ee5573d6000803e3d6000fd5b50505060009283525050601c60205260409020805460ff19166001179055565b6000610934826006806020026040519081016040528092919082600660200280828437600092019190915250612932915050565b611f416120cf565b6001600160a01b038116611fa65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a68565b611faf8161272a565b50565b60006001600160e01b031982166380ac58cd60e01b1480611fe357506001600160e01b03198216635b5e139f60e01b145b8061093457506301ffc9a760e01b6001600160e01b0319831614610934565b6000818152600360205260409020546001600160a01b0316611faf5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a68565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061209682611384565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000546001600160a01b03163314610d855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a68565b60008061213583611384565b9050806001600160a01b0316846001600160a01b0316148061217c57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b806121a05750836001600160a01b0316612195846109cc565b6001600160a01b0316145b949350505050565b826001600160a01b03166121bb82611384565b6001600160a01b03161461221f5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a68565b6001600160a01b0382166122815760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a68565b61228c8383836129d9565b612297600082612061565b6001600160a01b03831660009081526004602052604081208054600192906122c0908490613693565b90915550506001600160a01b03821660009081526004602052604081208054600192906122ee908490613642565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5460ff16610d855760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a68565b6123a061234f565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60006123f68284613642565b9392505050565b612405612f3e565b600080601460009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561245657600080fd5b505afa15801561246a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061248e91906132b9565b506001600160701b031691506001600160701b0316915060004283836040516020016124cd939291909283526020830191909152604082015260600190565b60408051601f1981840301815291905280516020909101209050600060015b8161260a5760005b60068160ff1610156125a1576125306019600061251284600161365a565b60ff9081168252602082019290925260400160002054869116612917565b61253b906001613642565b878260ff16600681106125505761255061379c565b60ff909216602092909202015261258d6019600061256f84600161365a565b60ff908116825260208201929092526040016000205486911661290b565b93508061259981613726565b9150506124f4565b50826125f357426125b286836123ea565b6040805160208101939093528201526060810185905260800160408051601f1981840301815291905280516020909101209250806125ef8161370b565b9150505b6125fc86612932565b61260557600191505b6124ec565b505050505090565b6060816126365750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612660578061264a8161370b565b91506126599050600a8361367f565b915061263a565b60008167ffffffffffffffff81111561267b5761267b6137b2565b6040519080825280601f01601f1916602001820160405280156126a5576020820181803683370190505b5090505b84156121a0576126ba600183613693565b91506126c7600a86613746565b6126d2906030613642565b60f81b8183815181106126e7576126e761379c565b60200101906001600160f81b031916908160001a905350612709600a8661367f565b94506126a9565b610c3f8282604051806020016040528060008152506129e4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600b5460ff1615610d855760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610a68565b6127c861277a565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123cd3390565b816001600160a01b0316836001600160a01b0316141561285f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a68565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6128d78484846121a8565b6128e384848484612a17565b611a805760405162461bcd60e51b8152600401610a689061356b565b60006123f68284613693565b60006123f6828461367f565b60006123f68284613746565b6060600d8054610949906136d6565b6000606060005b60068160ff161015612993578161295e858360ff16600681106112985761129861379c565b60405160200161296f9291906134e9565b6040516020818303038152906040529150808061298b90613726565b915050612939565b5060186000826040516020016129a99190613447565b60408051601f198184030181529181528151602092830120835290820192909252016000205460ff169392505050565b610b09838383612b24565b6129ee8383612bdc565b6129fb6000848484612a17565b610b095760405162461bcd60e51b8152600401610a689061356b565b60006001600160a01b0384163b15612b1957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a5b903390899088908890600401613525565b602060405180830381600087803b158015612a7557600080fd5b505af1925050508015612aa5575060408051601f3d908101601f19168201909252612aa291810190613253565b60015b612aff573d808015612ad3576040519150601f19603f3d011682016040523d82523d6000602084013e612ad8565b606091505b508051612af75760405162461bcd60e51b8152600401610a689061356b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121a0565b506001949350505050565b6001600160a01b038316612b7f57612b7a81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612ba2565b816001600160a01b0316836001600160a01b031614612ba257612ba28382612d2a565b6001600160a01b038216612bb957610b0981612dc7565b826001600160a01b0316826001600160a01b031614610b0957610b098282612e76565b6001600160a01b038216612c325760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a68565b6000818152600360205260409020546001600160a01b031615612c975760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a68565b612ca3600083836129d9565b6001600160a01b0382166000908152600460205260408120805460019290612ccc908490613642565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612d378461146a565b612d419190613693565b600083815260086020526040902054909150808214612d94576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612dd990600190613693565b6000838152600a602052604081205460098054939450909284908110612e0157612e0161379c565b906000526020600020015490508060098381548110612e2257612e2261379c565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612e5a57612e5a613786565b6001900381819060005260206000200160009055905550505050565b6000612e818361146a565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054612ec6906136d6565b90600052602060002090601f016020900481019282612ee85760008555612f2e565b82601f10612f0157805160ff1916838001178555612f2e565b82800160010185558215612f2e579182015b82811115612f2e578251825591602001919060010190612f13565b50612f3a929150612f5c565b5090565b6040518060c001604052806006906020820280368337509192915050565b5b80821115612f3a5760008155600101612f5d565b600067ffffffffffffffff80841115612f8c57612f8c6137b2565b604051601f8501601f19908116603f01168101908282118183101715612fb457612fb46137b2565b81604052809350858152868686011115612fcd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611bcc57600080fd5b80516001600160701b0381168114611bcc57600080fd5b60006020828403121561302757600080fd5b6123f682612fe7565b6000806040838503121561304357600080fd5b61304c83612fe7565b915061305a60208401612fe7565b90509250929050565b60008060006060848603121561307857600080fd5b61308184612fe7565b925061308f60208501612fe7565b9150604084013590509250925092565b600080600080608085870312156130b557600080fd5b6130be85612fe7565b93506130cc60208601612fe7565b925060408501359150606085013567ffffffffffffffff8111156130ef57600080fd5b8501601f8101871361310057600080fd5b61310f87823560208401612f71565b91505092959194509250565b6000806040838503121561312e57600080fd5b61313783612fe7565b91506020830135613147816137c8565b809150509250929050565b6000806040838503121561316557600080fd5b61316e83612fe7565b946020939093013593505050565b6000806020838503121561318f57600080fd5b823567ffffffffffffffff808211156131a757600080fd5b818501915085601f8301126131bb57600080fd5b8135818111156131ca57600080fd5b8660208260051b85010111156131df57600080fd5b60209290920196919550909350505050565b600060c0828403121561320357600080fd5b8260c08301111561321357600080fd5b50919050565b60006020828403121561322b57600080fd5b81516123f6816137c8565b60006020828403121561324857600080fd5b81356123f6816137d6565b60006020828403121561326557600080fd5b81516123f6816137d6565b60006020828403121561328257600080fd5b813567ffffffffffffffff81111561329957600080fd5b8201601f810184136132aa57600080fd5b6121a084823560208401612f71565b6000806000606084860312156132ce57600080fd5b6132d784612ffe565b92506132e560208501612ffe565b9150604084015163ffffffff811681146132fe57600080fd5b809150509250925092565b60006020828403121561331b57600080fd5b5035919050565b60006020828403121561333457600080fd5b5051919050565b6000806040838503121561334e57600080fd5b8235915061305a60208401612fe7565b60006020828403121561337057600080fd5b813560ff811681146123f657600080fd5b600081518084526133998160208601602086016136aa565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806133c757607f831692505b60208084108214156133e957634e487b7160e01b600052602260045260246000fd5b8180156133fd576001811461340e5761343b565b60ff1986168952848901965061343b565b60008881526020902060005b868110156134335781548b82015290850190830161341a565b505084890196505b50505050505092915050565b600082516134598184602087016136aa565b9190910192915050565b600084516134758184602089016136aa565b8451908301906134898183602089016136aa565b612f3160f01b91019081526134a160028201856133ad565b9695505050505050565b600084516134bd8184602089016136aa565b8451908301906134d18183602089016136aa565b6102f360f41b91019081526134a160028201856133ad565b600083516134fb8184602088016136aa565b602f60f81b90830190815283516135198160018401602088016136aa565b01600101949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134a190830184613381565b6020815260006123f66020830184613381565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526018908201527f4f6e6c792077686974656c697465642063616e206d696e740000000000000000604082015260600190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b600082198211156136555761365561375a565b500190565b600060ff821660ff84168060ff038211156136775761367761375a565b019392505050565b60008261368e5761368e613770565b500490565b6000828210156136a5576136a561375a565b500390565b60005b838110156136c55781810151838201526020016136ad565b83811115611a805750506000910152565b600181811c908216806136ea57607f821691505b6020821081141561321357634e487b7160e01b600052602260045260246000fd5b600060001982141561371f5761371f61375a565b5060010190565b600060ff821660ff81141561373d5761373d61375a565b60010192915050565b60008261375557613755613770565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114611faf57600080fd5b6001600160e01b031981168114611faf57600080fdfea264697066735822122009434b63e63e7354b2005fd748b3b83b5d772dff2b2f6f69a9998f4e5608c7f064736f6c634300080700330000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f1852

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c806377df3f6d11610175578063b88d4fde116100dc578063e17b35ed11610095578063e985e9c51161006f578063e985e9c514610866578063eb9047bb146108af578063f1b3d9ac146108cf578063f2fde38b146108ef57600080fd5b8063e17b35ed14610802578063e52253811461083b578063e82d2d6d1461085057600080fd5b8063b88d4fde1461072d578063bc64f38a1461074d578063c5f956af1461076d578063c87b56dd14610792578063d936547e146107b2578063df557556146107d257600080fd5b806395d89b411161012e57806395d89b411461067a5780639b1eee0a1461068f578063a035b1fe146106bf578063a22cb465146106da578063b3ed9a24146106fa578063b439ac741461070d57600080fd5b806377df3f6d146105db57806378e97925146105f15780637ec97632146106075780638456cb591461062757806384900b041461063c5780638da5cb5b1461065c57600080fd5b806342842e0e116102195780635c975abb116101d25780635c975abb1461051e5780636352211e146105365780636605bfda1461055657806370a0823114610576578063715018a61461059657806376894c4e146105ab57600080fd5b806342842e0e1461044e5780634d69c47f1461046e5780634f6ccce7146104a957806355f804b3146104c95780635713874d146104e95780635b70ea9f1461050957600080fd5b806323b872dd1161026b57806323b872dd146103a35780632f745c59146103c357806332cb6b0c146103e35780633c273225146103f95780633e0a322d146104195780633f4ba83a1461043957600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063095ea7b31461034257806318160ddd146103645780631d759aae14610383575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004613236565b61090f565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd61093a565b6040516102df9190613558565b34801561031657600080fd5b5061032a610325366004613309565b6109cc565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d366004613152565b6109f3565b005b34801561037057600080fd5b506009545b6040519081526020016102df565b34801561038f57600080fd5b5061036261039e366004613152565b610b0e565b3480156103af57600080fd5b506103626103be366004613063565b610c43565b3480156103cf57600080fd5b506103756103de366004613152565b610c74565b3480156103ef57600080fd5b5061037561115c81565b34801561040557600080fd5b5061036261041436600461311b565b610d0a565b34801561042557600080fd5b50610362610434366004613309565b610d60565b34801561044557600080fd5b50610362610d6d565b34801561045a57600080fd5b50610362610469366004613063565b610d87565b34801561047a57600080fd5b506102d361048936600461333b565b601d60209081526000928352604080842090915290825290205460ff1681565b3480156104b557600080fd5b506103756104c4366004613309565b610da2565b3480156104d557600080fd5b506103626104e4366004613270565b610e35565b3480156104f557600080fd5b50610362610504366004613152565b610e50565b34801561051557600080fd5b50610362611154565b34801561052a57600080fd5b50600b5460ff166102d3565b34801561054257600080fd5b5061032a610551366004613309565b611384565b34801561056257600080fd5b50610362610571366004613015565b6113e4565b34801561058257600080fd5b50610375610591366004613015565b61146a565b3480156105a257600080fd5b506103626114f0565b3480156105b757600080fd5b506102d36105c6366004613015565b60166020526000908152604090205460ff1681565b3480156105e757600080fd5b5061037561109481565b3480156105fd57600080fd5b5061037560105481565b34801561061357600080fd5b5060135461032a906001600160a01b031681565b34801561063357600080fd5b50610362611502565b34801561064857600080fd5b50600c5461032a906001600160a01b031681565b34801561066857600080fd5b506000546001600160a01b031661032a565b34801561068657600080fd5b506102fd61151a565b34801561069b57600080fd5b506102d36106aa366004613015565b60156020526000908152604090205460ff1681565b3480156106cb57600080fd5b50610375669de1f1cdd1800081565b3480156106e657600080fd5b506103626106f536600461311b565b611529565b6103626107083660046131f1565b611534565b34801561071957600080fd5b50610362610728366004613309565b6118b9565b34801561073957600080fd5b5061036261074836600461309f565b611a4e565b34801561075957600080fd5b5061036261076836600461317c565b611a86565b34801561077957600080fd5b50600b5461032a9061010090046001600160a01b031681565b34801561079e57600080fd5b506102fd6107ad366004613309565b611b00565b3480156107be57600080fd5b506102d36107cd366004613015565b611bd1565b3480156107de57600080fd5b506102d36107ed366004613309565b601c6020526000908152604090205460ff1681565b34801561080e57600080fd5b506102d361081d366004613015565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561084757600080fd5b50610362611c4f565b34801561085c57600080fd5b50610375600f5481565b34801561087257600080fd5b506102d3610881366004613030565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108bb57600080fd5b506103626108ca366004613309565b611d57565b3480156108db57600080fd5b506102d36108ea3660046131f1565b611f05565b3480156108fb57600080fd5b5061036261090a366004613015565b611f39565b60006001600160e01b0319821663780e9d6360e01b1480610934575061093482611fb2565b92915050565b606060018054610949906136d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610975906136d6565b80156109c25780601f10610997576101008083540402835291602001916109c2565b820191906000526020600020905b8154815290600101906020018083116109a557829003601f168201915b5050505050905090565b60006109d782612002565b506000908152600560205260409020546001600160a01b031690565b60006109fe82611384565b9050806001600160a01b0316836001600160a01b03161415610a715760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610a8d5750610a8d8133610881565b610aff5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610a68565b610b098383612061565b505050565b610b166120cf565b6001600160a01b038216610b9e57478111610b6457600080546040516001600160a01b039091169183156108fc02918491818181858888f19350505050158015610b09573d6000803e3d6000fd5b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610b09573d6000803e3d6000fd5b816001600160a01b031663a9059cbb610bbf6000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101849052604401602060405180830381600087803b158015610c0757600080fd5b505af1158015610c1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b099190613219565b5050565b610c4d3382612129565b610c695760405162461bcd60e51b8152600401610a68906135f4565b610b098383836121a8565b6000610c7f8361146a565b8210610ce15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a68565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610d126120cf565b8015610d3957601380546001600160a01b0384166001600160a01b03199091161790555050565b6001600160a01b0382166000908152601660205260409020805460ff191660011790555050565b610d686120cf565b601055565b610d756120cf565b610d7d61234f565b610d85612398565b565b610b0983838360405180602001604052806000815250611a4e565b6000610dad60095490565b8210610e105760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a68565b60098281548110610e2357610e2361379c565b90600052602060002001549050919050565b610e3d6120cf565b8051610c3f90600d906020840190612eba565b6001600160a01b038216600090815260166020526040902054829060ff16610ea85760405162461bcd60e51b815260206004820152600b60248201526a2bb937b733902a37b5b2b760a91b6044820152606401610a68565b33610eb283611384565b6001600160a01b031614610efd5760405162461bcd60e51b81526020600482015260126024820152714f6e6c79206f776e6572207570677261646560701b6044820152606401610a68565b6000828152601d602090815260408083206001600160a01b038716845290915290205460ff1615610f6c5760405162461bcd60e51b8152602060048201526019602482015278151bdad95b9251081a185cc81899595b881d5c19dc98591959603a1b6044820152606401610a68565b60405163e985e9c560e01b81523360048201523060248201526001600160a01b0384169063e985e9c59060440160206040518083038186803b158015610fb157600080fd5b505afa158015610fc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe99190613219565b6110275760405162461bcd60e51b815260206004820152600f60248201526e4e6f742053657420417070726f766560881b6044820152606401610a68565b600b54604051632f745c5960e01b81523360048201819052600060248301526001600160a01b03868116936323b872dd93610100909104909116908490632f745c599060440160206040518083038186803b15801561108557600080fd5b505afa158015611099573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110bd9190613322565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561110c57600080fd5b505af1158015611120573d6000803e3d6000fd5b50505060009283525050601d602090815260408083206001600160a01b03909416835292905220805460ff19166001179055565b60105461116490620151806123ea565b421161119d5761117333611bd1565b801561118157506010544210155b61119d5760405162461bcd60e51b8152600401610a68906135bd565b6010546111ac906107086123ea565b4210156111fb5760405162461bcd60e51b815260206004820152601a60248201527f4e6f74206176616961626c6520666f722066726565206d696e740000000000006044820152606401610a68565b611094600f5410801561121e5750336000908152601b602052604090205460ff16155b6112625760405162461bcd60e51b8152602060048201526015602482015274119d5b1b08139195081bdc8812185d99481b5a5b9d605a1b6044820152606401610a68565b600061126c6123fd565b9050606060005b60068160ff1610156112da57816112a5848360ff16600681106112985761129861379c565b602002015160ff16612612565b6040516020016112b69291906134e9565b604051602081830303815290604052915080806112d290613726565b915050611273565b50600f80549060006112eb8361370b565b9190505550600160186000836040516020016113079190613447565b60408051808303601f1901815291815281516020928301208352828201939093529082016000908120805460ff191694151594909417909355600f548352601781529120825161135992840190612eba565b5061136633600f54612710565b5050336000908152601b60205260409020805460ff19166001179055565b6000818152600360205260408120546001600160a01b0316806109345760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a68565b6113ec6120cf565b6001600160a01b0381166114425760405162461bcd60e51b815260206004820152601760248201527f4e6f7420616363657074207a65726f20616464726573730000000000000000006044820152606401610a68565b600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60006001600160a01b0382166114d45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610a68565b506001600160a01b031660009081526004602052604090205490565b6114f86120cf565b610d85600061272a565b61150a6120cf565b61151261277a565b610d856127c0565b606060028054610949906136d6565b610c3f3383836127fd565b60105461154490620151806123ea565b421161157d5761155333611bd1565b801561156157506010544210155b61157d5760405162461bcd60e51b8152600401610a68906135bd565b8060005b60068160ff161015611662576000828260ff16600681106115a4576115a461379c565b6020020160208101906115b7919061335e565b60ff161180156116175750601960006115d183600161365a565b60ff908116825260208201929092526040016000205481169083908316600681106115fe576115fe61379c565b602002016020810190611611919061335e565b60ff1611155b6116505760405162461bcd60e51b815260206004820152600a60248201526957726f6e67206461746160b01b6044820152606401610a68565b8061165a81613726565b915050611581565b50669de1f1cdd1800034146116ad5760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f756768742076616c756560781b6044820152606401610a68565b611094600f541080156116d05750336000908152601b602052604090205460ff16155b6117145760405162461bcd60e51b8152602060048201526015602482015274119d5b1b08139195081bdc8812185d99481b5a5b9d605a1b6044820152606401610a68565b606060005b60068160ff16101561178e5781611759858360ff166006811061173e5761173e61379c565b602002016020810190611751919061335e565b60ff16612612565b60405160200161176a9291906134e9565b6040516020818303038152906040529150808061178690613726565b915050611719565b5060186000826040516020016117a49190613447565b60408051601f198184030181529181528151602092830120835290820192909252016000205460ff161561180a5760405162461bcd60e51b815260206004820152600d60248201526c5472616974732045786973747360981b6044820152606401610a68565b600160186000836040516020016118219190613447565b60408051808303601f190181529181528151602092830120835290820192909252016000908120805460ff191692151592909217909155600f8054916118668361370b565b919050555061187733600f54612710565b600f546000908152601760209081526040909120825161189992840190612eba565b5050336000908152601b60205260409020805460ff191660011790555050565b6118c16120cf565b600e5461115c906118d290836123ea565b1080156118ec575061115c6118e9611094836123ea565b11155b6118f557600080fd5b600e5461190357611094600e555b60015b818111611a3a5760006119176123fd565b9050606060005b60068160ff1610156119785781611943848360ff16600681106112985761129861379c565b6040516020016119549291906134e9565b6040516020818303038152906040529150808061197090613726565b91505061191e565b50600160186000836040516020016119909190613447565b60405160208183030381529060405280519060200120815260200190815260200160002060006101000a81548160ff02191690831515021790555080601760006119e586600e546123ea90919063ffffffff16565b81526020019081526020016000209080519060200190611a06929190612eba565b50611a2533611a2085600e546123ea90919063ffffffff16565b612710565b50508080611a329061370b565b915050611906565b50600e54611a4890826123ea565b600e5550565b611a583383612129565b611a745760405162461bcd60e51b8152600401610a68906135f4565b611a80848484846128cc565b50505050565b611a8e6120cf565b60005b81811015610b0957600160156000858585818110611ab157611ab161379c565b9050602002016020810190611ac69190613015565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611af88161370b565b915050611a91565b6000818152601c602052604090205460609060ff1615611bc457611b466002611b40601154611b3a601254426128ff90919063ffffffff16565b9061290b565b90612917565b611b9257611b52612923565b611b5b83612612565b6000848152601760209081526040918290209151611b7c94939291016134ab565b6040516020818303038152906040529050919050565b611b9a612923565b611ba383612612565b6000848152601760209081526040918290209151611b7c9493929101613463565b611b52612923565b919050565b600c54604051636c9b2a3f60e11b81526001600160a01b038381166004830152600092169063d936547e9060240160206040518083038186803b158015611c1757600080fd5b505afa158015611c2b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109349190613219565b3360009081526015602052604090205460ff16611c7e5760405162461bcd60e51b8152600401610a68906135bd565b336000908152601a602052604090205460ff1615611cde5760405162461bcd60e51b815260206004820152601a60248201527f48617665206265656e20636c61696d656420766f696443656c6c0000000000006044820152606401610a68565b6013546040516335313c2160e11b81523360048201526001600160a01b0390911690636a62784290602401600060405180830381600087803b158015611d2357600080fd5b505af1158015611d37573d6000803e3d6000fd5b5050336000908152601a60205260409020805460ff191660011790555050565b33611d6182611384565b6001600160a01b031614611dac5760405162461bcd60e51b81526020600482015260126024820152714f6e6c79206f776e6572207570677261646560701b6044820152606401610a68565b6000818152601c602052604090205460ff1615611e075760405162461bcd60e51b8152602060048201526019602482015278151bdad95b9251081a185cc81899595b881d5c19dc98591959603a1b6044820152606401610a68565b601354604051632f745c5960e01b8152336004820152600060248201819052916001600160a01b031690632f745c599060440160206040518083038186803b158015611e5257600080fd5b505afa158015611e66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e8a9190613322565b601354604051630852cd8d60e31b8152600481018390529192506001600160a01b0316906342966c6890602401600060405180830381600087803b158015611ed157600080fd5b505af1158015611ee5573d6000803e3d6000fd5b50505060009283525050601c60205260409020805460ff19166001179055565b6000610934826006806020026040519081016040528092919082600660200280828437600092019190915250612932915050565b611f416120cf565b6001600160a01b038116611fa65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a68565b611faf8161272a565b50565b60006001600160e01b031982166380ac58cd60e01b1480611fe357506001600160e01b03198216635b5e139f60e01b145b8061093457506301ffc9a760e01b6001600160e01b0319831614610934565b6000818152600360205260409020546001600160a01b0316611faf5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610a68565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061209682611384565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000546001600160a01b03163314610d855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a68565b60008061213583611384565b9050806001600160a01b0316846001600160a01b0316148061217c57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b806121a05750836001600160a01b0316612195846109cc565b6001600160a01b0316145b949350505050565b826001600160a01b03166121bb82611384565b6001600160a01b03161461221f5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a68565b6001600160a01b0382166122815760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a68565b61228c8383836129d9565b612297600082612061565b6001600160a01b03831660009081526004602052604081208054600192906122c0908490613693565b90915550506001600160a01b03821660009081526004602052604081208054600192906122ee908490613642565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5460ff16610d855760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a68565b6123a061234f565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60006123f68284613642565b9392505050565b612405612f3e565b600080601460009054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561245657600080fd5b505afa15801561246a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061248e91906132b9565b506001600160701b031691506001600160701b0316915060004283836040516020016124cd939291909283526020830191909152604082015260600190565b60408051601f1981840301815291905280516020909101209050600060015b8161260a5760005b60068160ff1610156125a1576125306019600061251284600161365a565b60ff9081168252602082019290925260400160002054869116612917565b61253b906001613642565b878260ff16600681106125505761255061379c565b60ff909216602092909202015261258d6019600061256f84600161365a565b60ff908116825260208201929092526040016000205486911661290b565b93508061259981613726565b9150506124f4565b50826125f357426125b286836123ea565b6040805160208101939093528201526060810185905260800160408051601f1981840301815291905280516020909101209250806125ef8161370b565b9150505b6125fc86612932565b61260557600191505b6124ec565b505050505090565b6060816126365750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612660578061264a8161370b565b91506126599050600a8361367f565b915061263a565b60008167ffffffffffffffff81111561267b5761267b6137b2565b6040519080825280601f01601f1916602001820160405280156126a5576020820181803683370190505b5090505b84156121a0576126ba600183613693565b91506126c7600a86613746565b6126d2906030613642565b60f81b8183815181106126e7576126e761379c565b60200101906001600160f81b031916908160001a905350612709600a8661367f565b94506126a9565b610c3f8282604051806020016040528060008152506129e4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600b5460ff1615610d855760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610a68565b6127c861277a565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123cd3390565b816001600160a01b0316836001600160a01b0316141561285f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a68565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6128d78484846121a8565b6128e384848484612a17565b611a805760405162461bcd60e51b8152600401610a689061356b565b60006123f68284613693565b60006123f6828461367f565b60006123f68284613746565b6060600d8054610949906136d6565b6000606060005b60068160ff161015612993578161295e858360ff16600681106112985761129861379c565b60405160200161296f9291906134e9565b6040516020818303038152906040529150808061298b90613726565b915050612939565b5060186000826040516020016129a99190613447565b60408051601f198184030181529181528151602092830120835290820192909252016000205460ff169392505050565b610b09838383612b24565b6129ee8383612bdc565b6129fb6000848484612a17565b610b095760405162461bcd60e51b8152600401610a689061356b565b60006001600160a01b0384163b15612b1957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a5b903390899088908890600401613525565b602060405180830381600087803b158015612a7557600080fd5b505af1925050508015612aa5575060408051601f3d908101601f19168201909252612aa291810190613253565b60015b612aff573d808015612ad3576040519150601f19603f3d011682016040523d82523d6000602084013e612ad8565b606091505b508051612af75760405162461bcd60e51b8152600401610a689061356b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121a0565b506001949350505050565b6001600160a01b038316612b7f57612b7a81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b612ba2565b816001600160a01b0316836001600160a01b031614612ba257612ba28382612d2a565b6001600160a01b038216612bb957610b0981612dc7565b826001600160a01b0316826001600160a01b031614610b0957610b098282612e76565b6001600160a01b038216612c325760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a68565b6000818152600360205260409020546001600160a01b031615612c975760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a68565b612ca3600083836129d9565b6001600160a01b0382166000908152600460205260408120805460019290612ccc908490613642565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612d378461146a565b612d419190613693565b600083815260086020526040902054909150808214612d94576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612dd990600190613693565b6000838152600a602052604081205460098054939450909284908110612e0157612e0161379c565b906000526020600020015490508060098381548110612e2257612e2261379c565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612e5a57612e5a613786565b6001900381819060005260206000200160009055905550505050565b6000612e818361146a565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b828054612ec6906136d6565b90600052602060002090601f016020900481019282612ee85760008555612f2e565b82601f10612f0157805160ff1916838001178555612f2e565b82800160010185558215612f2e579182015b82811115612f2e578251825591602001919060010190612f13565b50612f3a929150612f5c565b5090565b6040518060c001604052806006906020820280368337509192915050565b5b80821115612f3a5760008155600101612f5d565b600067ffffffffffffffff80841115612f8c57612f8c6137b2565b604051601f8501601f19908116603f01168101908282118183101715612fb457612fb46137b2565b81604052809350858152868686011115612fcd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611bcc57600080fd5b80516001600160701b0381168114611bcc57600080fd5b60006020828403121561302757600080fd5b6123f682612fe7565b6000806040838503121561304357600080fd5b61304c83612fe7565b915061305a60208401612fe7565b90509250929050565b60008060006060848603121561307857600080fd5b61308184612fe7565b925061308f60208501612fe7565b9150604084013590509250925092565b600080600080608085870312156130b557600080fd5b6130be85612fe7565b93506130cc60208601612fe7565b925060408501359150606085013567ffffffffffffffff8111156130ef57600080fd5b8501601f8101871361310057600080fd5b61310f87823560208401612f71565b91505092959194509250565b6000806040838503121561312e57600080fd5b61313783612fe7565b91506020830135613147816137c8565b809150509250929050565b6000806040838503121561316557600080fd5b61316e83612fe7565b946020939093013593505050565b6000806020838503121561318f57600080fd5b823567ffffffffffffffff808211156131a757600080fd5b818501915085601f8301126131bb57600080fd5b8135818111156131ca57600080fd5b8660208260051b85010111156131df57600080fd5b60209290920196919550909350505050565b600060c0828403121561320357600080fd5b8260c08301111561321357600080fd5b50919050565b60006020828403121561322b57600080fd5b81516123f6816137c8565b60006020828403121561324857600080fd5b81356123f6816137d6565b60006020828403121561326557600080fd5b81516123f6816137d6565b60006020828403121561328257600080fd5b813567ffffffffffffffff81111561329957600080fd5b8201601f810184136132aa57600080fd5b6121a084823560208401612f71565b6000806000606084860312156132ce57600080fd5b6132d784612ffe565b92506132e560208501612ffe565b9150604084015163ffffffff811681146132fe57600080fd5b809150509250925092565b60006020828403121561331b57600080fd5b5035919050565b60006020828403121561333457600080fd5b5051919050565b6000806040838503121561334e57600080fd5b8235915061305a60208401612fe7565b60006020828403121561337057600080fd5b813560ff811681146123f657600080fd5b600081518084526133998160208601602086016136aa565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806133c757607f831692505b60208084108214156133e957634e487b7160e01b600052602260045260246000fd5b8180156133fd576001811461340e5761343b565b60ff1986168952848901965061343b565b60008881526020902060005b868110156134335781548b82015290850190830161341a565b505084890196505b50505050505092915050565b600082516134598184602087016136aa565b9190910192915050565b600084516134758184602089016136aa565b8451908301906134898183602089016136aa565b612f3160f01b91019081526134a160028201856133ad565b9695505050505050565b600084516134bd8184602089016136aa565b8451908301906134d18183602089016136aa565b6102f360f41b91019081526134a160028201856133ad565b600083516134fb8184602088016136aa565b602f60f81b90830190815283516135198160018401602088016136aa565b01600101949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134a190830184613381565b6020815260006123f66020830184613381565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526018908201527f4f6e6c792077686974656c697465642063616e206d696e740000000000000000604082015260600190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b600082198211156136555761365561375a565b500190565b600060ff821660ff84168060ff038211156136775761367761375a565b019392505050565b60008261368e5761368e613770565b500490565b6000828210156136a5576136a561375a565b500390565b60005b838110156136c55781810151838201526020016136ad565b83811115611a805750506000910152565b600181811c908216806136ea57607f821691505b6020821081141561321357634e487b7160e01b600052602260045260246000fd5b600060001982141561371f5761371f61375a565b5060010190565b600060ff821660ff81141561373d5761373d61375a565b60010192915050565b60008261375557613755613770565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114611faf57600080fd5b6001600160e01b031981168114611faf57600080fdfea264697066735822122009434b63e63e7354b2005fd748b3b83b5d772dff2b2f6f69a9998f4e5608c7f064736f6c63430008070033

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

0000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f1852

-----Decoded View---------------
Arg [0] : _pair (address): 0x0d4a11d5EEaaC28EC3F61d100daF4d40471f1852

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000d4a11d5eeaac28ec3f61d100daf4d40471f1852


Deployed Bytecode Sourcemap

59707:9683:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40814:224;;;;;;;;;;-1:-1:-1;40814:224:0;;;;;:::i;:::-;;:::i;:::-;;;12523:14:1;;12516:22;12498:41;;12486:2;12471:18;40814:224:0;;;;;;;;27548:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29061:171::-;;;;;;;;;;-1:-1:-1;29061:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10566:32:1;;;10548:51;;10536:2;10521:18;29061:171:0;10402:203:1;28578:417:0;;;;;;;;;;-1:-1:-1;28578:417:0;;;;;:::i;:::-;;:::i;:::-;;41454:113;;;;;;;;;;-1:-1:-1;41542:10:0;:17;41454:113;;;23697:25:1;;;23685:2;23670:18;41454:113:0;23551:177:1;68988:399:0;;;;;;;;;;-1:-1:-1;68988:399:0;;;;;:::i;:::-;;:::i;29761:336::-;;;;;;;;;;-1:-1:-1;29761:336:0;;;;;:::i;:::-;;:::i;41122:256::-;;;;;;;;;;-1:-1:-1;41122:256:0;;;;;:::i;:::-;;:::i;60051:41::-;;;;;;;;;;;;60088:4;60051:41;;68317:208;;;;;;;;;;-1:-1:-1;68317:208:0;;;;;:::i;:::-;;:::i;68021:90::-;;;;;;;;;;-1:-1:-1;68021:90:0;;;;;:::i;:::-;;:::i;67935:78::-;;;;;;;;;;;;;:::i;30168:185::-;;;;;;;;;;-1:-1:-1;30168:185:0;;;;;:::i;:::-;;:::i;60841:69::-;;;;;;;;;;-1:-1:-1;60841:69:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;41644:233;;;;;;;;;;-1:-1:-1;41644:233:0;;;;;:::i;:::-;;:::i;65529:92::-;;;;;;;;;;-1:-1:-1;65529:92:0;;;;;:::i;:::-;;:::i;64886:527::-;;;;;;;;;;-1:-1:-1;64886:527:0;;;;;:::i;:::-;;:::i;61883:701::-;;;;;;;;;;;;;:::i;51335:86::-;;;;;;;;;;-1:-1:-1;51406:7:0;;;;51335:86;;27259:222;;;;;;;;;;-1:-1:-1;27259:222:0;;;;;:::i;:::-;;:::i;68533:203::-;;;;;;;;;;-1:-1:-1;68533:203:0;;;;;:::i;:::-;;:::i;26990:207::-;;;;;;;;;;-1:-1:-1;26990:207:0;;;;;:::i;:::-;;:::i;48845:103::-;;;;;;;;;;;;;:::i;60527:42::-;;;;;;;;;;-1:-1:-1;60527:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;60099:46;;;;;;;;;;;;60141:4;60099:46;;60275:24;;;;;;;;;;;;;;;;60390:36;;;;;;;;;;-1:-1:-1;60390:36:0;;;;-1:-1:-1;;;;;60390:36:0;;;67850:77;;;;;;;;;;;;;:::i;59904:::-;;;;;;;;;;-1:-1:-1;59904:77:0;;;;-1:-1:-1;;;;;59904:77:0;;;48197:87;;;;;;;;;;-1:-1:-1;48243:7:0;48270:6;-1:-1:-1;;;;;48270:6:0;48197:87;;27717:104;;;;;;;;;;;;;:::i;60473:47::-;;;;;;;;;;-1:-1:-1;60473:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;60223:45;;;;;;;;;;;;60255:13;60223:45;;29304:155;;;;;;;;;;-1:-1:-1;29304:155:0;;;;;:::i;:::-;;:::i;62592:756::-;;;;;;:::i;:::-;;:::i;63356:767::-;;;;;;;;;;-1:-1:-1;63356:767:0;;;;;:::i;:::-;;:::i;30424:323::-;;;;;;;;;;-1:-1:-1;30424:323:0;;;;;:::i;:::-;;:::i;68123:186::-;;;;;;;;;;-1:-1:-1;68123:186:0;;;;;:::i;:::-;;:::i;59867:30::-;;;;;;;;;;-1:-1:-1;59867:30:0;;;;;;;-1:-1:-1;;;;;59867:30:0;;;66835:603;;;;;;;;;;-1:-1:-1;66835:603:0;;;;;:::i;:::-;;:::i;68849:131::-;;;;;;;;;;-1:-1:-1;68849:131:0;;;;;:::i;:::-;;:::i;60789:45::-;;;;;;;;;;-1:-1:-1;60789:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;68744:97;;;;;;;;;;-1:-1:-1;68744:97:0;;;;;:::i;:::-;-1:-1:-1;;;;;68820:13:0;68796:4;68820:13;;;:7;:13;;;;;;;;;68744:97;64263:227;;;;;;;;;;;;;:::i;60184:32::-;;;;;;;;;;;;;;;;29530:164;;;;;;;;;;-1:-1:-1;29530:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29651:25:0;;;29627:4;29651:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29530:164;64498:380;;;;;;;;;;-1:-1:-1;64498:380:0;;;;;:::i;:::-;;:::i;64131:124::-;;;;;;;;;;-1:-1:-1;64131:124:0;;;;;:::i;:::-;;:::i;49103:201::-;;;;;;;;;;-1:-1:-1;49103:201:0;;;;;:::i;:::-;;:::i;40814:224::-;40916:4;-1:-1:-1;;;;;;40940:50:0;;-1:-1:-1;;;40940:50:0;;:90;;;40994:36;41018:11;40994:23;:36::i;:::-;40933:97;40814:224;-1:-1:-1;;40814:224:0:o;27548:100::-;27602:13;27635:5;27628:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27548:100;:::o;29061:171::-;29137:7;29157:23;29172:7;29157:14;:23::i;:::-;-1:-1:-1;29200:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29200:24:0;;29061:171::o;28578:417::-;28659:13;28675:23;28690:7;28675:14;:23::i;:::-;28659:39;;28723:5;-1:-1:-1;;;;;28717:11:0;:2;-1:-1:-1;;;;;28717:11:0;;;28709:57;;;;-1:-1:-1;;;28709:57:0;;21126:2:1;28709:57:0;;;21108:21:1;21165:2;21145:18;;;21138:30;21204:34;21184:18;;;21177:62;-1:-1:-1;;;21255:18:1;;;21248:31;21296:19;;28709:57:0;;;;;;;;;25080:10;-1:-1:-1;;;;;28801:21:0;;;;:62;;-1:-1:-1;28826:37:0;28843:5;25080:10;29530:164;:::i;28826:37::-;28779:174;;;;-1:-1:-1;;;28779:174:0;;18582:2:1;28779:174:0;;;18564:21:1;18621:2;18601:18;;;18594:30;18660:34;18640:18;;;18633:62;18731:32;18711:18;;;18704:60;18781:19;;28779:174:0;18380:426:1;28779:174:0;28966:21;28975:2;28979:7;28966:8;:21::i;:::-;28648:347;28578:417;;:::o;68988:399::-;48083:13;:11;:13::i;:::-;-1:-1:-1;;;;;69069:19:0;::::1;69066:314;;69117:21;69107:6;:31;69104:192;;48243:7:::0;48270:6;;69158:33:::1;::::0;-1:-1:-1;;;;;48270:6:0;;;;69158:33;::::1;;;::::0;69184:6;;69158:33;48243:7;69158:33;69184:6;48270;69158:33;::::1;;;;;;;;;;;;;::::0;::::1;;;;69104:192;48243:7:::0;48270:6;;69232:48:::1;::::0;-1:-1:-1;;;;;48270:6:0;;;;69258:21:::1;69232:48:::0;::::1;;;::::0;69258:21;;69232:48;48243:7;69232:48;69258:21;48270:6;69232:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;69066:314;69336:5;-1:-1:-1::0;;;;;69329:22:0::1;;69352:7;48243::::0;48270:6;-1:-1:-1;;;;;48270:6:0;;48197:87;69352:7:::1;69329:39;::::0;-1:-1:-1;;;;;;69329:39:0::1;::::0;;;;;;-1:-1:-1;;;;;11992:32:1;;;69329:39:0::1;::::0;::::1;11974:51:1::0;12041:18;;;12034:34;;;11947:18;;69329:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;69066:314::-;68988:399:::0;;:::o;29761:336::-;29956:41;25080:10;29989:7;29956:18;:41::i;:::-;29948:100;;;;-1:-1:-1;;;29948:100:0;;;;;;;:::i;:::-;30061:28;30071:4;30077:2;30081:7;30061:9;:28::i;41122:256::-;41219:7;41255:23;41272:5;41255:16;:23::i;:::-;41247:5;:31;41239:87;;;;-1:-1:-1;;;41239:87:0;;13325:2:1;41239:87:0;;;13307:21:1;13364:2;13344:18;;;13337:30;13403:34;13383:18;;;13376:62;-1:-1:-1;;;13454:18:1;;;13447:41;13505:19;;41239:87:0;13123:407:1;41239:87:0;-1:-1:-1;;;;;;41344:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41122:256::o;68317:208::-;48083:13;:11;:13::i;:::-;68403:6:::1;68400:118;;;68425:8;:20:::0;;-1:-1:-1;;;;;68425:20:0;::::1;-1:-1:-1::0;;;;;;68425:20:0;;::::1;;::::0;;68988:399;;:::o;68400:118::-:1;-1:-1:-1::0;;;;;68478:21:0;::::1;;::::0;;;:10:::1;:21;::::0;;;;:28;;-1:-1:-1;;68478:28:0::1;68502:4;68478:28;::::0;;68317:208;;:::o;68021:90::-;48083:13;:11;:13::i;:::-;68087:9:::1;:16:::0;68021:90::o;67935:78::-;48083:13;:11;:13::i;:::-;51199:16:::1;:14;:16::i;:::-;67995:10:::2;:8;:10::i;:::-;67935:78::o:0;30168:185::-;30306:39;30323:4;30329:2;30333:7;30306:39;;;;;;;;;;;;:16;:39::i;41644:233::-;41719:7;41755:30;41542:10;:17;;41454:113;41755:30;41747:5;:38;41739:95;;;;-1:-1:-1;;;41739:95:0;;21881:2:1;41739:95:0;;;21863:21:1;21920:2;21900:18;;;21893:30;21959:34;21939:18;;;21932:62;-1:-1:-1;;;22010:18:1;;;22003:42;22062:19;;41739:95:0;21679:408:1;41739:95:0;41852:10;41863:5;41852:17;;;;;;;;:::i;:::-;;;;;;;;;41845:24;;41644:233;;;:::o;65529:92::-;48083:13;:11;:13::i;:::-;65599:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;64886:527::-:0;-1:-1:-1;;;;;61515:17:0;;;;;;:10;:17;;;;;;64960:5;;61515:17;;61507:41;;;;-1:-1:-1;;;61507:41:0;;20786:2:1;61507:41:0;;;20768:21:1;20825:2;20805:18;;;20798:30;-1:-1:-1;;;20844:18:1;;;20837:41;20895:18;;61507:41:0;20584:335:1;61507:41:0;65013:10:::1;64986:23;65001:7:::0;64986:14:::1;:23::i;:::-;-1:-1:-1::0;;;;;64986:37:0::1;;64978:68;;;::::0;-1:-1:-1;;;64978:68:0;;17880:2:1;64978:68:0::1;::::0;::::1;17862:21:1::0;17919:2;17899:18;;;17892:30;-1:-1:-1;;;17938:18:1;;;17931:48;17996:18;;64978:68:0::1;17678:342:1::0;64978:68:0::1;65066:26;::::0;;;:17:::1;:26;::::0;;;;;;;-1:-1:-1;;;;;65066:33:0;::::1;::::0;;;;;;;;::::1;;65065:34;65057:72;;;::::0;-1:-1:-1;;;65057:72:0;;19374:2:1;65057:72:0::1;::::0;::::1;19356:21:1::0;19413:2;19393:18;;;19386:30;-1:-1:-1;;;19432:18:1;;;19425:55;19497:18;;65057:72:0::1;19172:349:1::0;65057:72:0::1;65148:57;::::0;-1:-1:-1;;;65148:57:0;;65179:10:::1;65148:57;::::0;::::1;10822:34:1::0;65199:4:0::1;10872:18:1::0;;;10865:43;-1:-1:-1;;;;;65148:30:0;::::1;::::0;::::1;::::0;10757:18:1;;65148:57:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65140:84;;;::::0;-1:-1:-1;;;65140:84:0;;20089:2:1;65140:84:0::1;::::0;::::1;20071:21:1::0;20128:2;20108:18;;;20101:30;-1:-1:-1;;;20147:18:1;;;20140:45;20202:18;;65140:84:0::1;19887:339:1::0;65140:84:0::1;65274:15;::::0;65291:58:::1;::::0;-1:-1:-1;;;65291:58:0;;65262:10:::1;65291:58;::::0;::::1;11974:51:1::0;;;65347:1:0::1;12041:18:1::0;;;12034:34;-1:-1:-1;;;;;65235:26:0;;::::1;::::0;::::1;::::0;65274:15:::1;::::0;;::::1;::::0;;::::1;::::0;65235:26;;65291:43:::1;::::0;11947:18:1;;65291:58:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65235:115;::::0;-1:-1:-1;;;;;;65235:115:0::1;::::0;;;;;;-1:-1:-1;;;;;11177:15:1;;;65235:115:0::1;::::0;::::1;11159:34:1::0;11229:15;;;;11209:18;;;11202:43;11261:18;;;11254:34;11094:18;;65235:115:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;;65361:26:0::1;::::0;;;-1:-1:-1;;65361:17:0::1;:26;::::0;;;;;;;-1:-1:-1;;;;;65361:33:0;;::::1;::::0;;;;;;:40;;-1:-1:-1;;65361:40:0::1;65397:4;65361:40;::::0;;64886:527::o;61883:701::-;60970:9;;:21;;60984:6;60970:13;:21::i;:::-;60951:15;:40;60948:164;;61015:23;61027:10;61015:11;:23::i;:::-;:55;;;;;61061:9;;61042:15;:28;;61015:55;61007:93;;;;-1:-1:-1;;;61007:93:0;;;;;;;:::i;:::-;61959:9:::1;::::0;:25:::1;::::0;61973:10:::1;61959:13;:25::i;:::-;61940:15;:44;;61932:82;;;::::0;-1:-1:-1;;;61932:82:0;;22294:2:1;61932:82:0::1;::::0;::::1;22276:21:1::0;22333:2;22313:18;;;22306:30;22372:28;22352:18;;;22345:56;22418:18;;61932:82:0::1;22092:350:1::0;61932:82:0::1;60141:4;62033:17;;:35;:59;;;;-1:-1:-1::0;62081:10:0::1;62073:19;::::0;;;:7:::1;:19;::::0;;;;;::::1;;62072:20;62033:59;62025:93;;;::::0;-1:-1:-1;;;62025:93:0;;22649:2:1;62025:93:0::1;::::0;::::1;22631:21:1::0;22688:2;22668:18;;;22661:30;-1:-1:-1;;;22707:18:1;;;22700:51;22768:18;;62025:93:0::1;22447:345:1::0;62025:93:0::1;62129:23;62155:12;:10;:12::i;:::-;62129:38;;62178:24;62217:7;62213:126;62230:1;62228;:3;;;62213:126;;;62289:10;62304:21;:7;62312:1;62304:10;;;;;;;;;:::i;:::-;;;;;:19;;;:21::i;:::-;62272:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62252:75;;62233:3;;;;;:::i;:::-;;;;62213:126;;;-1:-1:-1::0;62349:17:0::1;:19:::0;;;:17:::1;:19;::::0;::::1;:::i;:::-;;;;;;62435:4;62379:12;:53;62419:10;62402:28;;;;;;;;:::i;:::-;;::::0;;;;::::1;-1:-1:-1::0;;62402:28:0;;;;;;62392:39;;62402:28:::1;62392:39:::0;;::::1;::::0;62379:53;;;;::::1;::::0;;;;;;;-1:-1:-1;62379:53:0;;;:60;;-1:-1:-1;;62379:60:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;62457:17:::1;::::0;62450:25;;:6:::1;:25:::0;;;;:38;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;62499:40;62509:10;62521:17;;62499:9;:40::i;:::-;-1:-1:-1::0;;62558:10:0::1;62550:19;::::0;;;:7:::1;:19;::::0;;;;:26;;-1:-1:-1;;62550:26:0::1;62572:4;62550:26;::::0;;61883:701::o;27259:222::-;27331:7;27367:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27367:16:0;27402:19;27394:56;;;;-1:-1:-1;;;27394:56:0;;20433:2:1;27394:56:0;;;20415:21:1;20472:2;20452:18;;;20445:30;-1:-1:-1;;;20491:18:1;;;20484:54;20555:18;;27394:56:0;20231:348:1;68533:203:0;48083:13;:11;:13::i;:::-;-1:-1:-1;;;;;68625:30:0;::::1;68617:66;;;::::0;-1:-1:-1;;;68617:66:0;;16773:2:1;68617:66:0::1;::::0;::::1;16755:21:1::0;16812:2;16792:18;;;16785:30;16851:25;16831:18;;;16824:53;16894:18;;68617:66:0::1;16571:347:1::0;68617:66:0::1;68694:15;:34:::0;;-1:-1:-1;;;;;68694:34:0;;::::1;;;-1:-1:-1::0;;;;;;68694:34:0;;::::1;::::0;;;::::1;::::0;;68533:203::o;26990:207::-;27062:7;-1:-1:-1;;;;;27090:19:0;;27082:73;;;;-1:-1:-1;;;27082:73:0;;17470:2:1;27082:73:0;;;17452:21:1;17509:2;17489:18;;;17482:30;17548:34;17528:18;;;17521:62;-1:-1:-1;;;17599:18:1;;;17592:39;17648:19;;27082:73:0;17268:405:1;27082:73:0;-1:-1:-1;;;;;;27173:16:0;;;;;:9;:16;;;;;;;26990:207::o;48845:103::-;48083:13;:11;:13::i;:::-;48910:30:::1;48937:1;48910:18;:30::i;67850:77::-:0;48083:13;:11;:13::i;:::-;50940:19:::1;:17;:19::i;:::-;67911:8:::2;:6;:8::i;27717:104::-:0;27773:13;27806:7;27799:14;;;;;:::i;29304:155::-;29399:52;25080:10;29432:8;29442;29399:18;:52::i;62592:756::-;60970:9;;:21;;60984:6;60970:13;:21::i;:::-;60951:15;:40;60948:164;;61015:23;61027:10;61015:11;:23::i;:::-;:55;;;;;61061:9;;61042:15;:28;;61015:55;61007:93;;;;-1:-1:-1;;;61007:93:0;;;;;;;:::i;:::-;62676:4:::1;61329:7;61325:106;61342:1;61340;:3;;;61325:106;;;61376:1;61368:4;61373:1;61368:7;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:9;;;:38;;;;-1:-1:-1::0;61392:9:0::1;:14;61402:3;:1:::0;61404::::1;61402:3;:::i;:::-;61392:14;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;61392:14:0;;;::::1;::::0;61381:4;;:7;::::1;;::::0;::::1;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:25;;;;61368:38;61360:60;;;::::0;-1:-1:-1;;;61360:60:0;;23414:2:1;61360:60:0::1;::::0;::::1;23396:21:1::0;23453:2;23433:18;;;23426:30;-1:-1:-1;;;23472:18:1;;;23465:40;23522:18;;61360:60:0::1;23212:334:1::0;61360:60:0::1;61345:3:::0;::::1;::::0;::::1;:::i;:::-;;;;61325:106;;;;60255:13:::2;62700:9;:18;62692:48;;;::::0;-1:-1:-1;;;62692:48:0;;15668:2:1;62692:48:0::2;::::0;::::2;15650:21:1::0;15707:2;15687:18;;;15680:30;-1:-1:-1;;;15726:18:1;;;15719:47;15783:18;;62692:48:0::2;15466:341:1::0;62692:48:0::2;60141:4;62759:17;;:35;:59;;;;-1:-1:-1::0;62807:10:0::2;62799:19;::::0;;;:7:::2;:19;::::0;;;;;::::2;;62798:20;62759:59;62751:93;;;::::0;-1:-1:-1;;;62751:93:0;;22649:2:1;62751:93:0::2;::::0;::::2;22631:21:1::0;22688:2;22668:18;;;22661:30;-1:-1:-1;;;22707:18:1;;;22700:51;22768:18;;62751:93:0::2;22447:345:1::0;62751:93:0::2;62855:24;62894:7;62890:123;62907:1;62905;:3;;;62890:123;;;62966:10;62981:18;:4;62986:1;62981:7;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;:16;;;:18::i;:::-;62949:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62929:72;;62910:3;;;;;:::i;:::-;;;;62890:123;;;;63032:12;:53;63072:10;63055:28;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;63055:28:0;;::::2;::::0;;;;;;63045:39;;63055:28:::2;63045:39:::0;;::::2;::::0;63032:53;;;;::::2;::::0;;;;;-1:-1:-1;63032:53:0;;::::2;;63031:54;63023:79;;;::::0;-1:-1:-1;;;63023:79:0;;14156:2:1;63023:79:0::2;::::0;::::2;14138:21:1::0;14195:2;14175:18;;;14168:30;-1:-1:-1;;;14214:18:1;;;14207:43;14267:18;;63023:79:0::2;13954:337:1::0;63023:79:0::2;63169:4;63113:12;:53;63153:10;63136:28;;;;;;;;:::i;:::-;;::::0;;;;::::2;-1:-1:-1::0;;63136:28:0;;;;;;63126:39;;63136:28:::2;63126:39:::0;;::::2;::::0;63113:53;;;;::::2;::::0;;;;;-1:-1:-1;63113:53:0;;;:60;;-1:-1:-1;;63113:60:0::2;::::0;::::2;;::::0;;;::::2;::::0;;;63184:17:::2;:19:::0;;;::::2;::::0;::::2;:::i;:::-;;;;;;63214:40;63224:10;63236:17;;63214:9;:40::i;:::-;63272:17;::::0;63265:25:::2;::::0;;;:6:::2;:25;::::0;;;;;;;:38;;::::2;::::0;;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;;63322:10:0::2;63314:19;::::0;;;:7:::2;:19;::::0;;;;:26;;-1:-1:-1;;63314:26:0::2;63336:4;63314:26;::::0;;-1:-1:-1;;62592:756:0:o;63356:767::-;48083:13;:11;:13::i;:::-;63432:9:::1;::::0;60088:4:::1;::::0;63432:21:::1;::::0;63446:6;63432:13:::1;:21::i;:::-;:34;:79;;;;-1:-1:-1::0;60088:4:0::1;63470:27;60141:4;63490:6:::0;63470:19:::1;:27::i;:::-;:41;;63432:79;63424:88;;;::::0;::::1;;63526:9;::::0;63523:72:::1;;60141:4;63556:9;:27:::0;63523:72:::1;63618:1;63605:467;63626:6;63621:1;:11;63605:467;;63654:23;63680:12;:10;:12::i;:::-;63654:38;;63707:24;63750:7;63746:134;63763:1;63761;:3;;;63746:134;;;63826:10;63841:21;:7;63849:1;63841:10;;;;;;;;;:::i;:21::-;63809:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63789:75;;63766:3;;;;;:::i;:::-;;;;63746:134;;;;63950:4;63894:12;:53;63934:10;63917:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;63907:39;;;;;;63894:53;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;63996:10;63969:6;:24;63976:16;63990:1;63976:9;;:13;;:16;;;;:::i;:::-;63969:24;;;;;;;;;;;:37;;;;;;;;;;;;:::i;:::-;;64021:39;64031:10;64043:16;64057:1;64043:9;;:13;;:16;;;;:::i;:::-;64021:9;:39::i;:::-;63639:433;;63634:3;;;;;:::i;:::-;;;;63605:467;;;-1:-1:-1::0;64094:9:0::1;::::0;:21:::1;::::0;64108:6;64094:13:::1;:21::i;:::-;64082:9;:33:::0;-1:-1:-1;63356:767:0:o;30424:323::-;30598:41;25080:10;30631:7;30598:18;:41::i;:::-;30590:100;;;;-1:-1:-1;;;30590:100:0;;;;;;;:::i;:::-;30701:38;30715:4;30721:2;30725:7;30734:4;30701:13;:38::i;:::-;30424:323;;;;:::o;68123:186::-;48083:13;:11;:13::i;:::-;68209:6:::1;68205:97;68220:15:::0;;::::1;68205:97;;;68286:4;68259:15;:24;68275:4;;68280:1;68275:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;68259:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;68259:24:0;:31;;-1:-1:-1;;68259:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;68238:4;::::1;::::0;::::1;:::i;:::-;;;;68205:97;;66835:603:::0;66954:22;;;;:13;:22;;;;;;66920:13;;66954:22;;66951:480;;;66995:51;67044:1;66995:44;67029:9;;66995:29;67015:8;;66995:15;:19;;:29;;;;:::i;:::-;:33;;:44::i;:::-;:48;;:51::i;:::-;66992:308;;67102:10;:8;:10::i;:::-;67114:18;:7;:16;:18::i;:::-;67140:15;;;;:6;:15;;;;;;;;;67085:71;;;;;;67140:15;67085:71;;:::i;:::-;;;;;;;;;;;;;67071:86;;66835:603;;;:::o;66992:308::-;67229:10;:8;:10::i;:::-;67241:18;:7;:16;:18::i;:::-;67267:15;;;;:6;:15;;;;;;;;;67212:71;;;;;;67267:15;67212:71;;:::i;66951:480::-;67363:10;:8;:10::i;66951:480::-;66835:603;;;:::o;68849:131::-;68936:17;;68928:44;;-1:-1:-1;;;68928:44:0;;-1:-1:-1;;;;;10566:32:1;;;68928:44:0;;;10548:51:1;68904:4:0;;68936:17;;68928:38;;10521:18:1;;68928:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;64263:227::-;61201:10;61185:27;;;;:15;:27;;;;;;;;61177:64;;;;-1:-1:-1;;;61177:64:0;;;;;;;:::i;:::-;64346:10:::1;64327:30;::::0;;;:18:::1;:30;::::0;;;;;::::1;;64326:31;64318:69;;;::::0;-1:-1:-1;;;64318:69:0;;18227:2:1;64318:69:0::1;::::0;::::1;18209:21:1::0;18266:2;18246:18;;;18239:30;18305:28;18285:18;;;18278:56;18351:18;;64318:69:0::1;18025:350:1::0;64318:69:0::1;64408:8;::::0;64398:36:::1;::::0;-1:-1:-1;;;64398:36:0;;64423:10:::1;64398:36;::::0;::::1;10548:51:1::0;-1:-1:-1;;;;;64408:8:0;;::::1;::::0;64398:24:::1;::::0;10521:18:1;;64398:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;64464:10:0::1;64445:30;::::0;;;:18:::1;:30;::::0;;;;:37;;-1:-1:-1;;64445:37:0::1;64478:4;64445:37;::::0;;-1:-1:-1;;64263:227:0:o;64498:380::-;64589:10;64562:23;64577:7;64562:14;:23::i;:::-;-1:-1:-1;;;;;64562:37:0;;64554:68;;;;-1:-1:-1;;;64554:68:0;;17880:2:1;64554:68:0;;;17862:21:1;17919:2;17899:18;;;17892:30;-1:-1:-1;;;17938:18:1;;;17931:48;17996:18;;64554:68:0;17678:342:1;64554:68:0;64642:22;;;;:13;:22;;;;;;;;64641:23;64633:61;;;;-1:-1:-1;;;64633:61:0;;19374:2:1;64633:61:0;;;19356:21:1;19413:2;19393:18;;;19386:30;-1:-1:-1;;;19432:18:1;;;19425:55;19497:18;;64633:61:0;19172:349:1;64633:61:0;64739:8;;64722:61;;-1:-1:-1;;;64722:61:0;;64769:10;64722:61;;;11974:51:1;64705:14:0;12041:18:1;;;12034:34;;;64705:14:0;-1:-1:-1;;;;;64739:8:0;;64722:46;;11947:18:1;;64722:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64804:8;;64794:32;;-1:-1:-1;;;64794:32:0;;;;;23697:25:1;;;64705:78:0;;-1:-1:-1;;;;;;64804:8:0;;64794:24;;23670:18:1;;64794:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;64837:22:0;;;;-1:-1:-1;;64837:13:0;:22;;;;;:29;;-1:-1:-1;;64837:29:0;64862:4;64837:29;;;64498:380::o;64131:124::-;64201:4;64224:23;64239:7;64224:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64224:14:0;;-1:-1:-1;;64224:23:0:i;49103:201::-;48083:13;:11;:13::i;:::-;-1:-1:-1;;;;;49192:22:0;::::1;49184:73;;;::::0;-1:-1:-1;;;49184:73:0;;14498:2:1;49184:73:0::1;::::0;::::1;14480:21:1::0;14537:2;14517:18;;;14510:30;14576:34;14556:18;;;14549:62;-1:-1:-1;;;14627:18:1;;;14620:36;14673:19;;49184:73:0::1;14296:402:1::0;49184:73:0::1;49268:28;49287:8;49268:18;:28::i;:::-;49103:201:::0;:::o;26621:305::-;26723:4;-1:-1:-1;;;;;;26760:40:0;;-1:-1:-1;;;26760:40:0;;:105;;-1:-1:-1;;;;;;;26817:48:0;;-1:-1:-1;;;26817:48:0;26760:105;:158;;;-1:-1:-1;;;;;;;;;;17499:40:0;;;26882:36;17390:157;37036:135;32319:4;32343:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32343:16:0;37110:53;;;;-1:-1:-1;;;37110:53:0;;20433:2:1;37110:53:0;;;20415:21:1;20472:2;20452:18;;;20445:30;-1:-1:-1;;;20491:18:1;;;20484:54;20555:18;;37110:53:0;20231:348:1;36315:174:0;36390:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36390:29:0;-1:-1:-1;;;;;36390:29:0;;;;;;;;:24;;36444:23;36390:24;36444:14;:23::i;:::-;-1:-1:-1;;;;;36435:46:0;;;;;;;;;;;36315:174;;:::o;48362:132::-;48243:7;48270:6;-1:-1:-1;;;;;48270:6:0;25080:10;48426:23;48418:68;;;;-1:-1:-1;;;48418:68:0;;19728:2:1;48418:68:0;;;19710:21:1;;;19747:18;;;19740:30;19806:34;19786:18;;;19779:62;19858:18;;48418:68:0;19526:356:1;32548:264:0;32641:4;32658:13;32674:23;32689:7;32674:14;:23::i;:::-;32658:39;;32727:5;-1:-1:-1;;;;;32716:16:0;:7;-1:-1:-1;;;;;32716:16:0;;:52;;;-1:-1:-1;;;;;;29651:25:0;;;29627:4;29651:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32736:32;32716:87;;;;32796:7;-1:-1:-1;;;;;32772:31:0;:20;32784:7;32772:11;:20::i;:::-;-1:-1:-1;;;;;32772:31:0;;32716:87;32708:96;32548:264;-1:-1:-1;;;;32548:264:0:o;35571:625::-;35730:4;-1:-1:-1;;;;;35703:31:0;:23;35718:7;35703:14;:23::i;:::-;-1:-1:-1;;;;;35703:31:0;;35695:81;;;;-1:-1:-1;;;35695:81:0;;14905:2:1;35695:81:0;;;14887:21:1;14944:2;14924:18;;;14917:30;14983:34;14963:18;;;14956:62;-1:-1:-1;;;15034:18:1;;;15027:35;15079:19;;35695:81:0;14703:401:1;35695:81:0;-1:-1:-1;;;;;35795:16:0;;35787:65;;;;-1:-1:-1;;;35787:65:0;;16014:2:1;35787:65:0;;;15996:21:1;16053:2;16033:18;;;16026:30;16092:34;16072:18;;;16065:62;-1:-1:-1;;;16143:18:1;;;16136:34;16187:19;;35787:65:0;15812:400:1;35787:65:0;35865:39;35886:4;35892:2;35896:7;35865:20;:39::i;:::-;35969:29;35986:1;35990:7;35969:8;:29::i;:::-;-1:-1:-1;;;;;36011:15:0;;;;;;:9;:15;;;;;:20;;36030:1;;36011:15;:20;;36030:1;;36011:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36042:13:0;;;;;;:9;:13;;;;;:18;;36059:1;;36042:13;:18;;36059:1;;36042:18;:::i;:::-;;;;-1:-1:-1;;36071:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36071:21:0;-1:-1:-1;;;;;36071:21:0;;;;;;;;;36110:27;;36071:16;;36110:27;;;;;;;28648:347;28578:417;;:::o;51679:108::-;51406:7;;;;51738:41;;;;-1:-1:-1;;;51738:41:0;;12976:2:1;51738:41:0;;;12958:21:1;13015:2;12995:18;;;12988:30;-1:-1:-1;;;13034:18:1;;;13027:50;13094:18;;51738:41:0;12774:344:1;52190:120:0;51199:16;:14;:16::i;:::-;52249:7:::1;:15:::0;;-1:-1:-1;;52249:15:0::1;::::0;;52280:22:::1;25080:10:::0;52289:12:::1;52280:22;::::0;-1:-1:-1;;;;;10566:32:1;;;10548:51;;10536:2;10521:18;52280:22:0::1;;;;;;;52190:120::o:0;55193:98::-;55251:7;55278:5;55282:1;55278;:5;:::i;:::-;55271:12;55193:98;-1:-1:-1;;;55193:98:0:o;65629:855::-;65673:22;;:::i;:::-;65709:16;65727;65764:4;;;;;;;;;-1:-1:-1;;;;;65764:4:0;-1:-1:-1;;;;;65749:32:0;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65708:75;-1:-1:-1;;;;;65708:75:0;;;-1:-1:-1;;;;;65708:75:0;;;65794:14;65846:15;65863:8;65873;65829:53;;;;;;;;;10270:19:1;;;10314:2;10305:12;;10298:28;;;;10351:2;10342:12;;10335:28;10388:2;10379:12;;10085:312;65829:53:0;;;;-1:-1:-1;;65829:53:0;;;;;;;;;65819:64;;65829:53;65819:64;;;;;-1:-1:-1;65811:73:0;65942:1;65954:499;65961:6;65954:499;;65987:7;65983:164;66001:1;65999;:3;;;65983:164;;;66045:28;66057:9;:14;66067:3;:1;66069;66067:3;:::i;:::-;66057:14;;;;;;;;;;;;;;;-1:-1:-1;66057:14:0;;66045:6;;66057:14;66045:10;:28::i;:::-;:31;;66075:1;66045:31;:::i;:::-;66027:6;66034:1;66027:9;;;;;;;;;:::i;:::-;:50;;;;:9;;;;;;:50;66105:26;66116:9;:14;66126:3;:1;66128;66126:3;:::i;:::-;66116:14;;;;;;;;;;;;;;;-1:-1:-1;66116:14:0;;66105:6;;66116:14;66105:10;:26::i;:::-;66096:35;-1:-1:-1;66004:3:0;;;;:::i;:::-;;;;65983:164;;;-1:-1:-1;66164:11:0;66161:190;;66241:15;66258:28;:8;66271:14;66258:12;:28::i;:::-;66224:73;;;;;;10270:19:1;;;;10305:12;;10298:28;10342:12;;;10335:28;;;10379:12;;66224:73:0;;;-1:-1:-1;;66224:73:0;;;;;;;;;66214:84;;66224:73;66214:84;;;;;-1:-1:-1;66319:16:0;;;;:::i;:::-;;;;66161:190;66371:22;66386:6;66371:14;:22::i;:::-;66367:75;;66422:4;66413:13;;66367:75;65954:499;;;66463:13;;;;;65629:855;:::o;3934:723::-;3990:13;4211:10;4207:53;;-1:-1:-1;;4238:10:0;;;;;;;;;;;;-1:-1:-1;;;4238:10:0;;;;;3934:723::o;4207:53::-;4285:5;4270:12;4326:78;4333:9;;4326:78;;4359:8;;;;:::i;:::-;;-1:-1:-1;4382:10:0;;-1:-1:-1;4390:2:0;4382:10;;:::i;:::-;;;4326:78;;;4414:19;4446:6;4436:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4436:17:0;;4414:39;;4464:154;4471:10;;4464:154;;4498:11;4508:1;4498:11;;:::i;:::-;;-1:-1:-1;4567:10:0;4575:2;4567:5;:10;:::i;:::-;4554:24;;:2;:24;:::i;:::-;4541:39;;4524:6;4531;4524:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4524:56:0;;;;;;;;-1:-1:-1;4595:11:0;4604:2;4595:11;;:::i;:::-;;;4464:154;;33154:110;33230:26;33240:2;33244:7;33230:26;;;;;;;;;;;;:9;:26::i;49464:191::-;49538:16;49557:6;;-1:-1:-1;;;;;49574:17:0;;;-1:-1:-1;;;;;;49574:17:0;;;;;;49607:40;;49557:6;;;;;;;49607:40;;49538:16;49607:40;49527:128;49464:191;:::o;51494:108::-;51406:7;;;;51564:9;51556:38;;;;-1:-1:-1;;;51556:38:0;;17125:2:1;51556:38:0;;;17107:21:1;17164:2;17144:18;;;17137:30;-1:-1:-1;;;17183:18:1;;;17176:46;17239:18;;51556:38:0;16923:340:1;51931:118:0;50940:19;:17;:19::i;:::-;51991:7:::1;:14:::0;;-1:-1:-1;;51991:14:0::1;52001:4;51991:14;::::0;;52021:20:::1;52028:12;25080:10:::0;;25000:98;36632:315;36787:8;-1:-1:-1;;;;;36778:17:0;:5;-1:-1:-1;;;;;36778:17:0;;;36770:55;;;;-1:-1:-1;;;36770:55:0;;16419:2:1;36770:55:0;;;16401:21:1;16458:2;16438:18;;;16431:30;16497:27;16477:18;;;16470:55;16542:18;;36770:55:0;16217:349:1;36770:55:0;-1:-1:-1;;;;;36836:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36836:46:0;;;;;;;;;;36898:41;;12498::1;;;36898::0;;12471:18:1;36898:41:0;;;;;;;36632:315;;;:::o;31628:313::-;31784:28;31794:4;31800:2;31804:7;31784:9;:28::i;:::-;31831:47;31854:4;31860:2;31864:7;31873:4;31831:22;:47::i;:::-;31823:110;;;;-1:-1:-1;;;31823:110:0;;;;;;;:::i;55574:98::-;55632:7;55659:5;55663:1;55659;:5;:::i;56330:98::-;56388:7;56415:5;56419:1;56415;:5;:::i;56895:98::-;56953:7;56980:5;56984:1;56980;:5;:::i;65421:100::-;65473:13;65506:7;65499:14;;;;;:::i;66494:329::-;66565:4;66582:24;66621:7;66617:126;66634:1;66632;:3;;;66617:126;;;66693:10;66708:21;:7;66716:1;66708:10;;;;;;;;;:::i;:21::-;66676:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66656:75;;66637:3;;;;;:::i;:::-;;;;66617:126;;;;66762:12;:53;66802:10;66785:28;;;;;;;;:::i;:::-;;;;-1:-1:-1;;66785:28:0;;;;;;;;;66775:39;;66785:28;66775:39;;;;66762:53;;;;;;;;;;-1:-1:-1;66762:53:0;;;;;66494:329;-1:-1:-1;;;66494:329:0:o;67446:195::-;67590:43;67617:4;67622:2;67625:7;67590:26;:43::i;33491:319::-;33620:18;33626:2;33630:7;33620:5;:18::i;:::-;33671:53;33702:1;33706:2;33710:7;33719:4;33671:22;:53::i;:::-;33649:153;;;;-1:-1:-1;;;33649:153:0;;;;;;;:::i;37735:853::-;37889:4;-1:-1:-1;;;;;37910:13:0;;7529:19;:23;37906:675;;37946:71;;-1:-1:-1;;;37946:71:0;;-1:-1:-1;;;;;37946:36:0;;;;;:71;;25080:10;;37997:4;;38003:7;;38012:4;;37946:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37946:71:0;;;;;;;;-1:-1:-1;;37946:71:0;;;;;;;;;;;;:::i;:::-;;;37942:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38187:13:0;;38183:328;;38230:60;;-1:-1:-1;;;38230:60:0;;;;;;;:::i;38183:328::-;38461:6;38455:13;38446:6;38442:2;38438:15;38431:38;37942:584;-1:-1:-1;;;;;;38068:51:0;-1:-1:-1;;;38068:51:0;;-1:-1:-1;38061:58:0;;37906:675;-1:-1:-1;38565:4:0;37735:853;;;;;;:::o;42490:589::-;-1:-1:-1;;;;;42696:18:0;;42692:187;;42731:40;42763:7;43906:10;:17;;43879:24;;;;:15;:24;;;;;:44;;;43934:24;;;;;;;;;;;;43802:164;42731:40;42692:187;;;42801:2;-1:-1:-1;;;;;42793:10:0;:4;-1:-1:-1;;;;;42793:10:0;;42789:90;;42820:47;42853:4;42859:7;42820:32;:47::i;:::-;-1:-1:-1;;;;;42893:16:0;;42889:183;;42926:45;42963:7;42926:36;:45::i;42889:183::-;42999:4;-1:-1:-1;;;;;42993:10:0;:2;-1:-1:-1;;;;;42993:10:0;;42989:83;;43020:40;43048:2;43052:7;43020:27;:40::i;34146:439::-;-1:-1:-1;;;;;34226:16:0;;34218:61;;;;-1:-1:-1;;;34218:61:0;;19013:2:1;34218:61:0;;;18995:21:1;;;19032:18;;;19025:30;19091:34;19071:18;;;19064:62;19143:18;;34218:61:0;18811:356:1;34218:61:0;32319:4;32343:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32343:16:0;:30;34290:58;;;;-1:-1:-1;;;34290:58:0;;15311:2:1;34290:58:0;;;15293:21:1;15350:2;15330:18;;;15323:30;15389;15369:18;;;15362:58;15437:18;;34290:58:0;15109:352:1;34290:58:0;34361:45;34390:1;34394:2;34398:7;34361:20;:45::i;:::-;-1:-1:-1;;;;;34419:13:0;;;;;;:9;:13;;;;;:18;;34436:1;;34419:13;:18;;34436:1;;34419:18;:::i;:::-;;;;-1:-1:-1;;34448:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34448:21:0;-1:-1:-1;;;;;34448:21:0;;;;;;;;34487:33;;34448:16;;;34487:33;;34448:16;;34487:33;68988:399;;:::o;44593:988::-;44859:22;44909:1;44884:22;44901:4;44884:16;:22::i;:::-;:26;;;;:::i;:::-;44921:18;44942:26;;;:17;:26;;;;;;44859:51;;-1:-1:-1;45075:28:0;;;45071:328;;-1:-1:-1;;;;;45142:18:0;;45120:19;45142:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45193:30;;;;;;:44;;;45310:30;;:17;:30;;;;;:43;;;45071:328;-1:-1:-1;45495:26:0;;;;:17;:26;;;;;;;;45488:33;;;-1:-1:-1;;;;;45539:18:0;;;;;:12;:18;;;;;:34;;;;;;;45532:41;44593:988::o;45876:1079::-;46154:10;:17;46129:22;;46154:21;;46174:1;;46154:21;:::i;:::-;46186:18;46207:24;;;:15;:24;;;;;;46580:10;:26;;46129:46;;-1:-1:-1;46207:24:0;;46129:46;;46580:26;;;;;;:::i;:::-;;;;;;;;;46558:48;;46644:11;46619:10;46630;46619:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46724:28;;;:15;:28;;;;;;;:41;;;46896:24;;;;;46889:31;46931:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45947:1008;;;45876:1079;:::o;43380:221::-;43465:14;43482:20;43499:2;43482:16;:20::i;:::-;-1:-1:-1;;;;;43513:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43558:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43380:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:188;907:13;;-1:-1:-1;;;;;949:42:1;;939:53;;929:81;;1006:1;1003;996:12;1021:186;1080:6;1133:2;1121:9;1112:7;1108:23;1104:32;1101:52;;;1149:1;1146;1139:12;1101:52;1172:29;1191:9;1172:29;:::i;1212:260::-;1280:6;1288;1341:2;1329:9;1320:7;1316:23;1312:32;1309:52;;;1357:1;1354;1347:12;1309:52;1380:29;1399:9;1380:29;:::i;:::-;1370:39;;1428:38;1462:2;1451:9;1447:18;1428:38;:::i;:::-;1418:48;;1212:260;;;;;:::o;1477:328::-;1554:6;1562;1570;1623:2;1611:9;1602:7;1598:23;1594:32;1591:52;;;1639:1;1636;1629:12;1591:52;1662:29;1681:9;1662:29;:::i;:::-;1652:39;;1710:38;1744:2;1733:9;1729:18;1710:38;:::i;:::-;1700:48;;1795:2;1784:9;1780:18;1767:32;1757:42;;1477:328;;;;;:::o;1810:666::-;1905:6;1913;1921;1929;1982:3;1970:9;1961:7;1957:23;1953:33;1950:53;;;1999:1;1996;1989:12;1950:53;2022:29;2041:9;2022:29;:::i;:::-;2012:39;;2070:38;2104:2;2093:9;2089:18;2070:38;:::i;:::-;2060:48;;2155:2;2144:9;2140:18;2127:32;2117:42;;2210:2;2199:9;2195:18;2182:32;2237:18;2229:6;2226:30;2223:50;;;2269:1;2266;2259:12;2223:50;2292:22;;2345:4;2337:13;;2333:27;-1:-1:-1;2323:55:1;;2374:1;2371;2364:12;2323:55;2397:73;2462:7;2457:2;2444:16;2439:2;2435;2431:11;2397:73;:::i;:::-;2387:83;;;1810:666;;;;;;;:::o;2481:315::-;2546:6;2554;2607:2;2595:9;2586:7;2582:23;2578:32;2575:52;;;2623:1;2620;2613:12;2575:52;2646:29;2665:9;2646:29;:::i;:::-;2636:39;;2725:2;2714:9;2710:18;2697:32;2738:28;2760:5;2738:28;:::i;:::-;2785:5;2775:15;;;2481:315;;;;;:::o;2801:254::-;2869:6;2877;2930:2;2918:9;2909:7;2905:23;2901:32;2898:52;;;2946:1;2943;2936:12;2898:52;2969:29;2988:9;2969:29;:::i;:::-;2959:39;3045:2;3030:18;;;;3017:32;;-1:-1:-1;;;2801:254:1:o;3060:615::-;3146:6;3154;3207:2;3195:9;3186:7;3182:23;3178:32;3175:52;;;3223:1;3220;3213:12;3175:52;3263:9;3250:23;3292:18;3333:2;3325:6;3322:14;3319:34;;;3349:1;3346;3339:12;3319:34;3387:6;3376:9;3372:22;3362:32;;3432:7;3425:4;3421:2;3417:13;3413:27;3403:55;;3454:1;3451;3444:12;3403:55;3494:2;3481:16;3520:2;3512:6;3509:14;3506:34;;;3536:1;3533;3526:12;3506:34;3589:7;3584:2;3574:6;3571:1;3567:14;3563:2;3559:23;3555:32;3552:45;3549:65;;;3610:1;3607;3600:12;3549:65;3641:2;3633:11;;;;;3663:6;;-1:-1:-1;3060:615:1;;-1:-1:-1;;;;3060:615:1:o;3680:251::-;3762:6;3815:3;3803:9;3794:7;3790:23;3786:33;3783:53;;;3832:1;3829;3822:12;3783:53;3872:7;3866:3;3855:9;3851:19;3848:32;3845:52;;;3893:1;3890;3883:12;3845:52;-1:-1:-1;3916:9:1;3680:251;-1:-1:-1;3680:251:1:o;3936:245::-;4003:6;4056:2;4044:9;4035:7;4031:23;4027:32;4024:52;;;4072:1;4069;4062:12;4024:52;4104:9;4098:16;4123:28;4145:5;4123:28;:::i;4186:245::-;4244:6;4297:2;4285:9;4276:7;4272:23;4268:32;4265:52;;;4313:1;4310;4303:12;4265:52;4352:9;4339:23;4371:30;4395:5;4371:30;:::i;4436:249::-;4505:6;4558:2;4546:9;4537:7;4533:23;4529:32;4526:52;;;4574:1;4571;4564:12;4526:52;4606:9;4600:16;4625:30;4649:5;4625:30;:::i;4690:450::-;4759:6;4812:2;4800:9;4791:7;4787:23;4783:32;4780:52;;;4828:1;4825;4818:12;4780:52;4868:9;4855:23;4901:18;4893:6;4890:30;4887:50;;;4933:1;4930;4923:12;4887:50;4956:22;;5009:4;5001:13;;4997:27;-1:-1:-1;4987:55:1;;5038:1;5035;5028:12;4987:55;5061:73;5126:7;5121:2;5108:16;5103:2;5099;5095:11;5061:73;:::i;5145:450::-;5232:6;5240;5248;5301:2;5289:9;5280:7;5276:23;5272:32;5269:52;;;5317:1;5314;5307:12;5269:52;5340:40;5370:9;5340:40;:::i;:::-;5330:50;;5399:49;5444:2;5433:9;5429:18;5399:49;:::i;:::-;5389:59;;5491:2;5480:9;5476:18;5470:25;5535:10;5528:5;5524:22;5517:5;5514:33;5504:61;;5561:1;5558;5551:12;5504:61;5584:5;5574:15;;;5145:450;;;;;:::o;5600:180::-;5659:6;5712:2;5700:9;5691:7;5687:23;5683:32;5680:52;;;5728:1;5725;5718:12;5680:52;-1:-1:-1;5751:23:1;;5600:180;-1:-1:-1;5600:180:1:o;5785:184::-;5855:6;5908:2;5896:9;5887:7;5883:23;5879:32;5876:52;;;5924:1;5921;5914:12;5876:52;-1:-1:-1;5947:16:1;;5785:184;-1:-1:-1;5785:184:1:o;5974:254::-;6042:6;6050;6103:2;6091:9;6082:7;6078:23;6074:32;6071:52;;;6119:1;6116;6109:12;6071:52;6155:9;6142:23;6132:33;;6184:38;6218:2;6207:9;6203:18;6184:38;:::i;6233:269::-;6290:6;6343:2;6331:9;6322:7;6318:23;6314:32;6311:52;;;6359:1;6356;6349:12;6311:52;6398:9;6385:23;6448:4;6441:5;6437:16;6430:5;6427:27;6417:55;;6468:1;6465;6458:12;6507:257;6548:3;6586:5;6580:12;6613:6;6608:3;6601:19;6629:63;6685:6;6678:4;6673:3;6669:14;6662:4;6655:5;6651:16;6629:63;:::i;:::-;6746:2;6725:15;-1:-1:-1;;6721:29:1;6712:39;;;;6753:4;6708:50;;6507:257;-1:-1:-1;;6507:257:1:o;6769:973::-;6854:12;;6819:3;;6909:1;6929:18;;;;6982;;;;7009:61;;7063:4;7055:6;7051:17;7041:27;;7009:61;7089:2;7137;7129:6;7126:14;7106:18;7103:38;7100:161;;;7183:10;7178:3;7174:20;7171:1;7164:31;7218:4;7215:1;7208:15;7246:4;7243:1;7236:15;7100:161;7277:18;7304:104;;;;7422:1;7417:319;;;;7270:466;;7304:104;-1:-1:-1;;7337:24:1;;7325:37;;7382:16;;;;-1:-1:-1;7304:104:1;;7417:319;23806:1;23799:14;;;23843:4;23830:18;;7511:1;7525:165;7539:6;7536:1;7533:13;7525:165;;;7617:14;;7604:11;;;7597:35;7660:16;;;;7554:10;;7525:165;;;7529:3;;7719:6;7714:3;7710:16;7703:23;;7270:466;;;;;;;6769:973;;;;:::o;7747:276::-;7878:3;7916:6;7910:13;7932:53;7978:6;7973:3;7966:4;7958:6;7954:17;7932:53;:::i;:::-;8001:16;;;;;7747:276;-1:-1:-1;;7747:276:1:o;8028:714::-;8353:3;8391:6;8385:13;8407:53;8453:6;8448:3;8441:4;8433:6;8429:17;8407:53;:::i;:::-;8523:13;;8482:16;;;;8545:57;8523:13;8482:16;8579:4;8567:17;;8545:57;:::i;:::-;-1:-1:-1;;;8624:20:1;;8653:19;;;8688:48;8733:1;8722:13;;8714:6;8688:48;:::i;:::-;8681:55;8028:714;-1:-1:-1;;;;;;8028:714:1:o;8747:::-;9072:3;9110:6;9104:13;9126:53;9172:6;9167:3;9160:4;9152:6;9148:17;9126:53;:::i;:::-;9242:13;;9201:16;;;;9264:57;9242:13;9201:16;9298:4;9286:17;;9264:57;:::i;:::-;-1:-1:-1;;;9343:20:1;;9372:19;;;9407:48;9452:1;9441:13;;9433:6;9407:48;:::i;9466:614::-;9746:3;9784:6;9778:13;9800:53;9846:6;9841:3;9834:4;9826:6;9822:17;9800:53;:::i;:::-;-1:-1:-1;;;9875:16:1;;;9900:18;;;9943:13;;9965:65;9943:13;10017:1;10006:13;;9999:4;9987:17;;9965:65;:::i;:::-;10050:20;10072:1;10046:28;;9466:614;-1:-1:-1;;;;9466:614:1:o;11299:488::-;-1:-1:-1;;;;;11568:15:1;;;11550:34;;11620:15;;11615:2;11600:18;;11593:43;11667:2;11652:18;;11645:34;;;11715:3;11710:2;11695:18;;11688:31;;;11493:4;;11736:45;;11761:19;;11753:6;11736:45;:::i;12550:219::-;12699:2;12688:9;12681:21;12662:4;12719:44;12759:2;12748:9;12744:18;12736:6;12719:44;:::i;13535:414::-;13737:2;13719:21;;;13776:2;13756:18;;;13749:30;13815:34;13810:2;13795:18;;13788:62;-1:-1:-1;;;13881:2:1;13866:18;;13859:48;13939:3;13924:19;;13535:414::o;21326:348::-;21528:2;21510:21;;;21567:2;21547:18;;;21540:30;21606:26;21601:2;21586:18;;21579:54;21665:2;21650:18;;21326:348::o;22797:410::-;22999:2;22981:21;;;23038:2;23018:18;;;23011:30;23077:34;23072:2;23057:18;;23050:62;-1:-1:-1;;;23143:2:1;23128:18;;23121:44;23197:3;23182:19;;22797:410::o;23859:128::-;23899:3;23930:1;23926:6;23923:1;23920:13;23917:39;;;23936:18;;:::i;:::-;-1:-1:-1;23972:9:1;;23859:128::o;23992:204::-;24030:3;24066:4;24063:1;24059:12;24098:4;24095:1;24091:12;24133:3;24127:4;24123:14;24118:3;24115:23;24112:49;;;24141:18;;:::i;:::-;24177:13;;23992:204;-1:-1:-1;;;23992:204:1:o;24201:120::-;24241:1;24267;24257:35;;24272:18;;:::i;:::-;-1:-1:-1;24306:9:1;;24201:120::o;24326:125::-;24366:4;24394:1;24391;24388:8;24385:34;;;24399:18;;:::i;:::-;-1:-1:-1;24436:9:1;;24326:125::o;24456:258::-;24528:1;24538:113;24552:6;24549:1;24546:13;24538:113;;;24628:11;;;24622:18;24609:11;;;24602:39;24574:2;24567:10;24538:113;;;24669:6;24666:1;24663:13;24660:48;;;-1:-1:-1;;24704:1:1;24686:16;;24679:27;24456:258::o;24719:380::-;24798:1;24794:12;;;;24841;;;24862:61;;24916:4;24908:6;24904:17;24894:27;;24862:61;24969:2;24961:6;24958:14;24938:18;24935:38;24932:161;;;25015:10;25010:3;25006:20;25003:1;24996:31;25050:4;25047:1;25040:15;25078:4;25075:1;25068:15;25104:135;25143:3;-1:-1:-1;;25164:17:1;;25161:43;;;25184:18;;:::i;:::-;-1:-1:-1;25231:1:1;25220:13;;25104:135::o;25244:175::-;25281:3;25325:4;25318:5;25314:16;25354:4;25345:7;25342:17;25339:43;;;25362:18;;:::i;:::-;25411:1;25398:15;;25244:175;-1:-1:-1;;25244:175:1:o;25424:112::-;25456:1;25482;25472:35;;25487:18;;:::i;:::-;-1:-1:-1;25521:9:1;;25424:112::o;25541:127::-;25602:10;25597:3;25593:20;25590:1;25583:31;25633:4;25630:1;25623:15;25657:4;25654:1;25647:15;25673:127;25734:10;25729:3;25725:20;25722:1;25715:31;25765:4;25762:1;25755:15;25789:4;25786:1;25779:15;25805:127;25866:10;25861:3;25857:20;25854:1;25847:31;25897:4;25894:1;25887:15;25921:4;25918:1;25911:15;25937:127;25998:10;25993:3;25989:20;25986:1;25979:31;26029:4;26026:1;26019:15;26053:4;26050:1;26043:15;26069:127;26130:10;26125:3;26121:20;26118:1;26111:31;26161:4;26158:1;26151:15;26185:4;26182:1;26175:15;26201:118;26287:5;26280:13;26273:21;26266:5;26263:32;26253:60;;26309:1;26306;26299:12;26324:131;-1:-1:-1;;;;;;26398:32:1;;26388:43;;26378:71;;26445:1;26442;26435:12

Swarm Source

ipfs://09434b63e63e7354b2005fd748b3b83b5d772dff2b2f6f69a9998f4e5608c7f0
Loading...
Loading
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.