ETH Price: $3,433.23 (+7.55%)
Gas: 15 Gwei

Token

Baby Apes Rescue (BAR)
 

Overview

Max Total Supply

2,500 BAR

Holders

1,007

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nosk8fx.eth
Balance
2 BAR
0xd2b41b2209de76ed2b6224e9204248d055ee20c8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A NFT project with a unique collection of 10,000 baby apes that are found and rescued from the Timbu Forest.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BabyApesRescue

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-09
*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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/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/token/ERC721/IERC721.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/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/utils/Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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: BabyApesRescue.sol

pragma solidity ^0.8.0;

/// @author HG
contract BabyApesRescue is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenId;

    uint256 public constant MAX_BAR = 10000;
    uint256 public price = 70000000000000000; //0.07 Ether
    string baseTokenURI;
    bool public saleOpen = false;
    bool public presaleOpen = false;
    mapping(address => uint256) public whitelistAddr;

    event BabyApesRescueMinted(uint256 totalMinted);

    constructor(string memory baseURI) ERC721("Baby Apes Rescue", "BAR") {
        setBaseURI(baseURI);
    }

    //Get token Ids of all tokens owned by _owner
    function walletOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    //Close sale if open, open sale if closed
    function flipSaleState() external onlyOwner {
        saleOpen = !saleOpen;
    }

    function flipPresaleState() external onlyOwner {
        presaleOpen = !presaleOpen;
    }

    function withdrawAll() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function whitelistAddress(address[] calldata users, uint256 _amount)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < users.length; i++) {
            whitelistAddr[users[i]] = _amount;
        }
    }

    function presaleMint(uint256 _count) external payable {
        address user = msg.sender;
        uint256 amountAllowed = whitelistAddr[user];
        require(presaleOpen, "Presale is not open yet");
        require(!saleOpen, "Presale is closed");
        require(
            whitelistAddr[user] > 0,
            "Address not eligible for presale mint"
        );
        require(_count > 0, "Minimum 1 BabyApesRescue should be minted");
        require(
            _count <= amountAllowed,
            "Purchase will exceed max presale mint amount of this address"
        );
        require(
            totalSupply() + _count <= MAX_BAR,
            "Exceeds maximum supply of BabyApesRescue"
        );
        require(
            msg.value >= price * _count,
            "Ether sent with this transaction is not correct"
        );

        whitelistAddr[user] -= _count;

        for (uint256 i = 0; i < _count; i++) {
            _mint(user);
        }
    }

    //mint BabyApesRescue
    function mintBabyApesRescue(uint256 _count) external payable {
        require(
            totalSupply() + _count <= MAX_BAR,
            "Exceeds maximum supply of BabyApesRescue"
        );
        require(
            _count > 0,
            "Minimum 1 BabyApesRescue has to be minted per transaction"
        );
        if (msg.sender != owner()) {
            require(saleOpen, "Sale is not open yet");
            require(
                _count <= 5,
                "Maximum 5 BabyApesRescue can be minted per transaction"
            );
            require(
                msg.value >= price * _count,
                "Ether sent with this transaction is not correct"
            );
        }

        address _to = msg.sender;

        for (uint256 i = 0; i < _count; i++) {
            _mint(_to);
        }
    }

    function _mint(address _to) private {
        _tokenId.increment();
        uint256 tokenId = _tokenId.current();
        _safeMint(_to, tokenId);
        emit BabyApesRescueMinted(tokenId);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"BabyApesRescueMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BAR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintBabyApesRescue","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleOpen","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":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266f8b0a10e470000600c556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055503480156200005257600080fd5b50604051620051f9380380620051f9833981810160405281019062000078919062000421565b6040518060400160405280601081526020017f42616279204170657320526573637565000000000000000000000000000000008152506040518060400160405280600381526020017f42415200000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000fc929190620002f3565b50806001908051906020019062000115929190620002f3565b505050620001386200012c6200015060201b60201c565b6200015860201b60201c565b62000149816200021e60201b60201c565b5062000679565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200022e6200015060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000254620002c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a49062000499565b60405180910390fd5b80600d9080519060200190620002c5929190620002f3565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003019062000561565b90600052602060002090601f01602090048101928262000325576000855562000371565b82601f106200034057805160ff191683800117855562000371565b8280016001018555821562000371579182015b828111156200037057825182559160200191906001019062000353565b5b50905062000380919062000384565b5090565b5b808211156200039f57600081600090555060010162000385565b5090565b6000620003ba620003b484620004e4565b620004bb565b905082815260208101848484011115620003d957620003d862000630565b5b620003e68482856200052b565b509392505050565b600082601f8301126200040657620004056200062b565b5b815162000418848260208601620003a3565b91505092915050565b6000602082840312156200043a57620004396200063a565b5b600082015167ffffffffffffffff8111156200045b576200045a62000635565b5b6200046984828501620003ee565b91505092915050565b6000620004816020836200051a565b91506200048e8262000650565b602082019050919050565b60006020820190508181036000830152620004b48162000472565b9050919050565b6000620004c7620004da565b9050620004d5828262000597565b919050565b6000604051905090565b600067ffffffffffffffff821115620005025762000501620005fc565b5b6200050d826200063f565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200054b5780820151818401526020810190506200052e565b838111156200055b576000848401525b50505050565b600060028204905060018216806200057a57607f821691505b60208210811415620005915762000590620005cd565b5b50919050565b620005a2826200063f565b810181811067ffffffffffffffff82111715620005c457620005c3620005fc565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614b7080620006896000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106dc578063c9b298f114610719578063e985e9c514610735578063f2fde38b14610772578063f81227d41461079b576101ee565b8063a22cb46514610634578063b409dd161461065d578063b88d4fde14610688578063bee6348a146106b1576101ee565b806391b7f5ed116100dc57806391b7f5ed1461058a57806395d89b41146105b357806399288dbb146105de578063a035b1fe14610609576101ee565b806370a08231146104f4578063715018a614610531578063853828b6146105485780638da5cb5b1461055f576101ee565b80632f745c59116101855780634f6ccce7116101545780634f6ccce71461042857806355f804b3146104655780636352211e1461048e5780636b6384db146104cb576101ee565b80632f745c591461036e57806334918dfd146103ab57806342842e0e146103c2578063438b6300146103eb576101ee565b8063081812fc116101c1578063081812fc146102b4578063095ea7b3146102f157806318160ddd1461031a57806323b872dd14610345576101ee565b806301ffc9a7146101f3578063049c7c0d1461023057806306fdde031461024c578063080a57f914610277575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613320565b6107b2565b6040516102279190613a21565b60405180910390f35b61024a600480360381019061024591906133c3565b61082c565b005b34801561025857600080fd5b50610261610a15565b60405161026e9190613a3c565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906130fd565b610aa7565b6040516102ab9190613dfe565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906133c3565b610abf565b6040516102e89190613998565b60405180910390f35b3480156102fd57600080fd5b5061031860048036038101906103139190613280565b610b44565b005b34801561032657600080fd5b5061032f610c5c565b60405161033c9190613dfe565b60405180910390f35b34801561035157600080fd5b5061036c6004803603810190610367919061316a565b610c69565b005b34801561037a57600080fd5b5061039560048036038101906103909190613280565b610cc9565b6040516103a29190613dfe565b60405180910390f35b3480156103b757600080fd5b506103c0610d6e565b005b3480156103ce57600080fd5b506103e960048036038101906103e4919061316a565b610e16565b005b3480156103f757600080fd5b50610412600480360381019061040d91906130fd565b610e36565b60405161041f91906139ff565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a91906133c3565b610ee4565b60405161045c9190613dfe565b60405180910390f35b34801561047157600080fd5b5061048c6004803603810190610487919061337a565b610f55565b005b34801561049a57600080fd5b506104b560048036038101906104b091906133c3565b610feb565b6040516104c29190613998565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed91906132c0565b61109d565b005b34801561050057600080fd5b5061051b600480360381019061051691906130fd565b6111ab565b6040516105289190613dfe565b60405180910390f35b34801561053d57600080fd5b50610546611263565b005b34801561055457600080fd5b5061055d6112eb565b005b34801561056b57600080fd5b50610574611416565b6040516105819190613998565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac91906133c3565b611440565b005b3480156105bf57600080fd5b506105c86114c6565b6040516105d59190613a3c565b60405180910390f35b3480156105ea57600080fd5b506105f3611558565b6040516106009190613a21565b60405180910390f35b34801561061557600080fd5b5061061e61156b565b60405161062b9190613dfe565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613240565b611571565b005b34801561066957600080fd5b506106726116f2565b60405161067f9190613dfe565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa91906131bd565b6116f8565b005b3480156106bd57600080fd5b506106c661175a565b6040516106d39190613a21565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe91906133c3565b61176d565b6040516107109190613a3c565b60405180910390f35b610733600480360381019061072e91906133c3565b611814565b005b34801561074157600080fd5b5061075c6004803603810190610757919061312a565b611b2e565b6040516107699190613a21565b60405180910390f35b34801561077e57600080fd5b50610799600480360381019061079491906130fd565b611bc2565b005b3480156107a757600080fd5b506107b0611cba565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610825575061082482611d62565b5b9050919050565b61271081610838610c5c565b6108429190613f27565b1115610883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087a90613a5e565b60405180910390fd5b600081116108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd90613dde565b60405180910390fd5b6108ce611416565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109e457600e60009054906101000a900460ff1661094f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094690613b7e565b60405180910390fd5b6005811115610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a90613dbe565b60405180910390fd5b80600c546109a19190613fae565b3410156109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da90613c7e565b60405180910390fd5b5b600033905060005b82811015610a10576109fd82611e44565b8080610a0890614155565b9150506109ec565b505050565b606060008054610a24906140f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a50906140f2565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b600f6020528060005260406000206000915090505481565b6000610aca82611ea1565b610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0090613c5e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4f82610feb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb790613d1e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bdf611f0d565b73ffffffffffffffffffffffffffffffffffffffff161480610c0e5750610c0d81610c08611f0d565b611b2e565b5b610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4490613bbe565b60405180910390fd5b610c578383611f15565b505050565b6000600880549050905090565b610c7a610c74611f0d565b82611fce565b610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090613d7e565b60405180910390fd5b610cc48383836120ac565b505050565b6000610cd4836111ab565b8210610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90613a9e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d76611f0d565b73ffffffffffffffffffffffffffffffffffffffff16610d94611416565b73ffffffffffffffffffffffffffffffffffffffff1614610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de190613c9e565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610e31838383604051806020016040528060008152506116f8565b505050565b60606000610e43836111ab565b905060008167ffffffffffffffff811115610e6157610e606142ba565b5b604051908082528060200260200182016040528015610e8f5781602001602082028036833780820191505090505b50905060005b82811015610ed957610ea78582610cc9565b828281518110610eba57610eb961428b565b5b6020026020010181815250508080610ed190614155565b915050610e95565b508092505050919050565b6000610eee610c5c565b8210610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690613d9e565b60405180910390fd5b60088281548110610f4357610f4261428b565b5b90600052602060002001549050919050565b610f5d611f0d565b73ffffffffffffffffffffffffffffffffffffffff16610f7b611416565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890613c9e565b60405180910390fd5b80600d9080519060200190610fe7929190612ebb565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90613bfe565b60405180910390fd5b80915050919050565b6110a5611f0d565b73ffffffffffffffffffffffffffffffffffffffff166110c3611416565b73ffffffffffffffffffffffffffffffffffffffff1614611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090613c9e565b60405180910390fd5b60005b838390508110156111a55781600f600086868581811061113f5761113e61428b565b5b905060200201602081019061115491906130fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061119d90614155565b91505061111c565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390613bde565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61126b611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611289611416565b73ffffffffffffffffffffffffffffffffffffffff16146112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690613c9e565b60405180910390fd5b6112e96000612308565b565b6112f3611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611311611416565b73ffffffffffffffffffffffffffffffffffffffff1614611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90613c9e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161138d90613983565b60006040518083038185875af1925050503d80600081146113ca576040519150601f19603f3d011682016040523d82523d6000602084013e6113cf565b606091505b5050905080611413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140a90613d5e565b60405180910390fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611448611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611466611416565b73ffffffffffffffffffffffffffffffffffffffff16146114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390613c9e565b60405180910390fd5b80600c8190555050565b6060600180546114d5906140f2565b80601f0160208091040260200160405190810160405280929190818152602001828054611501906140f2565b801561154e5780601f106115235761010080835404028352916020019161154e565b820191906000526020600020905b81548152906001019060200180831161153157829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b600c5481565b611579611f0d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90613b5e565b60405180910390fd5b80600560006115f4611f0d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116a1611f0d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116e69190613a21565b60405180910390a35050565b61271081565b611709611703611f0d565b83611fce565b611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90613d7e565b60405180910390fd5b611754848484846123ce565b50505050565b600e60019054906101000a900460ff1681565b606061177882611ea1565b6117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90613cde565b60405180910390fd5b60006117c161242a565b905060008151116117e1576040518060200160405280600081525061180c565b806117eb846124bc565b6040516020016117fc92919061395f565b6040516020818303038152906040525b915050919050565b60003390506000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e60019054906101000a900460ff166118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390613cfe565b60405180910390fd5b600e60009054906101000a900460ff16156118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390613b1e565b60405180910390fd5b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613d3e565b60405180910390fd5b600083116119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b890613c1e565b60405180910390fd5b80831115611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90613a7e565b60405180910390fd5b61271083611a10610c5c565b611a1a9190613f27565b1115611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5290613a5e565b60405180910390fd5b82600c54611a699190613fae565b341015611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290613c7e565b60405180910390fd5b82600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611afa9190614008565b9250508190555060005b83811015611b2857611b1583611e44565b8080611b2090614155565b915050611b04565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bca611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611be8611416565b73ffffffffffffffffffffffffffffffffffffffff1614611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3590613c9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca590613ade565b60405180910390fd5b611cb781612308565b50565b611cc2611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611ce0611416565b73ffffffffffffffffffffffffffffffffffffffff1614611d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2d90613c9e565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e2d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e3d5750611e3c8261261d565b5b9050919050565b611e4e600b612687565b6000611e5a600b61269d565b9050611e6682826126ab565b7fc5367d6b6a54677b5e494ed86c1b62dd5625413519a9ad41ac2dc4d0c04e931881604051611e959190613dfe565b60405180910390a15050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f8883610feb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fd982611ea1565b612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f90613b9e565b60405180910390fd5b600061202383610feb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061209257508373ffffffffffffffffffffffffffffffffffffffff1661207a84610abf565b73ffffffffffffffffffffffffffffffffffffffff16145b806120a357506120a28185611b2e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120cc82610feb565b73ffffffffffffffffffffffffffffffffffffffff1614612122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211990613cbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218990613b3e565b60405180910390fd5b61219d8383836126c9565b6121a8600082611f15565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f89190614008565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461224f9190613f27565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123d98484846120ac565b6123e5848484846127dd565b612424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241b90613abe565b60405180910390fd5b50505050565b6060600d8054612439906140f2565b80601f0160208091040260200160405190810160405280929190818152602001828054612465906140f2565b80156124b25780601f10612487576101008083540402835291602001916124b2565b820191906000526020600020905b81548152906001019060200180831161249557829003601f168201915b5050505050905090565b60606000821415612504576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612618565b600082905060005b6000821461253657808061251f90614155565b915050600a8261252f9190613f7d565b915061250c565b60008167ffffffffffffffff811115612552576125516142ba565b5b6040519080825280601f01601f1916602001820160405280156125845781602001600182028036833780820191505090505b5090505b600085146126115760018261259d9190614008565b9150600a856125ac919061419e565b60306125b89190613f27565b60f81b8183815181106125ce576125cd61428b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561260a9190613f7d565b9450612588565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6126c5828260405180602001604052806000815250612974565b5050565b6126d48383836129cf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561271757612712816129d4565b612756565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612755576127548382612a1d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127995761279481612b8a565b6127d8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146127d7576127d68282612c5b565b5b5b505050565b60006127fe8473ffffffffffffffffffffffffffffffffffffffff16612cda565b15612967578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612827611f0d565b8786866040518563ffffffff1660e01b815260040161284994939291906139b3565b602060405180830381600087803b15801561286357600080fd5b505af192505050801561289457506040513d601f19601f82011682018060405250810190612891919061334d565b60015b612917573d80600081146128c4576040519150601f19603f3d011682016040523d82523d6000602084013e6128c9565b606091505b5060008151141561290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690613abe565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061296c565b600190505b949350505050565b61297e8383612ced565b61298b60008484846127dd565b6129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c190613abe565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612a2a846111ab565b612a349190614008565b9050600060076000848152602001908152602001600020549050818114612b19576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b9e9190614008565b9050600060096000848152602001908152602001600020549050600060088381548110612bce57612bcd61428b565b5b906000526020600020015490508060088381548110612bf057612bef61428b565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c3f57612c3e61425c565b5b6001900381819060005260206000200160009055905550505050565b6000612c66836111ab565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5490613c3e565b60405180910390fd5b612d6681611ea1565b15612da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9d90613afe565b60405180910390fd5b612db2600083836126c9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e029190613f27565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612ec7906140f2565b90600052602060002090601f016020900481019282612ee95760008555612f30565b82601f10612f0257805160ff1916838001178555612f30565b82800160010185558215612f30579182015b82811115612f2f578251825591602001919060010190612f14565b5b509050612f3d9190612f41565b5090565b5b80821115612f5a576000816000905550600101612f42565b5090565b6000612f71612f6c84613e3e565b613e19565b905082815260208101848484011115612f8d57612f8c6142f8565b5b612f988482856140b0565b509392505050565b6000612fb3612fae84613e6f565b613e19565b905082815260208101848484011115612fcf57612fce6142f8565b5b612fda8482856140b0565b509392505050565b600081359050612ff181614ade565b92915050565b60008083601f84011261300d5761300c6142ee565b5b8235905067ffffffffffffffff81111561302a576130296142e9565b5b602083019150836020820283011115613046576130456142f3565b5b9250929050565b60008135905061305c81614af5565b92915050565b60008135905061307181614b0c565b92915050565b60008151905061308681614b0c565b92915050565b600082601f8301126130a1576130a06142ee565b5b81356130b1848260208601612f5e565b91505092915050565b600082601f8301126130cf576130ce6142ee565b5b81356130df848260208601612fa0565b91505092915050565b6000813590506130f781614b23565b92915050565b60006020828403121561311357613112614302565b5b600061312184828501612fe2565b91505092915050565b6000806040838503121561314157613140614302565b5b600061314f85828601612fe2565b925050602061316085828601612fe2565b9150509250929050565b60008060006060848603121561318357613182614302565b5b600061319186828701612fe2565b93505060206131a286828701612fe2565b92505060406131b3868287016130e8565b9150509250925092565b600080600080608085870312156131d7576131d6614302565b5b60006131e587828801612fe2565b94505060206131f687828801612fe2565b9350506040613207878288016130e8565b925050606085013567ffffffffffffffff811115613228576132276142fd565b5b6132348782880161308c565b91505092959194509250565b6000806040838503121561325757613256614302565b5b600061326585828601612fe2565b92505060206132768582860161304d565b9150509250929050565b6000806040838503121561329757613296614302565b5b60006132a585828601612fe2565b92505060206132b6858286016130e8565b9150509250929050565b6000806000604084860312156132d9576132d8614302565b5b600084013567ffffffffffffffff8111156132f7576132f66142fd565b5b61330386828701612ff7565b93509350506020613316868287016130e8565b9150509250925092565b60006020828403121561333657613335614302565b5b600061334484828501613062565b91505092915050565b60006020828403121561336357613362614302565b5b600061337184828501613077565b91505092915050565b6000602082840312156133905761338f614302565b5b600082013567ffffffffffffffff8111156133ae576133ad6142fd565b5b6133ba848285016130ba565b91505092915050565b6000602082840312156133d9576133d8614302565b5b60006133e7848285016130e8565b91505092915050565b60006133fc8383613941565b60208301905092915050565b6134118161403c565b82525050565b600061342282613eb0565b61342c8185613ede565b935061343783613ea0565b8060005b8381101561346857815161344f88826133f0565b975061345a83613ed1565b92505060018101905061343b565b5085935050505092915050565b61347e8161404e565b82525050565b600061348f82613ebb565b6134998185613eef565b93506134a98185602086016140bf565b6134b281614307565b840191505092915050565b60006134c882613ec6565b6134d28185613f0b565b93506134e28185602086016140bf565b6134eb81614307565b840191505092915050565b600061350182613ec6565b61350b8185613f1c565b935061351b8185602086016140bf565b80840191505092915050565b6000613534602883613f0b565b915061353f82614318565b604082019050919050565b6000613557603c83613f0b565b915061356282614367565b604082019050919050565b600061357a602b83613f0b565b9150613585826143b6565b604082019050919050565b600061359d603283613f0b565b91506135a882614405565b604082019050919050565b60006135c0602683613f0b565b91506135cb82614454565b604082019050919050565b60006135e3601c83613f0b565b91506135ee826144a3565b602082019050919050565b6000613606601183613f0b565b9150613611826144cc565b602082019050919050565b6000613629602483613f0b565b9150613634826144f5565b604082019050919050565b600061364c601983613f0b565b915061365782614544565b602082019050919050565b600061366f601483613f0b565b915061367a8261456d565b602082019050919050565b6000613692602c83613f0b565b915061369d82614596565b604082019050919050565b60006136b5603883613f0b565b91506136c0826145e5565b604082019050919050565b60006136d8602a83613f0b565b91506136e382614634565b604082019050919050565b60006136fb602983613f0b565b915061370682614683565b604082019050919050565b600061371e602983613f0b565b9150613729826146d2565b604082019050919050565b6000613741602083613f0b565b915061374c82614721565b602082019050919050565b6000613764602c83613f0b565b915061376f8261474a565b604082019050919050565b6000613787602f83613f0b565b915061379282614799565b604082019050919050565b60006137aa602083613f0b565b91506137b5826147e8565b602082019050919050565b60006137cd602983613f0b565b91506137d882614811565b604082019050919050565b60006137f0602f83613f0b565b91506137fb82614860565b604082019050919050565b6000613813601783613f0b565b915061381e826148af565b602082019050919050565b6000613836602183613f0b565b9150613841826148d8565b604082019050919050565b6000613859602583613f0b565b915061386482614927565b604082019050919050565b600061387c600083613f00565b915061388782614976565b600082019050919050565b600061389f601083613f0b565b91506138aa82614979565b602082019050919050565b60006138c2603183613f0b565b91506138cd826149a2565b604082019050919050565b60006138e5602c83613f0b565b91506138f0826149f1565b604082019050919050565b6000613908603683613f0b565b915061391382614a40565b604082019050919050565b600061392b603983613f0b565b915061393682614a8f565b604082019050919050565b61394a816140a6565b82525050565b613959816140a6565b82525050565b600061396b82856134f6565b915061397782846134f6565b91508190509392505050565b600061398e8261386f565b9150819050919050565b60006020820190506139ad6000830184613408565b92915050565b60006080820190506139c86000830187613408565b6139d56020830186613408565b6139e26040830185613950565b81810360608301526139f48184613484565b905095945050505050565b60006020820190508181036000830152613a198184613417565b905092915050565b6000602082019050613a366000830184613475565b92915050565b60006020820190508181036000830152613a5681846134bd565b905092915050565b60006020820190508181036000830152613a7781613527565b9050919050565b60006020820190508181036000830152613a978161354a565b9050919050565b60006020820190508181036000830152613ab78161356d565b9050919050565b60006020820190508181036000830152613ad781613590565b9050919050565b60006020820190508181036000830152613af7816135b3565b9050919050565b60006020820190508181036000830152613b17816135d6565b9050919050565b60006020820190508181036000830152613b37816135f9565b9050919050565b60006020820190508181036000830152613b578161361c565b9050919050565b60006020820190508181036000830152613b778161363f565b9050919050565b60006020820190508181036000830152613b9781613662565b9050919050565b60006020820190508181036000830152613bb781613685565b9050919050565b60006020820190508181036000830152613bd7816136a8565b9050919050565b60006020820190508181036000830152613bf7816136cb565b9050919050565b60006020820190508181036000830152613c17816136ee565b9050919050565b60006020820190508181036000830152613c3781613711565b9050919050565b60006020820190508181036000830152613c5781613734565b9050919050565b60006020820190508181036000830152613c7781613757565b9050919050565b60006020820190508181036000830152613c978161377a565b9050919050565b60006020820190508181036000830152613cb78161379d565b9050919050565b60006020820190508181036000830152613cd7816137c0565b9050919050565b60006020820190508181036000830152613cf7816137e3565b9050919050565b60006020820190508181036000830152613d1781613806565b9050919050565b60006020820190508181036000830152613d3781613829565b9050919050565b60006020820190508181036000830152613d578161384c565b9050919050565b60006020820190508181036000830152613d7781613892565b9050919050565b60006020820190508181036000830152613d97816138b5565b9050919050565b60006020820190508181036000830152613db7816138d8565b9050919050565b60006020820190508181036000830152613dd7816138fb565b9050919050565b60006020820190508181036000830152613df78161391e565b9050919050565b6000602082019050613e136000830184613950565b92915050565b6000613e23613e34565b9050613e2f8282614124565b919050565b6000604051905090565b600067ffffffffffffffff821115613e5957613e586142ba565b5b613e6282614307565b9050602081019050919050565b600067ffffffffffffffff821115613e8a57613e896142ba565b5b613e9382614307565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f32826140a6565b9150613f3d836140a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7257613f716141cf565b5b828201905092915050565b6000613f88826140a6565b9150613f93836140a6565b925082613fa357613fa26141fe565b5b828204905092915050565b6000613fb9826140a6565b9150613fc4836140a6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ffd57613ffc6141cf565b5b828202905092915050565b6000614013826140a6565b915061401e836140a6565b925082821015614031576140306141cf565b5b828203905092915050565b600061404782614086565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140dd5780820151818401526020810190506140c2565b838111156140ec576000848401525b50505050565b6000600282049050600182168061410a57607f821691505b6020821081141561411e5761411d61422d565b5b50919050565b61412d82614307565b810181811067ffffffffffffffff8211171561414c5761414b6142ba565b5b80604052505050565b6000614160826140a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614193576141926141cf565b5b600182019050919050565b60006141a9826140a6565b91506141b4836140a6565b9250826141c4576141c36141fe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45786365656473206d6178696d756d20737570706c79206f662042616279417060008201527f6573526573637565000000000000000000000000000000000000000000000000602082015250565b7f50757263686173652077696c6c20657863656564206d61782070726573616c6560008201527f206d696e7420616d6f756e74206f662074686973206164647265737300000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f50726573616c6520697320636c6f736564000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d20312042616279417065735265736375652073686f756c642060008201527f6265206d696e7465640000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206f70656e20796574000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f41646472657373206e6f7420656c696769626c6520666f722070726573616c6560008201527f206d696e74000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20352042616279417065735265736375652063616e2062652060008201527f6d696e74656420706572207472616e73616374696f6e00000000000000000000602082015250565b7f4d696e696d756d20312042616279417065735265736375652068617320746f2060008201527f6265206d696e74656420706572207472616e73616374696f6e00000000000000602082015250565b614ae78161403c565b8114614af257600080fd5b50565b614afe8161404e565b8114614b0957600080fd5b50565b614b158161405a565b8114614b2057600080fd5b50565b614b2c816140a6565b8114614b3757600080fd5b5056fea2646970667358221220ecdfc1bb043e79ff5ccbf35cc9b9bad5ab4d4169ca2252ba092e48079870c82d64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106dc578063c9b298f114610719578063e985e9c514610735578063f2fde38b14610772578063f81227d41461079b576101ee565b8063a22cb46514610634578063b409dd161461065d578063b88d4fde14610688578063bee6348a146106b1576101ee565b806391b7f5ed116100dc57806391b7f5ed1461058a57806395d89b41146105b357806399288dbb146105de578063a035b1fe14610609576101ee565b806370a08231146104f4578063715018a614610531578063853828b6146105485780638da5cb5b1461055f576101ee565b80632f745c59116101855780634f6ccce7116101545780634f6ccce71461042857806355f804b3146104655780636352211e1461048e5780636b6384db146104cb576101ee565b80632f745c591461036e57806334918dfd146103ab57806342842e0e146103c2578063438b6300146103eb576101ee565b8063081812fc116101c1578063081812fc146102b4578063095ea7b3146102f157806318160ddd1461031a57806323b872dd14610345576101ee565b806301ffc9a7146101f3578063049c7c0d1461023057806306fdde031461024c578063080a57f914610277575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190613320565b6107b2565b6040516102279190613a21565b60405180910390f35b61024a600480360381019061024591906133c3565b61082c565b005b34801561025857600080fd5b50610261610a15565b60405161026e9190613a3c565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906130fd565b610aa7565b6040516102ab9190613dfe565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906133c3565b610abf565b6040516102e89190613998565b60405180910390f35b3480156102fd57600080fd5b5061031860048036038101906103139190613280565b610b44565b005b34801561032657600080fd5b5061032f610c5c565b60405161033c9190613dfe565b60405180910390f35b34801561035157600080fd5b5061036c6004803603810190610367919061316a565b610c69565b005b34801561037a57600080fd5b5061039560048036038101906103909190613280565b610cc9565b6040516103a29190613dfe565b60405180910390f35b3480156103b757600080fd5b506103c0610d6e565b005b3480156103ce57600080fd5b506103e960048036038101906103e4919061316a565b610e16565b005b3480156103f757600080fd5b50610412600480360381019061040d91906130fd565b610e36565b60405161041f91906139ff565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a91906133c3565b610ee4565b60405161045c9190613dfe565b60405180910390f35b34801561047157600080fd5b5061048c6004803603810190610487919061337a565b610f55565b005b34801561049a57600080fd5b506104b560048036038101906104b091906133c3565b610feb565b6040516104c29190613998565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed91906132c0565b61109d565b005b34801561050057600080fd5b5061051b600480360381019061051691906130fd565b6111ab565b6040516105289190613dfe565b60405180910390f35b34801561053d57600080fd5b50610546611263565b005b34801561055457600080fd5b5061055d6112eb565b005b34801561056b57600080fd5b50610574611416565b6040516105819190613998565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac91906133c3565b611440565b005b3480156105bf57600080fd5b506105c86114c6565b6040516105d59190613a3c565b60405180910390f35b3480156105ea57600080fd5b506105f3611558565b6040516106009190613a21565b60405180910390f35b34801561061557600080fd5b5061061e61156b565b60405161062b9190613dfe565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613240565b611571565b005b34801561066957600080fd5b506106726116f2565b60405161067f9190613dfe565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa91906131bd565b6116f8565b005b3480156106bd57600080fd5b506106c661175a565b6040516106d39190613a21565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe91906133c3565b61176d565b6040516107109190613a3c565b60405180910390f35b610733600480360381019061072e91906133c3565b611814565b005b34801561074157600080fd5b5061075c6004803603810190610757919061312a565b611b2e565b6040516107699190613a21565b60405180910390f35b34801561077e57600080fd5b50610799600480360381019061079491906130fd565b611bc2565b005b3480156107a757600080fd5b506107b0611cba565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610825575061082482611d62565b5b9050919050565b61271081610838610c5c565b6108429190613f27565b1115610883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087a90613a5e565b60405180910390fd5b600081116108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd90613dde565b60405180910390fd5b6108ce611416565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109e457600e60009054906101000a900460ff1661094f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094690613b7e565b60405180910390fd5b6005811115610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a90613dbe565b60405180910390fd5b80600c546109a19190613fae565b3410156109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da90613c7e565b60405180910390fd5b5b600033905060005b82811015610a10576109fd82611e44565b8080610a0890614155565b9150506109ec565b505050565b606060008054610a24906140f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a50906140f2565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b600f6020528060005260406000206000915090505481565b6000610aca82611ea1565b610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0090613c5e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4f82610feb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb790613d1e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bdf611f0d565b73ffffffffffffffffffffffffffffffffffffffff161480610c0e5750610c0d81610c08611f0d565b611b2e565b5b610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4490613bbe565b60405180910390fd5b610c578383611f15565b505050565b6000600880549050905090565b610c7a610c74611f0d565b82611fce565b610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090613d7e565b60405180910390fd5b610cc48383836120ac565b505050565b6000610cd4836111ab565b8210610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90613a9e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d76611f0d565b73ffffffffffffffffffffffffffffffffffffffff16610d94611416565b73ffffffffffffffffffffffffffffffffffffffff1614610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de190613c9e565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610e31838383604051806020016040528060008152506116f8565b505050565b60606000610e43836111ab565b905060008167ffffffffffffffff811115610e6157610e606142ba565b5b604051908082528060200260200182016040528015610e8f5781602001602082028036833780820191505090505b50905060005b82811015610ed957610ea78582610cc9565b828281518110610eba57610eb961428b565b5b6020026020010181815250508080610ed190614155565b915050610e95565b508092505050919050565b6000610eee610c5c565b8210610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690613d9e565b60405180910390fd5b60088281548110610f4357610f4261428b565b5b90600052602060002001549050919050565b610f5d611f0d565b73ffffffffffffffffffffffffffffffffffffffff16610f7b611416565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890613c9e565b60405180910390fd5b80600d9080519060200190610fe7929190612ebb565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90613bfe565b60405180910390fd5b80915050919050565b6110a5611f0d565b73ffffffffffffffffffffffffffffffffffffffff166110c3611416565b73ffffffffffffffffffffffffffffffffffffffff1614611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090613c9e565b60405180910390fd5b60005b838390508110156111a55781600f600086868581811061113f5761113e61428b565b5b905060200201602081019061115491906130fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061119d90614155565b91505061111c565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390613bde565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61126b611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611289611416565b73ffffffffffffffffffffffffffffffffffffffff16146112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690613c9e565b60405180910390fd5b6112e96000612308565b565b6112f3611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611311611416565b73ffffffffffffffffffffffffffffffffffffffff1614611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90613c9e565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161138d90613983565b60006040518083038185875af1925050503d80600081146113ca576040519150601f19603f3d011682016040523d82523d6000602084013e6113cf565b606091505b5050905080611413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140a90613d5e565b60405180910390fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611448611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611466611416565b73ffffffffffffffffffffffffffffffffffffffff16146114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390613c9e565b60405180910390fd5b80600c8190555050565b6060600180546114d5906140f2565b80601f0160208091040260200160405190810160405280929190818152602001828054611501906140f2565b801561154e5780601f106115235761010080835404028352916020019161154e565b820191906000526020600020905b81548152906001019060200180831161153157829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b600c5481565b611579611f0d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90613b5e565b60405180910390fd5b80600560006115f4611f0d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116a1611f0d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116e69190613a21565b60405180910390a35050565b61271081565b611709611703611f0d565b83611fce565b611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90613d7e565b60405180910390fd5b611754848484846123ce565b50505050565b600e60019054906101000a900460ff1681565b606061177882611ea1565b6117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90613cde565b60405180910390fd5b60006117c161242a565b905060008151116117e1576040518060200160405280600081525061180c565b806117eb846124bc565b6040516020016117fc92919061395f565b6040516020818303038152906040525b915050919050565b60003390506000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e60019054906101000a900460ff166118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390613cfe565b60405180910390fd5b600e60009054906101000a900460ff16156118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390613b1e565b60405180910390fd5b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613d3e565b60405180910390fd5b600083116119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b890613c1e565b60405180910390fd5b80831115611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90613a7e565b60405180910390fd5b61271083611a10610c5c565b611a1a9190613f27565b1115611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5290613a5e565b60405180910390fd5b82600c54611a699190613fae565b341015611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa290613c7e565b60405180910390fd5b82600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611afa9190614008565b9250508190555060005b83811015611b2857611b1583611e44565b8080611b2090614155565b915050611b04565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bca611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611be8611416565b73ffffffffffffffffffffffffffffffffffffffff1614611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3590613c9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca590613ade565b60405180910390fd5b611cb781612308565b50565b611cc2611f0d565b73ffffffffffffffffffffffffffffffffffffffff16611ce0611416565b73ffffffffffffffffffffffffffffffffffffffff1614611d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2d90613c9e565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e2d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611e3d5750611e3c8261261d565b5b9050919050565b611e4e600b612687565b6000611e5a600b61269d565b9050611e6682826126ab565b7fc5367d6b6a54677b5e494ed86c1b62dd5625413519a9ad41ac2dc4d0c04e931881604051611e959190613dfe565b60405180910390a15050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f8883610feb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611fd982611ea1565b612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f90613b9e565b60405180910390fd5b600061202383610feb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061209257508373ffffffffffffffffffffffffffffffffffffffff1661207a84610abf565b73ffffffffffffffffffffffffffffffffffffffff16145b806120a357506120a28185611b2e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120cc82610feb565b73ffffffffffffffffffffffffffffffffffffffff1614612122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211990613cbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218990613b3e565b60405180910390fd5b61219d8383836126c9565b6121a8600082611f15565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f89190614008565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461224f9190613f27565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123d98484846120ac565b6123e5848484846127dd565b612424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241b90613abe565b60405180910390fd5b50505050565b6060600d8054612439906140f2565b80601f0160208091040260200160405190810160405280929190818152602001828054612465906140f2565b80156124b25780601f10612487576101008083540402835291602001916124b2565b820191906000526020600020905b81548152906001019060200180831161249557829003601f168201915b5050505050905090565b60606000821415612504576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612618565b600082905060005b6000821461253657808061251f90614155565b915050600a8261252f9190613f7d565b915061250c565b60008167ffffffffffffffff811115612552576125516142ba565b5b6040519080825280601f01601f1916602001820160405280156125845781602001600182028036833780820191505090505b5090505b600085146126115760018261259d9190614008565b9150600a856125ac919061419e565b60306125b89190613f27565b60f81b8183815181106125ce576125cd61428b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561260a9190613f7d565b9450612588565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6126c5828260405180602001604052806000815250612974565b5050565b6126d48383836129cf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561271757612712816129d4565b612756565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612755576127548382612a1d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127995761279481612b8a565b6127d8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146127d7576127d68282612c5b565b5b5b505050565b60006127fe8473ffffffffffffffffffffffffffffffffffffffff16612cda565b15612967578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612827611f0d565b8786866040518563ffffffff1660e01b815260040161284994939291906139b3565b602060405180830381600087803b15801561286357600080fd5b505af192505050801561289457506040513d601f19601f82011682018060405250810190612891919061334d565b60015b612917573d80600081146128c4576040519150601f19603f3d011682016040523d82523d6000602084013e6128c9565b606091505b5060008151141561290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690613abe565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061296c565b600190505b949350505050565b61297e8383612ced565b61298b60008484846127dd565b6129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c190613abe565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612a2a846111ab565b612a349190614008565b9050600060076000848152602001908152602001600020549050818114612b19576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b9e9190614008565b9050600060096000848152602001908152602001600020549050600060088381548110612bce57612bcd61428b565b5b906000526020600020015490508060088381548110612bf057612bef61428b565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c3f57612c3e61425c565b5b6001900381819060005260206000200160009055905550505050565b6000612c66836111ab565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5490613c3e565b60405180910390fd5b612d6681611ea1565b15612da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9d90613afe565b60405180910390fd5b612db2600083836126c9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e029190613f27565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612ec7906140f2565b90600052602060002090601f016020900481019282612ee95760008555612f30565b82601f10612f0257805160ff1916838001178555612f30565b82800160010185558215612f30579182015b82811115612f2f578251825591602001919060010190612f14565b5b509050612f3d9190612f41565b5090565b5b80821115612f5a576000816000905550600101612f42565b5090565b6000612f71612f6c84613e3e565b613e19565b905082815260208101848484011115612f8d57612f8c6142f8565b5b612f988482856140b0565b509392505050565b6000612fb3612fae84613e6f565b613e19565b905082815260208101848484011115612fcf57612fce6142f8565b5b612fda8482856140b0565b509392505050565b600081359050612ff181614ade565b92915050565b60008083601f84011261300d5761300c6142ee565b5b8235905067ffffffffffffffff81111561302a576130296142e9565b5b602083019150836020820283011115613046576130456142f3565b5b9250929050565b60008135905061305c81614af5565b92915050565b60008135905061307181614b0c565b92915050565b60008151905061308681614b0c565b92915050565b600082601f8301126130a1576130a06142ee565b5b81356130b1848260208601612f5e565b91505092915050565b600082601f8301126130cf576130ce6142ee565b5b81356130df848260208601612fa0565b91505092915050565b6000813590506130f781614b23565b92915050565b60006020828403121561311357613112614302565b5b600061312184828501612fe2565b91505092915050565b6000806040838503121561314157613140614302565b5b600061314f85828601612fe2565b925050602061316085828601612fe2565b9150509250929050565b60008060006060848603121561318357613182614302565b5b600061319186828701612fe2565b93505060206131a286828701612fe2565b92505060406131b3868287016130e8565b9150509250925092565b600080600080608085870312156131d7576131d6614302565b5b60006131e587828801612fe2565b94505060206131f687828801612fe2565b9350506040613207878288016130e8565b925050606085013567ffffffffffffffff811115613228576132276142fd565b5b6132348782880161308c565b91505092959194509250565b6000806040838503121561325757613256614302565b5b600061326585828601612fe2565b92505060206132768582860161304d565b9150509250929050565b6000806040838503121561329757613296614302565b5b60006132a585828601612fe2565b92505060206132b6858286016130e8565b9150509250929050565b6000806000604084860312156132d9576132d8614302565b5b600084013567ffffffffffffffff8111156132f7576132f66142fd565b5b61330386828701612ff7565b93509350506020613316868287016130e8565b9150509250925092565b60006020828403121561333657613335614302565b5b600061334484828501613062565b91505092915050565b60006020828403121561336357613362614302565b5b600061337184828501613077565b91505092915050565b6000602082840312156133905761338f614302565b5b600082013567ffffffffffffffff8111156133ae576133ad6142fd565b5b6133ba848285016130ba565b91505092915050565b6000602082840312156133d9576133d8614302565b5b60006133e7848285016130e8565b91505092915050565b60006133fc8383613941565b60208301905092915050565b6134118161403c565b82525050565b600061342282613eb0565b61342c8185613ede565b935061343783613ea0565b8060005b8381101561346857815161344f88826133f0565b975061345a83613ed1565b92505060018101905061343b565b5085935050505092915050565b61347e8161404e565b82525050565b600061348f82613ebb565b6134998185613eef565b93506134a98185602086016140bf565b6134b281614307565b840191505092915050565b60006134c882613ec6565b6134d28185613f0b565b93506134e28185602086016140bf565b6134eb81614307565b840191505092915050565b600061350182613ec6565b61350b8185613f1c565b935061351b8185602086016140bf565b80840191505092915050565b6000613534602883613f0b565b915061353f82614318565b604082019050919050565b6000613557603c83613f0b565b915061356282614367565b604082019050919050565b600061357a602b83613f0b565b9150613585826143b6565b604082019050919050565b600061359d603283613f0b565b91506135a882614405565b604082019050919050565b60006135c0602683613f0b565b91506135cb82614454565b604082019050919050565b60006135e3601c83613f0b565b91506135ee826144a3565b602082019050919050565b6000613606601183613f0b565b9150613611826144cc565b602082019050919050565b6000613629602483613f0b565b9150613634826144f5565b604082019050919050565b600061364c601983613f0b565b915061365782614544565b602082019050919050565b600061366f601483613f0b565b915061367a8261456d565b602082019050919050565b6000613692602c83613f0b565b915061369d82614596565b604082019050919050565b60006136b5603883613f0b565b91506136c0826145e5565b604082019050919050565b60006136d8602a83613f0b565b91506136e382614634565b604082019050919050565b60006136fb602983613f0b565b915061370682614683565b604082019050919050565b600061371e602983613f0b565b9150613729826146d2565b604082019050919050565b6000613741602083613f0b565b915061374c82614721565b602082019050919050565b6000613764602c83613f0b565b915061376f8261474a565b604082019050919050565b6000613787602f83613f0b565b915061379282614799565b604082019050919050565b60006137aa602083613f0b565b91506137b5826147e8565b602082019050919050565b60006137cd602983613f0b565b91506137d882614811565b604082019050919050565b60006137f0602f83613f0b565b91506137fb82614860565b604082019050919050565b6000613813601783613f0b565b915061381e826148af565b602082019050919050565b6000613836602183613f0b565b9150613841826148d8565b604082019050919050565b6000613859602583613f0b565b915061386482614927565b604082019050919050565b600061387c600083613f00565b915061388782614976565b600082019050919050565b600061389f601083613f0b565b91506138aa82614979565b602082019050919050565b60006138c2603183613f0b565b91506138cd826149a2565b604082019050919050565b60006138e5602c83613f0b565b91506138f0826149f1565b604082019050919050565b6000613908603683613f0b565b915061391382614a40565b604082019050919050565b600061392b603983613f0b565b915061393682614a8f565b604082019050919050565b61394a816140a6565b82525050565b613959816140a6565b82525050565b600061396b82856134f6565b915061397782846134f6565b91508190509392505050565b600061398e8261386f565b9150819050919050565b60006020820190506139ad6000830184613408565b92915050565b60006080820190506139c86000830187613408565b6139d56020830186613408565b6139e26040830185613950565b81810360608301526139f48184613484565b905095945050505050565b60006020820190508181036000830152613a198184613417565b905092915050565b6000602082019050613a366000830184613475565b92915050565b60006020820190508181036000830152613a5681846134bd565b905092915050565b60006020820190508181036000830152613a7781613527565b9050919050565b60006020820190508181036000830152613a978161354a565b9050919050565b60006020820190508181036000830152613ab78161356d565b9050919050565b60006020820190508181036000830152613ad781613590565b9050919050565b60006020820190508181036000830152613af7816135b3565b9050919050565b60006020820190508181036000830152613b17816135d6565b9050919050565b60006020820190508181036000830152613b37816135f9565b9050919050565b60006020820190508181036000830152613b578161361c565b9050919050565b60006020820190508181036000830152613b778161363f565b9050919050565b60006020820190508181036000830152613b9781613662565b9050919050565b60006020820190508181036000830152613bb781613685565b9050919050565b60006020820190508181036000830152613bd7816136a8565b9050919050565b60006020820190508181036000830152613bf7816136cb565b9050919050565b60006020820190508181036000830152613c17816136ee565b9050919050565b60006020820190508181036000830152613c3781613711565b9050919050565b60006020820190508181036000830152613c5781613734565b9050919050565b60006020820190508181036000830152613c7781613757565b9050919050565b60006020820190508181036000830152613c978161377a565b9050919050565b60006020820190508181036000830152613cb78161379d565b9050919050565b60006020820190508181036000830152613cd7816137c0565b9050919050565b60006020820190508181036000830152613cf7816137e3565b9050919050565b60006020820190508181036000830152613d1781613806565b9050919050565b60006020820190508181036000830152613d3781613829565b9050919050565b60006020820190508181036000830152613d578161384c565b9050919050565b60006020820190508181036000830152613d7781613892565b9050919050565b60006020820190508181036000830152613d97816138b5565b9050919050565b60006020820190508181036000830152613db7816138d8565b9050919050565b60006020820190508181036000830152613dd7816138fb565b9050919050565b60006020820190508181036000830152613df78161391e565b9050919050565b6000602082019050613e136000830184613950565b92915050565b6000613e23613e34565b9050613e2f8282614124565b919050565b6000604051905090565b600067ffffffffffffffff821115613e5957613e586142ba565b5b613e6282614307565b9050602081019050919050565b600067ffffffffffffffff821115613e8a57613e896142ba565b5b613e9382614307565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f32826140a6565b9150613f3d836140a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7257613f716141cf565b5b828201905092915050565b6000613f88826140a6565b9150613f93836140a6565b925082613fa357613fa26141fe565b5b828204905092915050565b6000613fb9826140a6565b9150613fc4836140a6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ffd57613ffc6141cf565b5b828202905092915050565b6000614013826140a6565b915061401e836140a6565b925082821015614031576140306141cf565b5b828203905092915050565b600061404782614086565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140dd5780820151818401526020810190506140c2565b838111156140ec576000848401525b50505050565b6000600282049050600182168061410a57607f821691505b6020821081141561411e5761411d61422d565b5b50919050565b61412d82614307565b810181811067ffffffffffffffff8211171561414c5761414b6142ba565b5b80604052505050565b6000614160826140a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614193576141926141cf565b5b600182019050919050565b60006141a9826140a6565b91506141b4836140a6565b9250826141c4576141c36141fe565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45786365656473206d6178696d756d20737570706c79206f662042616279417060008201527f6573526573637565000000000000000000000000000000000000000000000000602082015250565b7f50757263686173652077696c6c20657863656564206d61782070726573616c6560008201527f206d696e7420616d6f756e74206f662074686973206164647265737300000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f50726573616c6520697320636c6f736564000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206f70656e20796574000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d20312042616279417065735265736375652073686f756c642060008201527f6265206d696e7465640000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206f70656e20796574000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f41646472657373206e6f7420656c696769626c6520666f722070726573616c6560008201527f206d696e74000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20352042616279417065735265736375652063616e2062652060008201527f6d696e74656420706572207472616e73616374696f6e00000000000000000000602082015250565b7f4d696e696d756d20312042616279417065735265736375652068617320746f2060008201527f6265206d696e74656420706572207472616e73616374696f6e00000000000000602082015250565b614ae78161403c565b8114614af257600080fd5b50565b614afe8161404e565b8114614b0957600080fd5b50565b614b158161405a565b8114614b2057600080fd5b50565b614b2c816140a6565b8114614b3757600080fd5b5056fea2646970667358221220ecdfc1bb043e79ff5ccbf35cc9b9bad5ab4d4169ca2252ba092e48079870c82d64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46358:4110:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39872:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49283:852;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27032:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46707:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28725:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28248:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40675:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29784:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40256:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47635:83;;;;;;;;;;;;;:::i;:::-;;30231:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46986:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40865:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47379:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26639:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48010:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26282:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9739:94;;;;;;;;;;;;;:::i;:::-;;47826:176;;;;;;;;;;;;;:::i;:::-;;9088:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47488:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27201:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46634:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46548:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29105:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46502:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30487:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46669:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27376:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48250:998;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29503:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9988:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47726:92;;;;;;;;;;;;;:::i;:::-;;39872:300;40019:4;40076:35;40061:50;;;:11;:50;;;;:103;;;;40128:36;40152:11;40128:23;:36::i;:::-;40061:103;40041:123;;39872:300;;;:::o;49283:852::-;46536:5;49393:6;49377:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:33;;49355:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;49520:1;49511:6;:10;49489:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;49635:7;:5;:7::i;:::-;49621:21;;:10;:21;;;49617:388;;49667:8;;;;;;;;;;;49659:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;49751:1;49741:6;:11;;49715:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;49904:6;49896:5;;:14;;;;:::i;:::-;49883:9;:27;;49857:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;49617:388;50017:11;50031:10;50017:24;;50059:9;50054:74;50078:6;50074:1;:10;50054:74;;;50106:10;50112:3;50106:5;:10::i;:::-;50086:3;;;;;:::i;:::-;;;;50054:74;;;;49344:791;49283:852;:::o;27032:100::-;27086:13;27119:5;27112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27032:100;:::o;46707:48::-;;;;;;;;;;;;;;;;;:::o;28725:308::-;28846:7;28893:16;28901:7;28893;:16::i;:::-;28871:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;29001:15;:24;29017:7;29001:24;;;;;;;;;;;;;;;;;;;;;28994:31;;28725:308;;;:::o;28248:411::-;28329:13;28345:23;28360:7;28345:14;:23::i;:::-;28329:39;;28393:5;28387:11;;:2;:11;;;;28379:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28487:5;28471:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28496:37;28513:5;28520:12;:10;:12::i;:::-;28496:16;:37::i;:::-;28471:62;28449:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28630:21;28639:2;28643:7;28630:8;:21::i;:::-;28318:341;28248:411;;:::o;40675:113::-;40736:7;40763:10;:17;;;;40756:24;;40675:113;:::o;29784:376::-;29993:41;30012:12;:10;:12::i;:::-;30026:7;29993:18;:41::i;:::-;29971:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30124:28;30134:4;30140:2;30144:7;30124:9;:28::i;:::-;29784:376;;;:::o;40256:343::-;40398:7;40453:23;40470:5;40453:16;:23::i;:::-;40445:5;:31;40423:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;40565:12;:19;40578:5;40565:19;;;;;;;;;;;;;;;:26;40585:5;40565:26;;;;;;;;;;;;40558:33;;40256:343;;;;:::o;47635:83::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47702:8:::1;;;;;;;;;;;47701:9;47690:8;;:20;;;;;;;;;;;;;;;;;;47635:83::o:0;30231:185::-;30369:39;30386:4;30392:2;30396:7;30369:39;;;;;;;;;;;;:16;:39::i;:::-;30231:185;;;:::o;46986:385::-;47075:16;47109:18;47130:17;47140:6;47130:9;:17::i;:::-;47109:38;;47160:25;47202:10;47188:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47160:53;;47229:9;47224:112;47248:10;47244:1;:14;47224:112;;;47294:30;47314:6;47322:1;47294:19;:30::i;:::-;47280:8;47289:1;47280:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;47260:3;;;;;:::i;:::-;;;;47224:112;;;;47355:8;47348:15;;;;46986:385;;;:::o;40865:320::-;40985:7;41040:30;:28;:30::i;:::-;41032:5;:38;41010:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;41160:10;41171:5;41160:17;;;;;;;;:::i;:::-;;;;;;;;;;41153:24;;40865:320;;;:::o;47379:101::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47465:7:::1;47450:12;:22;;;;;;;;;;;;:::i;:::-;;47379:101:::0;:::o;26639:326::-;26756:7;26781:13;26797:7;:16;26805:7;26797:16;;;;;;;;;;;;;;;;;;;;;26781:32;;26863:1;26846:19;;:5;:19;;;;26824:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;26952:5;26945:12;;;26639:326;;;:::o;48010:232::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48137:9:::1;48132:103;48156:5;;:12;;48152:1;:16;48132:103;;;48216:7;48190:13;:23;48204:5;;48210:1;48204:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;48190:23;;;;;;;;;;;;;;;:33;;;;48170:3;;;;;:::i;:::-;;;;48132:103;;;;48010:232:::0;;;:::o;26282:295::-;26399:7;26463:1;26446:19;;:5;:19;;;;26424:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26553:9;:16;26563:5;26553:16;;;;;;;;;;;;;;;;26546:23;;26282:295;;;:::o;9739:94::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9804:21:::1;9822:1;9804:9;:21::i;:::-;9739:94::o:0;47826:176::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47880:12:::1;47898:10;:15;;47921:21;47898:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47879:68;;;47966:7;47958:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;47868:134;47826:176::o:0;9088:87::-;9134:7;9161:6;;;;;;;;;;;9154:13;;9088:87;:::o;47488:92::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47563:9:::1;47555:5;:17;;;;47488:92:::0;:::o;27201:104::-;27257:13;27290:7;27283:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27201:104;:::o;46634:28::-;;;;;;;;;;;;;:::o;46548:40::-;;;;:::o;29105:327::-;29252:12;:10;:12::i;:::-;29240:24;;:8;:24;;;;29232:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29352:8;29307:18;:32;29326:12;:10;:12::i;:::-;29307:32;;;;;;;;;;;;;;;:42;29340:8;29307:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29405:8;29376:48;;29391:12;:10;:12::i;:::-;29376:48;;;29415:8;29376:48;;;;;;:::i;:::-;;;;;;;;29105:327;;:::o;46502:39::-;46536:5;46502:39;:::o;30487:365::-;30676:41;30695:12;:10;:12::i;:::-;30709:7;30676:18;:41::i;:::-;30654:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30805:39;30819:4;30825:2;30829:7;30838:5;30805:13;:39::i;:::-;30487:365;;;;:::o;46669:31::-;;;;;;;;;;;;;:::o;27376:468::-;27494:13;27547:16;27555:7;27547;:16::i;:::-;27525:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;27651:21;27675:10;:8;:10::i;:::-;27651:34;;27740:1;27722:7;27716:21;:25;:120;;;;;;;;;;;;;;;;;27785:7;27794:18;:7;:16;:18::i;:::-;27768:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27716:120;27696:140;;;27376:468;;;:::o;48250:998::-;48315:12;48330:10;48315:25;;48351:21;48375:13;:19;48389:4;48375:19;;;;;;;;;;;;;;;;48351:43;;48413:11;;;;;;;;;;;48405:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;48472:8;;;;;;;;;;;48471:9;48463:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;48557:1;48535:13;:19;48549:4;48535:19;;;;;;;;;;;;;;;;:23;48513:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;48651:1;48642:6;:10;48634:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48741:13;48731:6;:23;;48709:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;46536:5;48891:6;48875:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:33;;48853:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;49030:6;49022:5;;:14;;;;:::i;:::-;49009:9;:27;;48987:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;49147:6;49124:13;:19;49138:4;49124:19;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;49171:9;49166:75;49190:6;49186:1;:10;49166:75;;;49218:11;49224:4;49218:5;:11::i;:::-;49198:3;;;;;:::i;:::-;;;;49166:75;;;;48304:944;;48250:998;:::o;29503:214::-;29645:4;29674:18;:25;29693:5;29674:25;;;;;;;;;;;;;;;:35;29700:8;29674:35;;;;;;;;;;;;;;;;;;;;;;;;;29667:42;;29503:214;;;;:::o;9988:229::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10111:1:::1;10091:22;;:8;:22;;;;10069:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;10190:19;10200:8;10190:9;:19::i;:::-;9988:229:::0;:::o;47726:92::-;9319:12;:10;:12::i;:::-;9308:23;;:7;:5;:7::i;:::-;:23;;;9300:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47799:11:::1;;;;;;;;;;;47798:12;47784:11;;:26;;;;;;;;;;;;;;;;;;47726:92::o:0;25863:355::-;26010:4;26067:25;26052:40;;;:11;:40;;;;:105;;;;26124:33;26109:48;;;:11;:48;;;;26052:105;:158;;;;26174:36;26198:11;26174:23;:36::i;:::-;26052:158;26032:178;;25863:355;;;:::o;50143:201::-;50190:20;:8;:18;:20::i;:::-;50221:15;50239:18;:8;:16;:18::i;:::-;50221:36;;50268:23;50278:3;50283:7;50268:9;:23::i;:::-;50307:29;50328:7;50307:29;;;;;;:::i;:::-;;;;;;;;50179:165;50143:201;:::o;32399:127::-;32464:4;32516:1;32488:30;;:7;:16;32496:7;32488:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32481:37;;32399:127;;;:::o;2061:98::-;2114:7;2141:10;2134:17;;2061:98;:::o;36522:174::-;36624:2;36597:15;:24;36613:7;36597:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36680:7;36676:2;36642:46;;36651:23;36666:7;36651:14;:23::i;:::-;36642:46;;;;;;;;;;;;36522:174;;:::o;32693:452::-;32822:4;32866:16;32874:7;32866;:16::i;:::-;32844:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32965:13;32981:23;32996:7;32981:14;:23::i;:::-;32965:39;;33034:5;33023:16;;:7;:16;;;:64;;;;33080:7;33056:31;;:20;33068:7;33056:11;:20::i;:::-;:31;;;33023:64;:113;;;;33104:32;33121:5;33128:7;33104:16;:32::i;:::-;33023:113;33015:122;;;32693:452;;;;:::o;35789:615::-;35962:4;35935:31;;:23;35950:7;35935:14;:23::i;:::-;:31;;;35913:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;36068:1;36054:16;;:2;:16;;;;36046:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36124:39;36145:4;36151:2;36155:7;36124:20;:39::i;:::-;36228:29;36245:1;36249:7;36228:8;:29::i;:::-;36289:1;36270:9;:15;36280:4;36270:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36318:1;36301:9;:13;36311:2;36301:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36349:2;36330:7;:16;36338:7;36330:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36388:7;36384:2;36369:27;;36378:4;36369:27;;;;;;;;;;;;35789:615;;;:::o;10225:173::-;10281:16;10300:6;;;;;;;;;;;10281:25;;10326:8;10317:6;;:17;;;;;;;;;;;;;;;;;;10381:8;10350:40;;10371:8;10350:40;;;;;;;;;;;;10270:128;10225:173;:::o;31734:352::-;31891:28;31901:4;31907:2;31911:7;31891:9;:28::i;:::-;31952:48;31975:4;31981:2;31985:7;31994:5;31952:22;:48::i;:::-;31930:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;31734:352;;;;:::o;50352:113::-;50412:13;50445:12;50438:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50352:113;:::o;12730:723::-;12786:13;13016:1;13007:5;:10;13003:53;;;13034:10;;;;;;;;;;;;;;;;;;;;;13003:53;13066:12;13081:5;13066:20;;13097:14;13122:78;13137:1;13129:4;:9;13122:78;;13155:8;;;;;:::i;:::-;;;;13186:2;13178:10;;;;;:::i;:::-;;;13122:78;;;13210:19;13242:6;13232:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13210:39;;13260:154;13276:1;13267:5;:10;13260:154;;13304:1;13294:11;;;;;:::i;:::-;;;13371:2;13363:5;:10;;;;:::i;:::-;13350:2;:24;;;;:::i;:::-;13337:39;;13320:6;13327;13320:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;13400:2;13391:11;;;;;:::i;:::-;;;13260:154;;;13438:6;13424:21;;;;;12730:723;;;;:::o;12209:207::-;12339:4;12383:25;12368:40;;;:11;:40;;;;12361:47;;12209:207;;;:::o;970:127::-;1077:1;1059:7;:14;;;:19;;;;;;;;;;;970:127;:::o;848:114::-;913:7;940;:14;;;933:21;;848:114;;;:::o;33487:110::-;33563:26;33573:2;33577:7;33563:26;;;;;;;;;;;;:9;:26::i;:::-;33487:110;;:::o;41798:589::-;41942:45;41969:4;41975:2;41979:7;41942:26;:45::i;:::-;42020:1;42004:18;;:4;:18;;;42000:187;;;42039:40;42071:7;42039:31;:40::i;:::-;42000:187;;;42109:2;42101:10;;:4;:10;;;42097:90;;42128:47;42161:4;42167:7;42128:32;:47::i;:::-;42097:90;42000:187;42215:1;42201:16;;:2;:16;;;42197:183;;;42234:45;42271:7;42234:36;:45::i;:::-;42197:183;;;42307:4;42301:10;;:2;:10;;;42297:83;;42328:40;42356:2;42360:7;42328:27;:40::i;:::-;42297:83;42197:183;41798:589;;;:::o;37261:984::-;37416:4;37437:15;:2;:13;;;:15::i;:::-;37433:805;;;37506:2;37490:36;;;37549:12;:10;:12::i;:::-;37584:4;37611:7;37641:5;37490:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37469:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37869:1;37852:6;:13;:18;37848:320;;;37895:108;;;;;;;;;;:::i;:::-;;;;;;;;37848:320;38118:6;38112:13;38103:6;38099:2;38095:15;38088:38;37469:714;37739:45;;;37729:55;;;:6;:55;;;;37722:62;;;;;37433:805;38222:4;38215:11;;37261:984;;;;;;;:::o;33824:321::-;33954:18;33960:2;33964:7;33954:5;:18::i;:::-;34005:54;34036:1;34040:2;34044:7;34053:5;34005:22;:54::i;:::-;33983:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;33824:321;;;:::o;38817:126::-;;;;:::o;43110:164::-;43214:10;:17;;;;43187:15;:24;43203:7;43187:24;;;;;;;;;;;:44;;;;43242:10;43258:7;43242:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43110:164;:::o;43901:1002::-;44181:22;44231:1;44206:22;44223:4;44206:16;:22::i;:::-;:26;;;;:::i;:::-;44181:51;;44243:18;44264:17;:26;44282:7;44264:26;;;;;;;;;;;;44243:47;;44411:14;44397:10;:28;44393:328;;44442:19;44464:12;:18;44477:4;44464:18;;;;;;;;;;;;;;;:34;44483:14;44464:34;;;;;;;;;;;;44442:56;;44548:11;44515:12;:18;44528:4;44515:18;;;;;;;;;;;;;;;:30;44534:10;44515:30;;;;;;;;;;;:44;;;;44665:10;44632:17;:30;44650:11;44632:30;;;;;;;;;;;:43;;;;44427:294;44393:328;44817:17;:26;44835:7;44817:26;;;;;;;;;;;44810:33;;;44861:12;:18;44874:4;44861:18;;;;;;;;;;;;;;;:34;44880:14;44861:34;;;;;;;;;;;44854:41;;;43996:907;;43901:1002;;:::o;45198:1079::-;45451:22;45496:1;45476:10;:17;;;;:21;;;;:::i;:::-;45451:46;;45508:18;45529:15;:24;45545:7;45529:24;;;;;;;;;;;;45508:45;;45880:19;45902:10;45913:14;45902:26;;;;;;;;:::i;:::-;;;;;;;;;;45880:48;;45966:11;45941:10;45952;45941:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;46077:10;46046:15;:28;46062:11;46046:28;;;;;;;;;;;:41;;;;46218:15;:24;46234:7;46218:24;;;;;;;;;;;46211:31;;;46253:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45269:1008;;;45198:1079;:::o;42688:221::-;42773:14;42790:20;42807:2;42790:16;:20::i;:::-;42773:37;;42848:7;42821:12;:16;42834:2;42821:16;;;;;;;;;;;;;;;:24;42838:6;42821:24;;;;;;;;;;;:34;;;;42895:6;42866:17;:26;42884:7;42866:26;;;;;;;;;;;:35;;;;42762:147;42688:221;;:::o;15283:387::-;15343:4;15551:12;15618:7;15606:20;15598:28;;15661:1;15654:4;:8;15647:15;;;15283:387;;;:::o;34481:382::-;34575:1;34561:16;;:2;:16;;;;34553:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34634:16;34642:7;34634;:16::i;:::-;34633:17;34625:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34696:45;34725:1;34729:2;34733:7;34696:20;:45::i;:::-;34771:1;34754:9;:13;34764:2;34754:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34802:2;34783:7;:16;34791:7;34783:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34847:7;34843:2;34822:33;;34839:1;34822:33;;;;;;;;;;;;34481:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:704::-;6306:6;6314;6322;6371:2;6359:9;6350:7;6346:23;6342:32;6339:119;;;6377:79;;:::i;:::-;6339:119;6525:1;6514:9;6510:17;6497:31;6555:18;6547:6;6544:30;6541:117;;;6577:79;;:::i;:::-;6541:117;6690:80;6762:7;6753:6;6742:9;6738:22;6690:80;:::i;:::-;6672:98;;;;6468:312;6819:2;6845:53;6890:7;6881:6;6870:9;6866:22;6845:53;:::i;:::-;6835:63;;6790:118;6211:704;;;;;:::o;6921:327::-;6979:6;7028:2;7016:9;7007:7;7003:23;6999:32;6996:119;;;7034:79;;:::i;:::-;6996:119;7154:1;7179:52;7223:7;7214:6;7203:9;7199:22;7179:52;:::i;:::-;7169:62;;7125:116;6921:327;;;;:::o;7254:349::-;7323:6;7372:2;7360:9;7351:7;7347:23;7343:32;7340:119;;;7378:79;;:::i;:::-;7340:119;7498:1;7523:63;7578:7;7569:6;7558:9;7554:22;7523:63;:::i;:::-;7513:73;;7469:127;7254:349;;;;:::o;7609:509::-;7678:6;7727:2;7715:9;7706:7;7702:23;7698:32;7695:119;;;7733:79;;:::i;:::-;7695:119;7881:1;7870:9;7866:17;7853:31;7911:18;7903:6;7900:30;7897:117;;;7933:79;;:::i;:::-;7897:117;8038:63;8093:7;8084:6;8073:9;8069:22;8038:63;:::i;:::-;8028:73;;7824:287;7609:509;;;;:::o;8124:329::-;8183:6;8232:2;8220:9;8211:7;8207:23;8203:32;8200:119;;;8238:79;;:::i;:::-;8200:119;8358:1;8383:53;8428:7;8419:6;8408:9;8404:22;8383:53;:::i;:::-;8373:63;;8329:117;8124:329;;;;:::o;8459:179::-;8528:10;8549:46;8591:3;8583:6;8549:46;:::i;:::-;8627:4;8622:3;8618:14;8604:28;;8459:179;;;;:::o;8644:118::-;8731:24;8749:5;8731:24;:::i;:::-;8726:3;8719:37;8644:118;;:::o;8798:732::-;8917:3;8946:54;8994:5;8946:54;:::i;:::-;9016:86;9095:6;9090:3;9016:86;:::i;:::-;9009:93;;9126:56;9176:5;9126:56;:::i;:::-;9205:7;9236:1;9221:284;9246:6;9243:1;9240:13;9221:284;;;9322:6;9316:13;9349:63;9408:3;9393:13;9349:63;:::i;:::-;9342:70;;9435:60;9488:6;9435:60;:::i;:::-;9425:70;;9281:224;9268:1;9265;9261:9;9256:14;;9221:284;;;9225:14;9521:3;9514:10;;8922:608;;;8798:732;;;;:::o;9536:109::-;9617:21;9632:5;9617:21;:::i;:::-;9612:3;9605:34;9536:109;;:::o;9651:360::-;9737:3;9765:38;9797:5;9765:38;:::i;:::-;9819:70;9882:6;9877:3;9819:70;:::i;:::-;9812:77;;9898:52;9943:6;9938:3;9931:4;9924:5;9920:16;9898:52;:::i;:::-;9975:29;9997:6;9975:29;:::i;:::-;9970:3;9966:39;9959:46;;9741:270;9651:360;;;;:::o;10017:364::-;10105:3;10133:39;10166:5;10133:39;:::i;:::-;10188:71;10252:6;10247:3;10188:71;:::i;:::-;10181:78;;10268:52;10313:6;10308:3;10301:4;10294:5;10290:16;10268:52;:::i;:::-;10345:29;10367:6;10345:29;:::i;:::-;10340:3;10336:39;10329:46;;10109:272;10017:364;;;;:::o;10387:377::-;10493:3;10521:39;10554:5;10521:39;:::i;:::-;10576:89;10658:6;10653:3;10576:89;:::i;:::-;10569:96;;10674:52;10719:6;10714:3;10707:4;10700:5;10696:16;10674:52;:::i;:::-;10751:6;10746:3;10742:16;10735:23;;10497:267;10387:377;;;;:::o;10770:366::-;10912:3;10933:67;10997:2;10992:3;10933:67;:::i;:::-;10926:74;;11009:93;11098:3;11009:93;:::i;:::-;11127:2;11122:3;11118:12;11111:19;;10770:366;;;:::o;11142:::-;11284:3;11305:67;11369:2;11364:3;11305:67;:::i;:::-;11298:74;;11381:93;11470:3;11381:93;:::i;:::-;11499:2;11494:3;11490:12;11483:19;;11142:366;;;:::o;11514:::-;11656:3;11677:67;11741:2;11736:3;11677:67;:::i;:::-;11670:74;;11753:93;11842:3;11753:93;:::i;:::-;11871:2;11866:3;11862:12;11855:19;;11514:366;;;:::o;11886:::-;12028:3;12049:67;12113:2;12108:3;12049:67;:::i;:::-;12042:74;;12125:93;12214:3;12125:93;:::i;:::-;12243:2;12238:3;12234:12;12227:19;;11886:366;;;:::o;12258:::-;12400:3;12421:67;12485:2;12480:3;12421:67;:::i;:::-;12414:74;;12497:93;12586:3;12497:93;:::i;:::-;12615:2;12610:3;12606:12;12599:19;;12258:366;;;:::o;12630:::-;12772:3;12793:67;12857:2;12852:3;12793:67;:::i;:::-;12786:74;;12869:93;12958:3;12869:93;:::i;:::-;12987:2;12982:3;12978:12;12971:19;;12630:366;;;:::o;13002:::-;13144:3;13165:67;13229:2;13224:3;13165:67;:::i;:::-;13158:74;;13241:93;13330:3;13241:93;:::i;:::-;13359:2;13354:3;13350:12;13343:19;;13002:366;;;:::o;13374:::-;13516:3;13537:67;13601:2;13596:3;13537:67;:::i;:::-;13530:74;;13613:93;13702:3;13613:93;:::i;:::-;13731:2;13726:3;13722:12;13715:19;;13374:366;;;:::o;13746:::-;13888:3;13909:67;13973:2;13968:3;13909:67;:::i;:::-;13902:74;;13985:93;14074:3;13985:93;:::i;:::-;14103:2;14098:3;14094:12;14087:19;;13746:366;;;:::o;14118:::-;14260:3;14281:67;14345:2;14340:3;14281:67;:::i;:::-;14274:74;;14357:93;14446:3;14357:93;:::i;:::-;14475:2;14470:3;14466:12;14459:19;;14118:366;;;:::o;14490:::-;14632:3;14653:67;14717:2;14712:3;14653:67;:::i;:::-;14646:74;;14729:93;14818:3;14729:93;:::i;:::-;14847:2;14842:3;14838:12;14831:19;;14490:366;;;:::o;14862:::-;15004:3;15025:67;15089:2;15084:3;15025:67;:::i;:::-;15018:74;;15101:93;15190:3;15101:93;:::i;:::-;15219:2;15214:3;15210:12;15203:19;;14862:366;;;:::o;15234:::-;15376:3;15397:67;15461:2;15456:3;15397:67;:::i;:::-;15390:74;;15473:93;15562:3;15473:93;:::i;:::-;15591:2;15586:3;15582:12;15575:19;;15234:366;;;:::o;15606:::-;15748:3;15769:67;15833:2;15828:3;15769:67;:::i;:::-;15762:74;;15845:93;15934:3;15845:93;:::i;:::-;15963:2;15958:3;15954:12;15947:19;;15606:366;;;:::o;15978:::-;16120:3;16141:67;16205:2;16200:3;16141:67;:::i;:::-;16134:74;;16217:93;16306:3;16217:93;:::i;:::-;16335:2;16330:3;16326:12;16319:19;;15978:366;;;:::o;16350:::-;16492:3;16513:67;16577:2;16572:3;16513:67;:::i;:::-;16506:74;;16589:93;16678:3;16589:93;:::i;:::-;16707:2;16702:3;16698:12;16691:19;;16350:366;;;:::o;16722:::-;16864:3;16885:67;16949:2;16944:3;16885:67;:::i;:::-;16878:74;;16961:93;17050:3;16961:93;:::i;:::-;17079:2;17074:3;17070:12;17063:19;;16722:366;;;:::o;17094:::-;17236:3;17257:67;17321:2;17316:3;17257:67;:::i;:::-;17250:74;;17333:93;17422:3;17333:93;:::i;:::-;17451:2;17446:3;17442:12;17435:19;;17094:366;;;:::o;17466:::-;17608:3;17629:67;17693:2;17688:3;17629:67;:::i;:::-;17622:74;;17705:93;17794:3;17705:93;:::i;:::-;17823:2;17818:3;17814:12;17807:19;;17466:366;;;:::o;17838:::-;17980:3;18001:67;18065:2;18060:3;18001:67;:::i;:::-;17994:74;;18077:93;18166:3;18077:93;:::i;:::-;18195:2;18190:3;18186:12;18179:19;;17838:366;;;:::o;18210:::-;18352:3;18373:67;18437:2;18432:3;18373:67;:::i;:::-;18366:74;;18449:93;18538:3;18449:93;:::i;:::-;18567:2;18562:3;18558:12;18551:19;;18210:366;;;:::o;18582:::-;18724:3;18745:67;18809:2;18804:3;18745:67;:::i;:::-;18738:74;;18821:93;18910:3;18821:93;:::i;:::-;18939:2;18934:3;18930:12;18923:19;;18582:366;;;:::o;18954:::-;19096:3;19117:67;19181:2;19176:3;19117:67;:::i;:::-;19110:74;;19193:93;19282:3;19193:93;:::i;:::-;19311:2;19306:3;19302:12;19295:19;;18954:366;;;:::o;19326:::-;19468:3;19489:67;19553:2;19548:3;19489:67;:::i;:::-;19482:74;;19565:93;19654:3;19565:93;:::i;:::-;19683:2;19678:3;19674:12;19667:19;;19326:366;;;:::o;19698:398::-;19857:3;19878:83;19959:1;19954:3;19878:83;:::i;:::-;19871:90;;19970:93;20059:3;19970:93;:::i;:::-;20088:1;20083:3;20079:11;20072:18;;19698:398;;;:::o;20102:366::-;20244:3;20265:67;20329:2;20324:3;20265:67;:::i;:::-;20258:74;;20341:93;20430:3;20341:93;:::i;:::-;20459:2;20454:3;20450:12;20443:19;;20102:366;;;:::o;20474:::-;20616:3;20637:67;20701:2;20696:3;20637:67;:::i;:::-;20630:74;;20713:93;20802:3;20713:93;:::i;:::-;20831:2;20826:3;20822:12;20815:19;;20474:366;;;:::o;20846:::-;20988:3;21009:67;21073:2;21068:3;21009:67;:::i;:::-;21002:74;;21085:93;21174:3;21085:93;:::i;:::-;21203:2;21198:3;21194:12;21187:19;;20846:366;;;:::o;21218:::-;21360:3;21381:67;21445:2;21440:3;21381:67;:::i;:::-;21374:74;;21457:93;21546:3;21457:93;:::i;:::-;21575:2;21570:3;21566:12;21559:19;;21218:366;;;:::o;21590:::-;21732:3;21753:67;21817:2;21812:3;21753:67;:::i;:::-;21746:74;;21829:93;21918:3;21829:93;:::i;:::-;21947:2;21942:3;21938:12;21931:19;;21590:366;;;:::o;21962:108::-;22039:24;22057:5;22039:24;:::i;:::-;22034:3;22027:37;21962:108;;:::o;22076:118::-;22163:24;22181:5;22163:24;:::i;:::-;22158:3;22151:37;22076:118;;:::o;22200:435::-;22380:3;22402:95;22493:3;22484:6;22402:95;:::i;:::-;22395:102;;22514:95;22605:3;22596:6;22514:95;:::i;:::-;22507:102;;22626:3;22619:10;;22200:435;;;;;:::o;22641:379::-;22825:3;22847:147;22990:3;22847:147;:::i;:::-;22840:154;;23011:3;23004:10;;22641:379;;;:::o;23026:222::-;23119:4;23157:2;23146:9;23142:18;23134:26;;23170:71;23238:1;23227:9;23223:17;23214:6;23170:71;:::i;:::-;23026:222;;;;:::o;23254:640::-;23449:4;23487:3;23476:9;23472:19;23464:27;;23501:71;23569:1;23558:9;23554:17;23545:6;23501:71;:::i;:::-;23582:72;23650:2;23639:9;23635:18;23626:6;23582:72;:::i;:::-;23664;23732:2;23721:9;23717:18;23708:6;23664:72;:::i;:::-;23783:9;23777:4;23773:20;23768:2;23757:9;23753:18;23746:48;23811:76;23882:4;23873:6;23811:76;:::i;:::-;23803:84;;23254:640;;;;;;;:::o;23900:373::-;24043:4;24081:2;24070:9;24066:18;24058:26;;24130:9;24124:4;24120:20;24116:1;24105:9;24101:17;24094:47;24158:108;24261:4;24252:6;24158:108;:::i;:::-;24150:116;;23900:373;;;;:::o;24279:210::-;24366:4;24404:2;24393:9;24389:18;24381:26;;24417:65;24479:1;24468:9;24464:17;24455:6;24417:65;:::i;:::-;24279:210;;;;:::o;24495:313::-;24608:4;24646:2;24635:9;24631:18;24623:26;;24695:9;24689:4;24685:20;24681:1;24670:9;24666:17;24659:47;24723:78;24796:4;24787:6;24723:78;:::i;:::-;24715:86;;24495:313;;;;:::o;24814:419::-;24980:4;25018:2;25007:9;25003:18;24995:26;;25067:9;25061:4;25057:20;25053:1;25042:9;25038:17;25031:47;25095:131;25221:4;25095:131;:::i;:::-;25087:139;;24814:419;;;:::o;25239:::-;25405:4;25443:2;25432:9;25428:18;25420:26;;25492:9;25486:4;25482:20;25478:1;25467:9;25463:17;25456:47;25520:131;25646:4;25520:131;:::i;:::-;25512:139;;25239:419;;;:::o;25664:::-;25830:4;25868:2;25857:9;25853:18;25845:26;;25917:9;25911:4;25907:20;25903:1;25892:9;25888:17;25881:47;25945:131;26071:4;25945:131;:::i;:::-;25937:139;;25664:419;;;:::o;26089:::-;26255:4;26293:2;26282:9;26278:18;26270:26;;26342:9;26336:4;26332:20;26328:1;26317:9;26313:17;26306:47;26370:131;26496:4;26370:131;:::i;:::-;26362:139;;26089:419;;;:::o;26514:::-;26680:4;26718:2;26707:9;26703:18;26695:26;;26767:9;26761:4;26757:20;26753:1;26742:9;26738:17;26731:47;26795:131;26921:4;26795:131;:::i;:::-;26787:139;;26514:419;;;:::o;26939:::-;27105:4;27143:2;27132:9;27128:18;27120:26;;27192:9;27186:4;27182:20;27178:1;27167:9;27163:17;27156:47;27220:131;27346:4;27220:131;:::i;:::-;27212:139;;26939:419;;;:::o;27364:::-;27530:4;27568:2;27557:9;27553:18;27545:26;;27617:9;27611:4;27607:20;27603:1;27592:9;27588:17;27581:47;27645:131;27771:4;27645:131;:::i;:::-;27637:139;;27364:419;;;:::o;27789:::-;27955:4;27993:2;27982:9;27978:18;27970:26;;28042:9;28036:4;28032:20;28028:1;28017:9;28013:17;28006:47;28070:131;28196:4;28070:131;:::i;:::-;28062:139;;27789:419;;;:::o;28214:::-;28380:4;28418:2;28407:9;28403:18;28395:26;;28467:9;28461:4;28457:20;28453:1;28442:9;28438:17;28431:47;28495:131;28621:4;28495:131;:::i;:::-;28487:139;;28214:419;;;:::o;28639:::-;28805:4;28843:2;28832:9;28828:18;28820:26;;28892:9;28886:4;28882:20;28878:1;28867:9;28863:17;28856:47;28920:131;29046:4;28920:131;:::i;:::-;28912:139;;28639:419;;;:::o;29064:::-;29230:4;29268:2;29257:9;29253:18;29245:26;;29317:9;29311:4;29307:20;29303:1;29292:9;29288:17;29281:47;29345:131;29471:4;29345:131;:::i;:::-;29337:139;;29064:419;;;:::o;29489:::-;29655:4;29693:2;29682:9;29678:18;29670:26;;29742:9;29736:4;29732:20;29728:1;29717:9;29713:17;29706:47;29770:131;29896:4;29770:131;:::i;:::-;29762:139;;29489:419;;;:::o;29914:::-;30080:4;30118:2;30107:9;30103:18;30095:26;;30167:9;30161:4;30157:20;30153:1;30142:9;30138:17;30131:47;30195:131;30321:4;30195:131;:::i;:::-;30187:139;;29914:419;;;:::o;30339:::-;30505:4;30543:2;30532:9;30528:18;30520:26;;30592:9;30586:4;30582:20;30578:1;30567:9;30563:17;30556:47;30620:131;30746:4;30620:131;:::i;:::-;30612:139;;30339:419;;;:::o;30764:::-;30930:4;30968:2;30957:9;30953:18;30945:26;;31017:9;31011:4;31007:20;31003:1;30992:9;30988:17;30981:47;31045:131;31171:4;31045:131;:::i;:::-;31037:139;;30764:419;;;:::o;31189:::-;31355:4;31393:2;31382:9;31378:18;31370:26;;31442:9;31436:4;31432:20;31428:1;31417:9;31413:17;31406:47;31470:131;31596:4;31470:131;:::i;:::-;31462:139;;31189:419;;;:::o;31614:::-;31780:4;31818:2;31807:9;31803:18;31795:26;;31867:9;31861:4;31857:20;31853:1;31842:9;31838:17;31831:47;31895:131;32021:4;31895:131;:::i;:::-;31887:139;;31614:419;;;:::o;32039:::-;32205:4;32243:2;32232:9;32228:18;32220:26;;32292:9;32286:4;32282:20;32278:1;32267:9;32263:17;32256:47;32320:131;32446:4;32320:131;:::i;:::-;32312:139;;32039:419;;;:::o;32464:::-;32630:4;32668:2;32657:9;32653:18;32645:26;;32717:9;32711:4;32707:20;32703:1;32692:9;32688:17;32681:47;32745:131;32871:4;32745:131;:::i;:::-;32737:139;;32464:419;;;:::o;32889:::-;33055:4;33093:2;33082:9;33078:18;33070:26;;33142:9;33136:4;33132:20;33128:1;33117:9;33113:17;33106:47;33170:131;33296:4;33170:131;:::i;:::-;33162:139;;32889:419;;;:::o;33314:::-;33480:4;33518:2;33507:9;33503:18;33495:26;;33567:9;33561:4;33557:20;33553:1;33542:9;33538:17;33531:47;33595:131;33721:4;33595:131;:::i;:::-;33587:139;;33314:419;;;:::o;33739:::-;33905:4;33943:2;33932:9;33928:18;33920:26;;33992:9;33986:4;33982:20;33978:1;33967:9;33963:17;33956:47;34020:131;34146:4;34020:131;:::i;:::-;34012:139;;33739:419;;;:::o;34164:::-;34330:4;34368:2;34357:9;34353:18;34345:26;;34417:9;34411:4;34407:20;34403:1;34392:9;34388:17;34381:47;34445:131;34571:4;34445:131;:::i;:::-;34437:139;;34164:419;;;:::o;34589:::-;34755:4;34793:2;34782:9;34778:18;34770:26;;34842:9;34836:4;34832:20;34828:1;34817:9;34813:17;34806:47;34870:131;34996:4;34870:131;:::i;:::-;34862:139;;34589:419;;;:::o;35014:::-;35180:4;35218:2;35207:9;35203:18;35195:26;;35267:9;35261:4;35257:20;35253:1;35242:9;35238:17;35231:47;35295:131;35421:4;35295:131;:::i;:::-;35287:139;;35014:419;;;:::o;35439:::-;35605:4;35643:2;35632:9;35628:18;35620:26;;35692:9;35686:4;35682:20;35678:1;35667:9;35663:17;35656:47;35720:131;35846:4;35720:131;:::i;:::-;35712:139;;35439:419;;;:::o;35864:::-;36030:4;36068:2;36057:9;36053:18;36045:26;;36117:9;36111:4;36107:20;36103:1;36092:9;36088:17;36081:47;36145:131;36271:4;36145:131;:::i;:::-;36137:139;;35864:419;;;:::o;36289:::-;36455:4;36493:2;36482:9;36478:18;36470:26;;36542:9;36536:4;36532:20;36528:1;36517:9;36513:17;36506:47;36570:131;36696:4;36570:131;:::i;:::-;36562:139;;36289:419;;;:::o;36714:::-;36880:4;36918:2;36907:9;36903:18;36895:26;;36967:9;36961:4;36957:20;36953:1;36942:9;36938:17;36931:47;36995:131;37121:4;36995:131;:::i;:::-;36987:139;;36714:419;;;:::o;37139:222::-;37232:4;37270:2;37259:9;37255:18;37247:26;;37283:71;37351:1;37340:9;37336:17;37327:6;37283:71;:::i;:::-;37139:222;;;;:::o;37367:129::-;37401:6;37428:20;;:::i;:::-;37418:30;;37457:33;37485:4;37477:6;37457:33;:::i;:::-;37367:129;;;:::o;37502:75::-;37535:6;37568:2;37562:9;37552:19;;37502:75;:::o;37583:307::-;37644:4;37734:18;37726:6;37723:30;37720:56;;;37756:18;;:::i;:::-;37720:56;37794:29;37816:6;37794:29;:::i;:::-;37786:37;;37878:4;37872;37868:15;37860:23;;37583:307;;;:::o;37896:308::-;37958:4;38048:18;38040:6;38037:30;38034:56;;;38070:18;;:::i;:::-;38034:56;38108:29;38130:6;38108:29;:::i;:::-;38100:37;;38192:4;38186;38182:15;38174:23;;37896:308;;;:::o;38210:132::-;38277:4;38300:3;38292:11;;38330:4;38325:3;38321:14;38313:22;;38210:132;;;:::o;38348:114::-;38415:6;38449:5;38443:12;38433:22;;38348:114;;;:::o;38468:98::-;38519:6;38553:5;38547:12;38537:22;;38468:98;;;:::o;38572:99::-;38624:6;38658:5;38652:12;38642:22;;38572:99;;;:::o;38677:113::-;38747:4;38779;38774:3;38770:14;38762:22;;38677:113;;;:::o;38796:184::-;38895:11;38929:6;38924:3;38917:19;38969:4;38964:3;38960:14;38945:29;;38796:184;;;;:::o;38986:168::-;39069:11;39103:6;39098:3;39091:19;39143:4;39138:3;39134:14;39119:29;;38986:168;;;;:::o;39160:147::-;39261:11;39298:3;39283:18;;39160:147;;;;:::o;39313:169::-;39397:11;39431:6;39426:3;39419:19;39471:4;39466:3;39462:14;39447:29;;39313:169;;;;:::o;39488:148::-;39590:11;39627:3;39612:18;;39488:148;;;;:::o;39642:305::-;39682:3;39701:20;39719:1;39701:20;:::i;:::-;39696:25;;39735:20;39753:1;39735:20;:::i;:::-;39730:25;;39889:1;39821:66;39817:74;39814:1;39811:81;39808:107;;;39895:18;;:::i;:::-;39808:107;39939:1;39936;39932:9;39925:16;;39642:305;;;;:::o;39953:185::-;39993:1;40010:20;40028:1;40010:20;:::i;:::-;40005:25;;40044:20;40062:1;40044:20;:::i;:::-;40039:25;;40083:1;40073:35;;40088:18;;:::i;:::-;40073:35;40130:1;40127;40123:9;40118:14;;39953:185;;;;:::o;40144:348::-;40184:7;40207:20;40225:1;40207:20;:::i;:::-;40202:25;;40241:20;40259:1;40241:20;:::i;:::-;40236:25;;40429:1;40361:66;40357:74;40354:1;40351:81;40346:1;40339:9;40332:17;40328:105;40325:131;;;40436:18;;:::i;:::-;40325:131;40484:1;40481;40477:9;40466:20;;40144:348;;;;:::o;40498:191::-;40538:4;40558:20;40576:1;40558:20;:::i;:::-;40553:25;;40592:20;40610:1;40592:20;:::i;:::-;40587:25;;40631:1;40628;40625:8;40622:34;;;40636:18;;:::i;:::-;40622:34;40681:1;40678;40674:9;40666:17;;40498:191;;;;:::o;40695:96::-;40732:7;40761:24;40779:5;40761:24;:::i;:::-;40750:35;;40695:96;;;:::o;40797:90::-;40831:7;40874:5;40867:13;40860:21;40849:32;;40797:90;;;:::o;40893:149::-;40929:7;40969:66;40962:5;40958:78;40947:89;;40893:149;;;:::o;41048:126::-;41085:7;41125:42;41118:5;41114:54;41103:65;;41048:126;;;:::o;41180:77::-;41217:7;41246:5;41235:16;;41180:77;;;:::o;41263:154::-;41347:6;41342:3;41337;41324:30;41409:1;41400:6;41395:3;41391:16;41384:27;41263:154;;;:::o;41423:307::-;41491:1;41501:113;41515:6;41512:1;41509:13;41501:113;;;41600:1;41595:3;41591:11;41585:18;41581:1;41576:3;41572:11;41565:39;41537:2;41534:1;41530:10;41525:15;;41501:113;;;41632:6;41629:1;41626:13;41623:101;;;41712:1;41703:6;41698:3;41694:16;41687:27;41623:101;41472:258;41423:307;;;:::o;41736:320::-;41780:6;41817:1;41811:4;41807:12;41797:22;;41864:1;41858:4;41854:12;41885:18;41875:81;;41941:4;41933:6;41929:17;41919:27;;41875:81;42003:2;41995:6;41992:14;41972:18;41969:38;41966:84;;;42022:18;;:::i;:::-;41966:84;41787:269;41736:320;;;:::o;42062:281::-;42145:27;42167:4;42145:27;:::i;:::-;42137:6;42133:40;42275:6;42263:10;42260:22;42239:18;42227:10;42224:34;42221:62;42218:88;;;42286:18;;:::i;:::-;42218:88;42326:10;42322:2;42315:22;42105:238;42062:281;;:::o;42349:233::-;42388:3;42411:24;42429:5;42411:24;:::i;:::-;42402:33;;42457:66;42450:5;42447:77;42444:103;;;42527:18;;:::i;:::-;42444:103;42574:1;42567:5;42563:13;42556:20;;42349:233;;;:::o;42588:176::-;42620:1;42637:20;42655:1;42637:20;:::i;:::-;42632:25;;42671:20;42689:1;42671:20;:::i;:::-;42666:25;;42710:1;42700:35;;42715:18;;:::i;:::-;42700:35;42756:1;42753;42749:9;42744:14;;42588:176;;;;:::o;42770:180::-;42818:77;42815:1;42808:88;42915:4;42912:1;42905:15;42939:4;42936:1;42929:15;42956:180;43004:77;43001:1;42994:88;43101:4;43098:1;43091:15;43125:4;43122:1;43115:15;43142:180;43190:77;43187:1;43180:88;43287:4;43284:1;43277:15;43311:4;43308:1;43301:15;43328:180;43376:77;43373:1;43366:88;43473:4;43470:1;43463:15;43497:4;43494:1;43487:15;43514:180;43562:77;43559:1;43552:88;43659:4;43656:1;43649:15;43683:4;43680:1;43673:15;43700:180;43748:77;43745:1;43738:88;43845:4;43842:1;43835:15;43869:4;43866:1;43859:15;43886:117;43995:1;43992;43985:12;44009:117;44118:1;44115;44108:12;44132:117;44241:1;44238;44231:12;44255:117;44364:1;44361;44354:12;44378:117;44487:1;44484;44477:12;44501:117;44610:1;44607;44600:12;44624:102;44665:6;44716:2;44712:7;44707:2;44700:5;44696:14;44692:28;44682:38;;44624:102;;;:::o;44732:227::-;44872:34;44868:1;44860:6;44856:14;44849:58;44941:10;44936:2;44928:6;44924:15;44917:35;44732:227;:::o;44965:247::-;45105:34;45101:1;45093:6;45089:14;45082:58;45174:30;45169:2;45161:6;45157:15;45150:55;44965:247;:::o;45218:230::-;45358:34;45354:1;45346:6;45342:14;45335:58;45427:13;45422:2;45414:6;45410:15;45403:38;45218:230;:::o;45454:237::-;45594:34;45590:1;45582:6;45578:14;45571:58;45663:20;45658:2;45650:6;45646:15;45639:45;45454:237;:::o;45697:225::-;45837:34;45833:1;45825:6;45821:14;45814:58;45906:8;45901:2;45893:6;45889:15;45882:33;45697:225;:::o;45928:178::-;46068:30;46064:1;46056:6;46052:14;46045:54;45928:178;:::o;46112:167::-;46252:19;46248:1;46240:6;46236:14;46229:43;46112:167;:::o;46285:223::-;46425:34;46421:1;46413:6;46409:14;46402:58;46494:6;46489:2;46481:6;46477:15;46470:31;46285:223;:::o;46514:175::-;46654:27;46650:1;46642:6;46638:14;46631:51;46514:175;:::o;46695:170::-;46835:22;46831:1;46823:6;46819:14;46812:46;46695:170;:::o;46871:231::-;47011:34;47007:1;46999:6;46995:14;46988:58;47080:14;47075:2;47067:6;47063:15;47056:39;46871:231;:::o;47108:243::-;47248:34;47244:1;47236:6;47232:14;47225:58;47317:26;47312:2;47304:6;47300:15;47293:51;47108:243;:::o;47357:229::-;47497:34;47493:1;47485:6;47481:14;47474:58;47566:12;47561:2;47553:6;47549:15;47542:37;47357:229;:::o;47592:228::-;47732:34;47728:1;47720:6;47716:14;47709:58;47801:11;47796:2;47788:6;47784:15;47777:36;47592:228;:::o;47826:::-;47966:34;47962:1;47954:6;47950:14;47943:58;48035:11;48030:2;48022:6;48018:15;48011:36;47826:228;:::o;48060:182::-;48200:34;48196:1;48188:6;48184:14;48177:58;48060:182;:::o;48248:231::-;48388:34;48384:1;48376:6;48372:14;48365:58;48457:14;48452:2;48444:6;48440:15;48433:39;48248:231;:::o;48485:234::-;48625:34;48621:1;48613:6;48609:14;48602:58;48694:17;48689:2;48681:6;48677:15;48670:42;48485:234;:::o;48725:182::-;48865:34;48861:1;48853:6;48849:14;48842:58;48725:182;:::o;48913:228::-;49053:34;49049:1;49041:6;49037:14;49030:58;49122:11;49117:2;49109:6;49105:15;49098:36;48913:228;:::o;49147:234::-;49287:34;49283:1;49275:6;49271:14;49264:58;49356:17;49351:2;49343:6;49339:15;49332:42;49147:234;:::o;49387:173::-;49527:25;49523:1;49515:6;49511:14;49504:49;49387:173;:::o;49566:220::-;49706:34;49702:1;49694:6;49690:14;49683:58;49775:3;49770:2;49762:6;49758:15;49751:28;49566:220;:::o;49792:224::-;49932:34;49928:1;49920:6;49916:14;49909:58;50001:7;49996:2;49988:6;49984:15;49977:32;49792:224;:::o;50022:114::-;;:::o;50142:166::-;50282:18;50278:1;50270:6;50266:14;50259:42;50142:166;:::o;50314:236::-;50454:34;50450:1;50442:6;50438:14;50431:58;50523:19;50518:2;50510:6;50506:15;50499:44;50314:236;:::o;50556:231::-;50696:34;50692:1;50684:6;50680:14;50673:58;50765:14;50760:2;50752:6;50748:15;50741:39;50556:231;:::o;50793:241::-;50933:34;50929:1;50921:6;50917:14;50910:58;51002:24;50997:2;50989:6;50985:15;50978:49;50793:241;:::o;51040:244::-;51180:34;51176:1;51168:6;51164:14;51157:58;51249:27;51244:2;51236:6;51232:15;51225:52;51040:244;:::o;51290:122::-;51363:24;51381:5;51363:24;:::i;:::-;51356:5;51353:35;51343:63;;51402:1;51399;51392:12;51343:63;51290:122;:::o;51418:116::-;51488:21;51503:5;51488:21;:::i;:::-;51481:5;51478:32;51468:60;;51524:1;51521;51514:12;51468:60;51418:116;:::o;51540:120::-;51612:23;51629:5;51612:23;:::i;:::-;51605:5;51602:34;51592:62;;51650:1;51647;51640:12;51592:62;51540:120;:::o;51666:122::-;51739:24;51757:5;51739:24;:::i;:::-;51732:5;51729:35;51719:63;;51778:1;51775;51768:12;51719:63;51666:122;:::o

Swarm Source

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