ETH Price: $2,357.60 (+0.71%)

Token

Bonzai (BNFT)
 

Overview

Max Total Supply

222 BNFT

Holders

152

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BNFT
0x957f8e6ad17233f57a06d1bc42f17f606121b42b
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Bonzai

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-18
*/

pragma solidity ^0.8.0;

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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);
}
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

contract Bonzai is ERC721, Ownable{
   using Counters for Counters.Counter;
   using Strings for uint256;

    Counters.Counter private _tokenIdTracker;
    // Base token URI
    string private base;
    // address wallet;
    //reveal impl
    bool revealed = false;
    string revealUrl = "https://gateway.pinata.cloud/ipfs/QmYGaJXUfpsiGaRmuk5RuYFXZtFB9hiXFTueLqePEGFFsv";

    ///@notice Minting Fee Per NFT
    uint256 private MINT_FEE;

    constructor() ERC721("Bonzai", "BNFT") {
        base = "https://ipfs.io/ipfs/QmdvDPXjC34fEU9qKuqxrcWx9wPqqSPrnGG8dSq8Pm94X1/"; //client IPFS
        //base = "https://ipfs.io/ipfs/QmQMKrMGnMws93McPBPkGbvm4inakeFk2Ub6wH5HPtuBLN/"; //testing IPFS
        //wallet = 0xdCE3C14d225Ae7332535F702aA5c9D5f78aB550b; // real wallet for royalty
        //wallet = 0xdCE3C14d225Ae7332535F702aA5c9D5f78aB550b; //testing wallet
        
        //MINT_FEE = 80000000000000000;
        MINT_FEE = 8 * 10 ** 16;
        
        // 15/12/21
        // Giveaway IMPL
        // mintNFT(25); // first 25 NFT's to contract owner
        // this is cheaper than mintNFT()
        for (uint i = 0; i < 25; i++) {
            _tokenIdTracker.increment();
            _safeMint(_msgSender(), _tokenIdTracker.current());
        }
        
    }
    receive() external payable {}

    function totalSupply() external view returns (uint256){
        return _tokenIdTracker.current();
    }

    //Overriding ERC721.sol method for use w/ tokenURI method
    function _baseURI() internal view override returns(string memory) {
        return base;
    }
    function setBaseURI(string memory _newuri) external returns(bool){
     base = _newuri;
     return true;
    }

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

        if(revealed == true){
        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : "";
        }
        return revealUrl;
    }

    ///@notice function to reveal real metadata of NFT's 
    function revealCollection() external onlyOwner{
        revealed = true;
    }
    
    /** 
    * @dev function to check MINT_FEE per NFT
    */
    function getNFTPrice() public view returns(uint256){
        return MINT_FEE;
    }

    /** 
    * @dev function to set MINT_FEE
    * can only contract owner
    */
    function setNFTPrice(uint256 _NEW_FEE) external onlyOwner returns(bool){
        MINT_FEE = _NEW_FEE;
        return true;
    }

    /** 
    * @dev function to mint NFT
    * @notice user have to pay MINT_FEE while minting
    */
    function mintNFT(uint256 numberOfNfts) public payable {
        require(numberOfNfts > 0, "numberOfNfts cannot be 0");

        // green signal to owner from fee
        if(_msgSender() != owner()){
        //require(numberOfNfts <= 20, "You may not buy more than 20 NFTs at once");
        require(getNFTPrice() * (numberOfNfts) == msg.value, "Ether value sent is not correct");
        }

        for (uint i = 0; i < numberOfNfts; i++) {
            _tokenIdTracker.increment();
            _safeMint(_msgSender(), _tokenIdTracker.current());
        }
    }

    /** 
    * @dev function to check ethers in contract
    * @notice only contract owner can call
    */
    function contractBalance() public view onlyOwner returns(uint256){
        return address(this).balance;
    }

    /**
     * @dev Withdraw ether from this contract (Callable by owner)
    */
    function withdraw() onlyOwner public {
        uint balance = address(this).balance;
        payable(_msgSender()).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"contractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newuri","type":"string"}],"name":"setBaseURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_NEW_FEE","type":"uint256"}],"name":"setNFTPrice","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600960006101000a81548160ff0219169083151502179055506040518060800160405280605081526020016200427260509139600a90805190602001906200005092919062000782565b503480156200005e57600080fd5b506040518060400160405280600681526020017f426f6e7a616900000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424e4654000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e392919062000782565b508060019080519060200190620000fc92919062000782565b5050506200011f62000113620001d860201b60201c565b620001e060201b60201c565b604051806080016040528060448152602001620042c260449139600890805190602001906200015092919062000782565b5067011c37937e080000600b8190555060005b6019811015620001d157620001846007620002a660201b6200130e1760201c565b620001bb62000198620001d860201b60201c565b620001af6007620002bc60201b620013241760201c565b620002ca60201b60201c565b8080620001c89062000b6d565b91505062000163565b5062000cea565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b600081600001549050919050565b620002ec828260405180602001604052806000815250620002f060201b60201c565b5050565b6200030283836200035e60201b60201c565b6200031760008484846200054460201b60201c565b62000359576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035090620009a7565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003d1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c890620009eb565b60405180910390fd5b620003e281620006fe60201b60201c565b1562000425576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041c90620009c9565b60405180910390fd5b62000439600083836200076a60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200048b919062000a3a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620005728473ffffffffffffffffffffffffffffffffffffffff166200076f60201b620013321760201c565b15620006f1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005a4620001d860201b60201c565b8786866040518563ffffffff1660e01b8152600401620005c8949392919062000953565b602060405180830381600087803b158015620005e357600080fd5b505af19250505080156200061757506040513d601f19601f8201168201806040525081019062000614919062000849565b60015b620006a0573d80600081146200064a576040519150601f19603f3d011682016040523d82523d6000602084013e6200064f565b606091505b5060008151141562000698576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200068f90620009a7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620006f6565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b828054620007909062000b37565b90600052602060002090601f016020900481019282620007b4576000855562000800565b82601f10620007cf57805160ff191683800117855562000800565b8280016001018555821562000800579182015b82811115620007ff578251825591602001919060010190620007e2565b5b5090506200080f919062000813565b5090565b5b808211156200082e57600081600090555060010162000814565b5090565b600081519050620008438162000cd0565b92915050565b60006020828403121562000862576200086162000c19565b5b6000620008728482850162000832565b91505092915050565b620008868162000a97565b82525050565b6000620008998262000a0d565b620008a5818562000a18565b9350620008b781856020860162000b01565b620008c28162000c1e565b840191505092915050565b6000620008dc60328362000a29565b9150620008e98262000c2f565b604082019050919050565b600062000903601c8362000a29565b9150620009108262000c7e565b602082019050919050565b60006200092a60208362000a29565b9150620009378262000ca7565b602082019050919050565b6200094d8162000af7565b82525050565b60006080820190506200096a60008301876200087b565b6200097960208301866200087b565b62000988604083018562000942565b81810360608301526200099c81846200088c565b905095945050505050565b60006020820190508181036000830152620009c281620008cd565b9050919050565b60006020820190508181036000830152620009e481620008f4565b9050919050565b6000602082019050818103600083015262000a06816200091b565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000a478262000af7565b915062000a548362000af7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a8c5762000a8b62000bbb565b5b828201905092915050565b600062000aa48262000ad7565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b2157808201518184015260208101905062000b04565b8381111562000b31576000848401525b50505050565b6000600282049050600182168062000b5057607f821691505b6020821081141562000b675762000b6662000bea565b5b50919050565b600062000b7a8262000af7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000bb05762000baf62000bbb565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b62000cdb8162000aab565b811462000ce757600080fd5b50565b6135788062000cfa6000396000f3fe60806040526004361061014f5760003560e01c8063715018a6116100b6578063a22cb4651161006f578063a22cb4651461047c578063b88d4fde146104a5578063c87b56dd146104ce578063e985e9c51461050b578063f2fde38b14610548578063fb107a4f1461057157610156565b8063715018a61461038b57806381530b68146103a25780638b7afe2e146103df5780638da5cb5b1461040a578063926427441461043557806395d89b411461045157610156565b80633ccfd60b116101085780633ccfd60b1461027d57806340d0b4a91461029457806342842e0e146102ab57806355f804b3146102d45780636352211e1461031157806370a082311461034e57610156565b806301ffc9a71461015b57806306fdde0314610198578063081812fc146101c3578063095ea7b31461020057806318160ddd1461022957806323b872dd1461025457610156565b3661015657005b600080fd5b34801561016757600080fd5b50610182600480360381019061017d919061242a565b61059c565b60405161018f91906128f9565b60405180910390f35b3480156101a457600080fd5b506101ad61067e565b6040516101ba9190612914565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e591906124cd565b610710565b6040516101f79190612892565b60405180910390f35b34801561020c57600080fd5b50610227600480360381019061022291906123ea565b610795565b005b34801561023557600080fd5b5061023e6108ad565b60405161024b9190612b76565b60405180910390f35b34801561026057600080fd5b5061027b600480360381019061027691906122d4565b6108be565b005b34801561028957600080fd5b5061029261091e565b005b3480156102a057600080fd5b506102a96109f0565b005b3480156102b757600080fd5b506102d260048036038101906102cd91906122d4565b610a89565b005b3480156102e057600080fd5b506102fb60048036038101906102f69190612484565b610aa9565b60405161030891906128f9565b60405180910390f35b34801561031d57600080fd5b50610338600480360381019061033391906124cd565b610acb565b6040516103459190612892565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612267565b610b7d565b6040516103829190612b76565b60405180910390f35b34801561039757600080fd5b506103a0610c35565b005b3480156103ae57600080fd5b506103c960048036038101906103c491906124cd565b610cbd565b6040516103d691906128f9565b60405180910390f35b3480156103eb57600080fd5b506103f4610d4b565b6040516104019190612b76565b60405180910390f35b34801561041657600080fd5b5061041f610dcf565b60405161042c9190612892565b60405180910390f35b61044f600480360381019061044a91906124cd565b610df9565b005b34801561045d57600080fd5b50610466610f18565b6040516104739190612914565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e91906123aa565b610faa565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190612327565b610fc0565b005b3480156104da57600080fd5b506104f560048036038101906104f091906124cd565b611022565b6040516105029190612914565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190612294565b611178565b60405161053f91906128f9565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612267565b61120c565b005b34801561057d57600080fd5b50610586611304565b6040516105939190612b76565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610677575061067682611345565b5b9050919050565b60606000805461068d90612e26565b80601f01602080910402602001604051908101604052809291908181526020018280546106b990612e26565b80156107065780601f106106db57610100808354040283529160200191610706565b820191906000526020600020905b8154815290600101906020018083116106e957829003601f168201915b5050505050905090565b600061071b826113af565b61075a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075190612a96565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a082610acb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080890612b16565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661083061141b565b73ffffffffffffffffffffffffffffffffffffffff16148061085f575061085e8161085961141b565b611178565b5b61089e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089590612a16565b60405180910390fd5b6108a88383611423565b505050565b60006108b96007611324565b905090565b6108cf6108c961141b565b826114dc565b61090e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090590612b56565b60405180910390fd5b6109198383836115ba565b505050565b61092661141b565b73ffffffffffffffffffffffffffffffffffffffff16610944610dcf565b73ffffffffffffffffffffffffffffffffffffffff161461099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099190612ab6565b60405180910390fd5b60004790506109a761141b565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156109ec573d6000803e3d6000fd5b5050565b6109f861141b565b73ffffffffffffffffffffffffffffffffffffffff16610a16610dcf565b73ffffffffffffffffffffffffffffffffffffffff1614610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390612ab6565b60405180910390fd5b6001600960006101000a81548160ff021916908315150217905550565b610aa483838360405180602001604052806000815250610fc0565b505050565b60008160089080519060200190610ac192919061207b565b5060019050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b90612a56565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590612a36565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c3d61141b565b73ffffffffffffffffffffffffffffffffffffffff16610c5b610dcf565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890612ab6565b60405180910390fd5b610cbb6000611816565b565b6000610cc761141b565b73ffffffffffffffffffffffffffffffffffffffff16610ce5610dcf565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290612ab6565b60405180910390fd5b81600b8190555060019050919050565b6000610d5561141b565b73ffffffffffffffffffffffffffffffffffffffff16610d73610dcf565b73ffffffffffffffffffffffffffffffffffffffff1614610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090612ab6565b60405180910390fd5b47905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008111610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390612b36565b60405180910390fd5b610e44610dcf565b73ffffffffffffffffffffffffffffffffffffffff16610e6261141b565b73ffffffffffffffffffffffffffffffffffffffff1614610ed2573481610e87611304565b610e919190612ce2565b14610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec8906129d6565b60405180910390fd5b5b60005b81811015610f1457610ee7600761130e565b610f01610ef261141b565b610efc6007611324565b6118dc565b8080610f0c90612e89565b915050610ed5565b5050565b606060018054610f2790612e26565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5390612e26565b8015610fa05780601f10610f7557610100808354040283529160200191610fa0565b820191906000526020600020905b815481529060010190602001808311610f8357829003601f168201915b5050505050905090565b610fbc610fb561141b565b83836118fa565b5050565b610fd1610fcb61141b565b836114dc565b611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790612b56565b60405180910390fd5b61101c84848484611a67565b50505050565b606061102d826113af565b61106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390612af6565b60405180910390fd5b60011515600960009054906101000a900460ff16151514156110e5576000611092611ac3565b905060008151116110b257604051806020016040528060008152506110dd565b806110bc84611b55565b6040516020016110cd929190612863565b6040516020818303038152906040525b915050611173565b600a80546110f290612e26565b80601f016020809104026020016040519081016040528092919081815260200182805461111e90612e26565b801561116b5780601f106111405761010080835404028352916020019161116b565b820191906000526020600020905b81548152906001019060200180831161114e57829003601f168201915b505050505090505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61121461141b565b73ffffffffffffffffffffffffffffffffffffffff16611232610dcf565b73ffffffffffffffffffffffffffffffffffffffff1614611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90612ab6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90612956565b60405180910390fd5b61130181611816565b50565b6000600b54905090565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661149683610acb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114e7826113af565b611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d906129f6565b60405180910390fd5b600061153183610acb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115a057508373ffffffffffffffffffffffffffffffffffffffff1661158884610710565b73ffffffffffffffffffffffffffffffffffffffff16145b806115b157506115b08185611178565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115da82610acb565b73ffffffffffffffffffffffffffffffffffffffff1614611630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162790612ad6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790612996565b60405180910390fd5b6116ab838383611cb6565b6116b6600082611423565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117069190612d3c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461175d9190612c5b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118f6828260405180602001604052806000815250611cbb565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611960906129b6565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a5a91906128f9565b60405180910390a3505050565b611a728484846115ba565b611a7e84848484611d16565b611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490612936565b60405180910390fd5b50505050565b606060088054611ad290612e26565b80601f0160208091040260200160405190810160405280929190818152602001828054611afe90612e26565b8015611b4b5780601f10611b2057610100808354040283529160200191611b4b565b820191906000526020600020905b815481529060010190602001808311611b2e57829003601f168201915b5050505050905090565b60606000821415611b9d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cb1565b600082905060005b60008214611bcf578080611bb890612e89565b915050600a82611bc89190612cb1565b9150611ba5565b60008167ffffffffffffffff811115611beb57611bea612fbf565b5b6040519080825280601f01601f191660200182016040528015611c1d5781602001600182028036833780820191505090505b5090505b60008514611caa57600182611c369190612d3c565b9150600a85611c459190612ed2565b6030611c519190612c5b565b60f81b818381518110611c6757611c66612f90565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ca39190612cb1565b9450611c21565b8093505050505b919050565b505050565b611cc58383611ead565b611cd26000848484611d16565b611d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0890612936565b60405180910390fd5b505050565b6000611d378473ffffffffffffffffffffffffffffffffffffffff16611332565b15611ea0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d6061141b565b8786866040518563ffffffff1660e01b8152600401611d8294939291906128ad565b602060405180830381600087803b158015611d9c57600080fd5b505af1925050508015611dcd57506040513d601f19601f82011682018060405250810190611dca9190612457565b60015b611e50573d8060008114611dfd576040519150601f19603f3d011682016040523d82523d6000602084013e611e02565b606091505b50600081511415611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3f90612936565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ea5565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1490612a76565b60405180910390fd5b611f26816113af565b15611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90612976565b60405180910390fd5b611f7260008383611cb6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fc29190612c5b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461208790612e26565b90600052602060002090601f0160209004810192826120a957600085556120f0565b82601f106120c257805160ff19168380011785556120f0565b828001600101855582156120f0579182015b828111156120ef5782518255916020019190600101906120d4565b5b5090506120fd9190612101565b5090565b5b8082111561211a576000816000905550600101612102565b5090565b600061213161212c84612bb6565b612b91565b90508281526020810184848401111561214d5761214c612ff3565b5b612158848285612de4565b509392505050565b600061217361216e84612be7565b612b91565b90508281526020810184848401111561218f5761218e612ff3565b5b61219a848285612de4565b509392505050565b6000813590506121b1816134e6565b92915050565b6000813590506121c6816134fd565b92915050565b6000813590506121db81613514565b92915050565b6000815190506121f081613514565b92915050565b600082601f83011261220b5761220a612fee565b5b813561221b84826020860161211e565b91505092915050565b600082601f83011261223957612238612fee565b5b8135612249848260208601612160565b91505092915050565b6000813590506122618161352b565b92915050565b60006020828403121561227d5761227c612ffd565b5b600061228b848285016121a2565b91505092915050565b600080604083850312156122ab576122aa612ffd565b5b60006122b9858286016121a2565b92505060206122ca858286016121a2565b9150509250929050565b6000806000606084860312156122ed576122ec612ffd565b5b60006122fb868287016121a2565b935050602061230c868287016121a2565b925050604061231d86828701612252565b9150509250925092565b6000806000806080858703121561234157612340612ffd565b5b600061234f878288016121a2565b9450506020612360878288016121a2565b935050604061237187828801612252565b925050606085013567ffffffffffffffff81111561239257612391612ff8565b5b61239e878288016121f6565b91505092959194509250565b600080604083850312156123c1576123c0612ffd565b5b60006123cf858286016121a2565b92505060206123e0858286016121b7565b9150509250929050565b6000806040838503121561240157612400612ffd565b5b600061240f858286016121a2565b925050602061242085828601612252565b9150509250929050565b6000602082840312156124405761243f612ffd565b5b600061244e848285016121cc565b91505092915050565b60006020828403121561246d5761246c612ffd565b5b600061247b848285016121e1565b91505092915050565b60006020828403121561249a57612499612ffd565b5b600082013567ffffffffffffffff8111156124b8576124b7612ff8565b5b6124c484828501612224565b91505092915050565b6000602082840312156124e3576124e2612ffd565b5b60006124f184828501612252565b91505092915050565b61250381612d70565b82525050565b61251281612d82565b82525050565b600061252382612c18565b61252d8185612c2e565b935061253d818560208601612df3565b61254681613002565b840191505092915050565b600061255c82612c23565b6125668185612c3f565b9350612576818560208601612df3565b61257f81613002565b840191505092915050565b600061259582612c23565b61259f8185612c50565b93506125af818560208601612df3565b80840191505092915050565b60006125c8603283612c3f565b91506125d382613013565b604082019050919050565b60006125eb602683612c3f565b91506125f682613062565b604082019050919050565b600061260e601c83612c3f565b9150612619826130b1565b602082019050919050565b6000612631602483612c3f565b915061263c826130da565b604082019050919050565b6000612654601983612c3f565b915061265f82613129565b602082019050919050565b6000612677601f83612c3f565b915061268282613152565b602082019050919050565b600061269a602c83612c3f565b91506126a58261317b565b604082019050919050565b60006126bd603883612c3f565b91506126c8826131ca565b604082019050919050565b60006126e0602a83612c3f565b91506126eb82613219565b604082019050919050565b6000612703602983612c3f565b915061270e82613268565b604082019050919050565b6000612726602083612c3f565b9150612731826132b7565b602082019050919050565b6000612749602c83612c3f565b9150612754826132e0565b604082019050919050565b600061276c600583612c50565b91506127778261332f565b600582019050919050565b600061278f602083612c3f565b915061279a82613358565b602082019050919050565b60006127b2602983612c3f565b91506127bd82613381565b604082019050919050565b60006127d5602f83612c3f565b91506127e0826133d0565b604082019050919050565b60006127f8602183612c3f565b91506128038261341f565b604082019050919050565b600061281b601883612c3f565b91506128268261346e565b602082019050919050565b600061283e603183612c3f565b915061284982613497565b604082019050919050565b61285d81612dda565b82525050565b600061286f828561258a565b915061287b828461258a565b91506128868261275f565b91508190509392505050565b60006020820190506128a760008301846124fa565b92915050565b60006080820190506128c260008301876124fa565b6128cf60208301866124fa565b6128dc6040830185612854565b81810360608301526128ee8184612518565b905095945050505050565b600060208201905061290e6000830184612509565b92915050565b6000602082019050818103600083015261292e8184612551565b905092915050565b6000602082019050818103600083015261294f816125bb565b9050919050565b6000602082019050818103600083015261296f816125de565b9050919050565b6000602082019050818103600083015261298f81612601565b9050919050565b600060208201905081810360008301526129af81612624565b9050919050565b600060208201905081810360008301526129cf81612647565b9050919050565b600060208201905081810360008301526129ef8161266a565b9050919050565b60006020820190508181036000830152612a0f8161268d565b9050919050565b60006020820190508181036000830152612a2f816126b0565b9050919050565b60006020820190508181036000830152612a4f816126d3565b9050919050565b60006020820190508181036000830152612a6f816126f6565b9050919050565b60006020820190508181036000830152612a8f81612719565b9050919050565b60006020820190508181036000830152612aaf8161273c565b9050919050565b60006020820190508181036000830152612acf81612782565b9050919050565b60006020820190508181036000830152612aef816127a5565b9050919050565b60006020820190508181036000830152612b0f816127c8565b9050919050565b60006020820190508181036000830152612b2f816127eb565b9050919050565b60006020820190508181036000830152612b4f8161280e565b9050919050565b60006020820190508181036000830152612b6f81612831565b9050919050565b6000602082019050612b8b6000830184612854565b92915050565b6000612b9b612bac565b9050612ba78282612e58565b919050565b6000604051905090565b600067ffffffffffffffff821115612bd157612bd0612fbf565b5b612bda82613002565b9050602081019050919050565b600067ffffffffffffffff821115612c0257612c01612fbf565b5b612c0b82613002565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c6682612dda565b9150612c7183612dda565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ca657612ca5612f03565b5b828201905092915050565b6000612cbc82612dda565b9150612cc783612dda565b925082612cd757612cd6612f32565b5b828204905092915050565b6000612ced82612dda565b9150612cf883612dda565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d3157612d30612f03565b5b828202905092915050565b6000612d4782612dda565b9150612d5283612dda565b925082821015612d6557612d64612f03565b5b828203905092915050565b6000612d7b82612dba565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e11578082015181840152602081019050612df6565b83811115612e20576000848401525b50505050565b60006002820490506001821680612e3e57607f821691505b60208210811415612e5257612e51612f61565b5b50919050565b612e6182613002565b810181811067ffffffffffffffff82111715612e8057612e7f612fbf565b5b80604052505050565b6000612e9482612dda565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ec757612ec6612f03565b5b600182019050919050565b6000612edd82612dda565b9150612ee883612dda565b925082612ef857612ef7612f32565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6e756d6265724f664e6674732063616e6e6f7420626520300000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6134ef81612d70565b81146134fa57600080fd5b50565b61350681612d82565b811461351157600080fd5b50565b61351d81612d8e565b811461352857600080fd5b50565b61353481612dda565b811461353f57600080fd5b5056fea264697066735822122088b644958d275c6aab943bf01106af2e8497cbba90e39bb3df9c4b800d093a6264736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5947614a5855667073694761526d756b3552755946585a74464239686958465475654c71655045474646737668747470733a2f2f697066732e696f2f697066732f516d64764450586a43333466455539714b7571787263577839775071715350726e47473864537138506d393458312f

Deployed Bytecode

0x60806040526004361061014f5760003560e01c8063715018a6116100b6578063a22cb4651161006f578063a22cb4651461047c578063b88d4fde146104a5578063c87b56dd146104ce578063e985e9c51461050b578063f2fde38b14610548578063fb107a4f1461057157610156565b8063715018a61461038b57806381530b68146103a25780638b7afe2e146103df5780638da5cb5b1461040a578063926427441461043557806395d89b411461045157610156565b80633ccfd60b116101085780633ccfd60b1461027d57806340d0b4a91461029457806342842e0e146102ab57806355f804b3146102d45780636352211e1461031157806370a082311461034e57610156565b806301ffc9a71461015b57806306fdde0314610198578063081812fc146101c3578063095ea7b31461020057806318160ddd1461022957806323b872dd1461025457610156565b3661015657005b600080fd5b34801561016757600080fd5b50610182600480360381019061017d919061242a565b61059c565b60405161018f91906128f9565b60405180910390f35b3480156101a457600080fd5b506101ad61067e565b6040516101ba9190612914565b60405180910390f35b3480156101cf57600080fd5b506101ea60048036038101906101e591906124cd565b610710565b6040516101f79190612892565b60405180910390f35b34801561020c57600080fd5b50610227600480360381019061022291906123ea565b610795565b005b34801561023557600080fd5b5061023e6108ad565b60405161024b9190612b76565b60405180910390f35b34801561026057600080fd5b5061027b600480360381019061027691906122d4565b6108be565b005b34801561028957600080fd5b5061029261091e565b005b3480156102a057600080fd5b506102a96109f0565b005b3480156102b757600080fd5b506102d260048036038101906102cd91906122d4565b610a89565b005b3480156102e057600080fd5b506102fb60048036038101906102f69190612484565b610aa9565b60405161030891906128f9565b60405180910390f35b34801561031d57600080fd5b50610338600480360381019061033391906124cd565b610acb565b6040516103459190612892565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190612267565b610b7d565b6040516103829190612b76565b60405180910390f35b34801561039757600080fd5b506103a0610c35565b005b3480156103ae57600080fd5b506103c960048036038101906103c491906124cd565b610cbd565b6040516103d691906128f9565b60405180910390f35b3480156103eb57600080fd5b506103f4610d4b565b6040516104019190612b76565b60405180910390f35b34801561041657600080fd5b5061041f610dcf565b60405161042c9190612892565b60405180910390f35b61044f600480360381019061044a91906124cd565b610df9565b005b34801561045d57600080fd5b50610466610f18565b6040516104739190612914565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e91906123aa565b610faa565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190612327565b610fc0565b005b3480156104da57600080fd5b506104f560048036038101906104f091906124cd565b611022565b6040516105029190612914565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190612294565b611178565b60405161053f91906128f9565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612267565b61120c565b005b34801561057d57600080fd5b50610586611304565b6040516105939190612b76565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610677575061067682611345565b5b9050919050565b60606000805461068d90612e26565b80601f01602080910402602001604051908101604052809291908181526020018280546106b990612e26565b80156107065780601f106106db57610100808354040283529160200191610706565b820191906000526020600020905b8154815290600101906020018083116106e957829003601f168201915b5050505050905090565b600061071b826113af565b61075a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075190612a96565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107a082610acb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080890612b16565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661083061141b565b73ffffffffffffffffffffffffffffffffffffffff16148061085f575061085e8161085961141b565b611178565b5b61089e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089590612a16565b60405180910390fd5b6108a88383611423565b505050565b60006108b96007611324565b905090565b6108cf6108c961141b565b826114dc565b61090e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090590612b56565b60405180910390fd5b6109198383836115ba565b505050565b61092661141b565b73ffffffffffffffffffffffffffffffffffffffff16610944610dcf565b73ffffffffffffffffffffffffffffffffffffffff161461099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099190612ab6565b60405180910390fd5b60004790506109a761141b565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156109ec573d6000803e3d6000fd5b5050565b6109f861141b565b73ffffffffffffffffffffffffffffffffffffffff16610a16610dcf565b73ffffffffffffffffffffffffffffffffffffffff1614610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390612ab6565b60405180910390fd5b6001600960006101000a81548160ff021916908315150217905550565b610aa483838360405180602001604052806000815250610fc0565b505050565b60008160089080519060200190610ac192919061207b565b5060019050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b90612a56565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590612a36565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c3d61141b565b73ffffffffffffffffffffffffffffffffffffffff16610c5b610dcf565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890612ab6565b60405180910390fd5b610cbb6000611816565b565b6000610cc761141b565b73ffffffffffffffffffffffffffffffffffffffff16610ce5610dcf565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290612ab6565b60405180910390fd5b81600b8190555060019050919050565b6000610d5561141b565b73ffffffffffffffffffffffffffffffffffffffff16610d73610dcf565b73ffffffffffffffffffffffffffffffffffffffff1614610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090612ab6565b60405180910390fd5b47905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008111610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390612b36565b60405180910390fd5b610e44610dcf565b73ffffffffffffffffffffffffffffffffffffffff16610e6261141b565b73ffffffffffffffffffffffffffffffffffffffff1614610ed2573481610e87611304565b610e919190612ce2565b14610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec8906129d6565b60405180910390fd5b5b60005b81811015610f1457610ee7600761130e565b610f01610ef261141b565b610efc6007611324565b6118dc565b8080610f0c90612e89565b915050610ed5565b5050565b606060018054610f2790612e26565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5390612e26565b8015610fa05780601f10610f7557610100808354040283529160200191610fa0565b820191906000526020600020905b815481529060010190602001808311610f8357829003601f168201915b5050505050905090565b610fbc610fb561141b565b83836118fa565b5050565b610fd1610fcb61141b565b836114dc565b611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790612b56565b60405180910390fd5b61101c84848484611a67565b50505050565b606061102d826113af565b61106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390612af6565b60405180910390fd5b60011515600960009054906101000a900460ff16151514156110e5576000611092611ac3565b905060008151116110b257604051806020016040528060008152506110dd565b806110bc84611b55565b6040516020016110cd929190612863565b6040516020818303038152906040525b915050611173565b600a80546110f290612e26565b80601f016020809104026020016040519081016040528092919081815260200182805461111e90612e26565b801561116b5780601f106111405761010080835404028352916020019161116b565b820191906000526020600020905b81548152906001019060200180831161114e57829003601f168201915b505050505090505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61121461141b565b73ffffffffffffffffffffffffffffffffffffffff16611232610dcf565b73ffffffffffffffffffffffffffffffffffffffff1614611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90612ab6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90612956565b60405180910390fd5b61130181611816565b50565b6000600b54905090565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661149683610acb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114e7826113af565b611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d906129f6565b60405180910390fd5b600061153183610acb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806115a057508373ffffffffffffffffffffffffffffffffffffffff1661158884610710565b73ffffffffffffffffffffffffffffffffffffffff16145b806115b157506115b08185611178565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115da82610acb565b73ffffffffffffffffffffffffffffffffffffffff1614611630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162790612ad6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790612996565b60405180910390fd5b6116ab838383611cb6565b6116b6600082611423565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117069190612d3c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461175d9190612c5b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118f6828260405180602001604052806000815250611cbb565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611960906129b6565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a5a91906128f9565b60405180910390a3505050565b611a728484846115ba565b611a7e84848484611d16565b611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490612936565b60405180910390fd5b50505050565b606060088054611ad290612e26565b80601f0160208091040260200160405190810160405280929190818152602001828054611afe90612e26565b8015611b4b5780601f10611b2057610100808354040283529160200191611b4b565b820191906000526020600020905b815481529060010190602001808311611b2e57829003601f168201915b5050505050905090565b60606000821415611b9d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cb1565b600082905060005b60008214611bcf578080611bb890612e89565b915050600a82611bc89190612cb1565b9150611ba5565b60008167ffffffffffffffff811115611beb57611bea612fbf565b5b6040519080825280601f01601f191660200182016040528015611c1d5781602001600182028036833780820191505090505b5090505b60008514611caa57600182611c369190612d3c565b9150600a85611c459190612ed2565b6030611c519190612c5b565b60f81b818381518110611c6757611c66612f90565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ca39190612cb1565b9450611c21565b8093505050505b919050565b505050565b611cc58383611ead565b611cd26000848484611d16565b611d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0890612936565b60405180910390fd5b505050565b6000611d378473ffffffffffffffffffffffffffffffffffffffff16611332565b15611ea0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d6061141b565b8786866040518563ffffffff1660e01b8152600401611d8294939291906128ad565b602060405180830381600087803b158015611d9c57600080fd5b505af1925050508015611dcd57506040513d601f19601f82011682018060405250810190611dca9190612457565b60015b611e50573d8060008114611dfd576040519150601f19603f3d011682016040523d82523d6000602084013e611e02565b606091505b50600081511415611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3f90612936565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ea5565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1490612a76565b60405180910390fd5b611f26816113af565b15611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90612976565b60405180910390fd5b611f7260008383611cb6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fc29190612c5b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461208790612e26565b90600052602060002090601f0160209004810192826120a957600085556120f0565b82601f106120c257805160ff19168380011785556120f0565b828001600101855582156120f0579182015b828111156120ef5782518255916020019190600101906120d4565b5b5090506120fd9190612101565b5090565b5b8082111561211a576000816000905550600101612102565b5090565b600061213161212c84612bb6565b612b91565b90508281526020810184848401111561214d5761214c612ff3565b5b612158848285612de4565b509392505050565b600061217361216e84612be7565b612b91565b90508281526020810184848401111561218f5761218e612ff3565b5b61219a848285612de4565b509392505050565b6000813590506121b1816134e6565b92915050565b6000813590506121c6816134fd565b92915050565b6000813590506121db81613514565b92915050565b6000815190506121f081613514565b92915050565b600082601f83011261220b5761220a612fee565b5b813561221b84826020860161211e565b91505092915050565b600082601f83011261223957612238612fee565b5b8135612249848260208601612160565b91505092915050565b6000813590506122618161352b565b92915050565b60006020828403121561227d5761227c612ffd565b5b600061228b848285016121a2565b91505092915050565b600080604083850312156122ab576122aa612ffd565b5b60006122b9858286016121a2565b92505060206122ca858286016121a2565b9150509250929050565b6000806000606084860312156122ed576122ec612ffd565b5b60006122fb868287016121a2565b935050602061230c868287016121a2565b925050604061231d86828701612252565b9150509250925092565b6000806000806080858703121561234157612340612ffd565b5b600061234f878288016121a2565b9450506020612360878288016121a2565b935050604061237187828801612252565b925050606085013567ffffffffffffffff81111561239257612391612ff8565b5b61239e878288016121f6565b91505092959194509250565b600080604083850312156123c1576123c0612ffd565b5b60006123cf858286016121a2565b92505060206123e0858286016121b7565b9150509250929050565b6000806040838503121561240157612400612ffd565b5b600061240f858286016121a2565b925050602061242085828601612252565b9150509250929050565b6000602082840312156124405761243f612ffd565b5b600061244e848285016121cc565b91505092915050565b60006020828403121561246d5761246c612ffd565b5b600061247b848285016121e1565b91505092915050565b60006020828403121561249a57612499612ffd565b5b600082013567ffffffffffffffff8111156124b8576124b7612ff8565b5b6124c484828501612224565b91505092915050565b6000602082840312156124e3576124e2612ffd565b5b60006124f184828501612252565b91505092915050565b61250381612d70565b82525050565b61251281612d82565b82525050565b600061252382612c18565b61252d8185612c2e565b935061253d818560208601612df3565b61254681613002565b840191505092915050565b600061255c82612c23565b6125668185612c3f565b9350612576818560208601612df3565b61257f81613002565b840191505092915050565b600061259582612c23565b61259f8185612c50565b93506125af818560208601612df3565b80840191505092915050565b60006125c8603283612c3f565b91506125d382613013565b604082019050919050565b60006125eb602683612c3f565b91506125f682613062565b604082019050919050565b600061260e601c83612c3f565b9150612619826130b1565b602082019050919050565b6000612631602483612c3f565b915061263c826130da565b604082019050919050565b6000612654601983612c3f565b915061265f82613129565b602082019050919050565b6000612677601f83612c3f565b915061268282613152565b602082019050919050565b600061269a602c83612c3f565b91506126a58261317b565b604082019050919050565b60006126bd603883612c3f565b91506126c8826131ca565b604082019050919050565b60006126e0602a83612c3f565b91506126eb82613219565b604082019050919050565b6000612703602983612c3f565b915061270e82613268565b604082019050919050565b6000612726602083612c3f565b9150612731826132b7565b602082019050919050565b6000612749602c83612c3f565b9150612754826132e0565b604082019050919050565b600061276c600583612c50565b91506127778261332f565b600582019050919050565b600061278f602083612c3f565b915061279a82613358565b602082019050919050565b60006127b2602983612c3f565b91506127bd82613381565b604082019050919050565b60006127d5602f83612c3f565b91506127e0826133d0565b604082019050919050565b60006127f8602183612c3f565b91506128038261341f565b604082019050919050565b600061281b601883612c3f565b91506128268261346e565b602082019050919050565b600061283e603183612c3f565b915061284982613497565b604082019050919050565b61285d81612dda565b82525050565b600061286f828561258a565b915061287b828461258a565b91506128868261275f565b91508190509392505050565b60006020820190506128a760008301846124fa565b92915050565b60006080820190506128c260008301876124fa565b6128cf60208301866124fa565b6128dc6040830185612854565b81810360608301526128ee8184612518565b905095945050505050565b600060208201905061290e6000830184612509565b92915050565b6000602082019050818103600083015261292e8184612551565b905092915050565b6000602082019050818103600083015261294f816125bb565b9050919050565b6000602082019050818103600083015261296f816125de565b9050919050565b6000602082019050818103600083015261298f81612601565b9050919050565b600060208201905081810360008301526129af81612624565b9050919050565b600060208201905081810360008301526129cf81612647565b9050919050565b600060208201905081810360008301526129ef8161266a565b9050919050565b60006020820190508181036000830152612a0f8161268d565b9050919050565b60006020820190508181036000830152612a2f816126b0565b9050919050565b60006020820190508181036000830152612a4f816126d3565b9050919050565b60006020820190508181036000830152612a6f816126f6565b9050919050565b60006020820190508181036000830152612a8f81612719565b9050919050565b60006020820190508181036000830152612aaf8161273c565b9050919050565b60006020820190508181036000830152612acf81612782565b9050919050565b60006020820190508181036000830152612aef816127a5565b9050919050565b60006020820190508181036000830152612b0f816127c8565b9050919050565b60006020820190508181036000830152612b2f816127eb565b9050919050565b60006020820190508181036000830152612b4f8161280e565b9050919050565b60006020820190508181036000830152612b6f81612831565b9050919050565b6000602082019050612b8b6000830184612854565b92915050565b6000612b9b612bac565b9050612ba78282612e58565b919050565b6000604051905090565b600067ffffffffffffffff821115612bd157612bd0612fbf565b5b612bda82613002565b9050602081019050919050565b600067ffffffffffffffff821115612c0257612c01612fbf565b5b612c0b82613002565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c6682612dda565b9150612c7183612dda565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ca657612ca5612f03565b5b828201905092915050565b6000612cbc82612dda565b9150612cc783612dda565b925082612cd757612cd6612f32565b5b828204905092915050565b6000612ced82612dda565b9150612cf883612dda565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d3157612d30612f03565b5b828202905092915050565b6000612d4782612dda565b9150612d5283612dda565b925082821015612d6557612d64612f03565b5b828203905092915050565b6000612d7b82612dba565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e11578082015181840152602081019050612df6565b83811115612e20576000848401525b50505050565b60006002820490506001821680612e3e57607f821691505b60208210811415612e5257612e51612f61565b5b50919050565b612e6182613002565b810181811067ffffffffffffffff82111715612e8057612e7f612fbf565b5b80604052505050565b6000612e9482612dda565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ec757612ec6612f03565b5b600182019050919050565b6000612edd82612dda565b9150612ee883612dda565b925082612ef857612ef7612f32565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6e756d6265724f664e6674732063616e6e6f7420626520300000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6134ef81612d70565b81146134fa57600080fd5b50565b61350681612d82565b811461351157600080fd5b50565b61351d81612d8e565b811461352857600080fd5b50565b61353481612dda565b811461353f57600080fd5b5056fea264697066735822122088b644958d275c6aab943bf01106af2e8497cbba90e39bb3df9c4b800d093a6264736f6c63430008070033

Deployed Bytecode Sourcemap

33265:3846:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19823:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20768:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22327:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21850:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34610:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23077:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36966:142;;;;;;;;;;;;;:::i;:::-;;35488:80;;;;;;;;;;;;;:::i;:::-;;23487:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34888:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20462:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20192:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3284:103;;;;;;;;;;;;;:::i;:::-;;35824:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36762:112;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2633:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36069:574;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20937:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22620:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23743:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35010:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22846:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3542:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35645:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19823:305;19925:4;19977:25;19962:40;;;:11;:40;;;;:105;;;;20034:33;20019:48;;;:11;:48;;;;19962:105;:158;;;;20084:36;20108:11;20084:23;:36::i;:::-;19962:158;19942:178;;19823:305;;;:::o;20768:100::-;20822:13;20855:5;20848:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20768:100;:::o;22327:221::-;22403:7;22431:16;22439:7;22431;:16::i;:::-;22423:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22516:15;:24;22532:7;22516:24;;;;;;;;;;;;;;;;;;;;;22509:31;;22327:221;;;:::o;21850:411::-;21931:13;21947:23;21962:7;21947:14;:23::i;:::-;21931:39;;21995:5;21989:11;;:2;:11;;;;21981:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22089:5;22073:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22098:37;22115:5;22122:12;:10;:12::i;:::-;22098:16;:37::i;:::-;22073:62;22051:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22232:21;22241:2;22245:7;22232:8;:21::i;:::-;21920:341;21850:411;;:::o;34610:105::-;34656:7;34682:25;:15;:23;:25::i;:::-;34675:32;;34610:105;:::o;23077:339::-;23272:41;23291:12;:10;:12::i;:::-;23305:7;23272:18;:41::i;:::-;23264:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23380:28;23390:4;23396:2;23400:7;23380:9;:28::i;:::-;23077:339;;;:::o;36966:142::-;2864:12;:10;:12::i;:::-;2853:23;;:7;:5;:7::i;:::-;:23;;;2845:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37014:12:::1;37029:21;37014:36;;37069:12;:10;:12::i;:::-;37061:30;;:39;37092:7;37061:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;37003:105;36966:142::o:0;35488:80::-;2864:12;:10;:12::i;:::-;2853:23;;:7;:5;:7::i;:::-;:23;;;2845:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35556:4:::1;35545:8;;:15;;;;;;;;;;;;;;;;;;35488:80::o:0;23487:185::-;23625:39;23642:4;23648:2;23652:7;23625:39;;;;;;;;;;;;:16;:39::i;:::-;23487:185;;;:::o;34888:114::-;34948:4;34968:7;34961:4;:14;;;;;;;;;;;;:::i;:::-;;34990:4;34983:11;;34888:114;;;:::o;20462:239::-;20534:7;20554:13;20570:7;:16;20578:7;20570:16;;;;;;;;;;;;;;;;;;;;;20554:32;;20622:1;20605:19;;:5;:19;;;;20597:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20688:5;20681:12;;;20462:239;;;:::o;20192:208::-;20264:7;20309:1;20292:19;;:5;:19;;;;20284:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20376:9;:16;20386:5;20376:16;;;;;;;;;;;;;;;;20369:23;;20192:208;;;:::o;3284:103::-;2864:12;:10;:12::i;:::-;2853:23;;:7;:5;:7::i;:::-;:23;;;2845:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3349:30:::1;3376:1;3349:18;:30::i;:::-;3284:103::o:0;35824:131::-;35890:4;2864:12;:10;:12::i;:::-;2853:23;;:7;:5;:7::i;:::-;:23;;;2845:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35917:8:::1;35906;:19;;;;35943:4;35936:11;;35824:131:::0;;;:::o;36762:112::-;36819:7;2864:12;:10;:12::i;:::-;2853:23;;:7;:5;:7::i;:::-;:23;;;2845:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36845:21:::1;36838:28;;36762:112:::0;:::o;2633:87::-;2679:7;2706:6;;;;;;;;;;;2699:13;;2633:87;:::o;36069:574::-;36157:1;36142:12;:16;36134:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;36262:7;:5;:7::i;:::-;36246:23;;:12;:10;:12::i;:::-;:23;;;36243:222;;36408:9;36391:12;36374:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;36366:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36243:222;36482:6;36477:159;36498:12;36494:1;:16;36477:159;;;36532:27;:15;:25;:27::i;:::-;36574:50;36584:12;:10;:12::i;:::-;36598:25;:15;:23;:25::i;:::-;36574:9;:50::i;:::-;36512:3;;;;;:::i;:::-;;;;36477:159;;;;36069:574;:::o;20937:104::-;20993:13;21026:7;21019:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20937:104;:::o;22620:155::-;22715:52;22734:12;:10;:12::i;:::-;22748:8;22758;22715:18;:52::i;:::-;22620:155;;:::o;23743:328::-;23918:41;23937:12;:10;:12::i;:::-;23951:7;23918:18;:41::i;:::-;23910:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24024:39;24038:4;24044:2;24048:7;24057:5;24024:13;:39::i;:::-;23743:328;;;;:::o;35010:411::-;35083:13;35117:16;35125:7;35117;:16::i;:::-;35109:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;35213:4;35201:16;;:8;;;;;;;;;;;:16;;;35198:189;;;35229:21;35253:10;:8;:10::i;:::-;35229:34;;35305:1;35287:7;35281:21;:25;:94;;;;;;;;;;;;;;;;;35333:7;35342:18;:7;:16;:18::i;:::-;35316:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35281:94;35274:101;;;;;35198:189;35404:9;35397:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35010:411;;;;:::o;22846:164::-;22943:4;22967:18;:25;22986:5;22967:25;;;;;;;;;;;;;;;:35;22993:8;22967:35;;;;;;;;;;;;;;;;;;;;;;;;;22960:42;;22846:164;;;;:::o;3542:201::-;2864:12;:10;:12::i;:::-;2853:23;;:7;:5;:7::i;:::-;:23;;;2845:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3651:1:::1;3631:22;;:8;:22;;;;3623:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3707:28;3726:8;3707:18;:28::i;:::-;3542:201:::0;:::o;35645:85::-;35688:7;35714:8;;35707:15;;35645:85;:::o;32794:127::-;32901:1;32883:7;:14;;;:19;;;;;;;;;;;32794:127;:::o;32672:114::-;32737:7;32764;:14;;;32757:21;;32672:114;;;:::o;4713:387::-;4773:4;4981:12;5048:7;5036:20;5028:28;;5091:1;5084:4;:8;5077:15;;;4713:387;;;:::o;13314:157::-;13399:4;13438:25;13423:40;;;:11;:40;;;;13416:47;;13314:157;;;:::o;25581:127::-;25646:4;25698:1;25670:30;;:7;:16;25678:7;25670:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25663:37;;25581:127;;;:::o;2007:98::-;2060:7;2087:10;2080:17;;2007:98;:::o;29563:174::-;29665:2;29638:15;:24;29654:7;29638:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29721:7;29717:2;29683:46;;29692:23;29707:7;29692:14;:23::i;:::-;29683:46;;;;;;;;;;;;29563:174;;:::o;25875:348::-;25968:4;25993:16;26001:7;25993;:16::i;:::-;25985:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26069:13;26085:23;26100:7;26085:14;:23::i;:::-;26069:39;;26138:5;26127:16;;:7;:16;;;:51;;;;26171:7;26147:31;;:20;26159:7;26147:11;:20::i;:::-;:31;;;26127:51;:87;;;;26182:32;26199:5;26206:7;26182:16;:32::i;:::-;26127:87;26119:96;;;25875:348;;;;:::o;28867:578::-;29026:4;28999:31;;:23;29014:7;28999:14;:23::i;:::-;:31;;;28991:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29109:1;29095:16;;:2;:16;;;;29087:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29165:39;29186:4;29192:2;29196:7;29165:20;:39::i;:::-;29269:29;29286:1;29290:7;29269:8;:29::i;:::-;29330:1;29311:9;:15;29321:4;29311:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29359:1;29342:9;:13;29352:2;29342:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29390:2;29371:7;:16;29379:7;29371:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29429:7;29425:2;29410:27;;29419:4;29410:27;;;;;;;;;;;;28867:578;;;:::o;3903:191::-;3977:16;3996:6;;;;;;;;;;;3977:25;;4022:8;4013:6;;:17;;;;;;;;;;;;;;;;;;4077:8;4046:40;;4067:8;4046:40;;;;;;;;;;;;3966:128;3903:191;:::o;26565:110::-;26641:26;26651:2;26655:7;26641:26;;;;;;;;;;;;:9;:26::i;:::-;26565:110;;:::o;29879:315::-;30034:8;30025:17;;:5;:17;;;;30017:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;30121:8;30083:18;:25;30102:5;30083:25;;;;;;;;;;;;;;;:35;30109:8;30083:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;30167:8;30145:41;;30160:5;30145:41;;;30177:8;30145:41;;;;;;:::i;:::-;;;;;;;;29879:315;;;:::o;24953:::-;25110:28;25120:4;25126:2;25130:7;25110:9;:28::i;:::-;25157:48;25180:4;25186:2;25190:7;25199:5;25157:22;:48::i;:::-;25149:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24953:315;;;;:::o;34786:96::-;34837:13;34870:4;34863:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34786:96;:::o;215:723::-;271:13;501:1;492:5;:10;488:53;;;519:10;;;;;;;;;;;;;;;;;;;;;488:53;551:12;566:5;551:20;;582:14;607:78;622:1;614:4;:9;607:78;;640:8;;;;;:::i;:::-;;;;671:2;663:10;;;;;:::i;:::-;;;607:78;;;695:19;727:6;717:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;695:39;;745:154;761:1;752:5;:10;745:154;;789:1;779:11;;;;;:::i;:::-;;;856:2;848:5;:10;;;;:::i;:::-;835:2;:24;;;;:::i;:::-;822:39;;805:6;812;805:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;885:2;876:11;;;;;:::i;:::-;;;745:154;;;923:6;909:21;;;;;215:723;;;;:::o;32130:126::-;;;;:::o;26902:321::-;27032:18;27038:2;27042:7;27032:5;:18::i;:::-;27083:54;27114:1;27118:2;27122:7;27131:5;27083:22;:54::i;:::-;27061:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;26902:321;;;:::o;30759:799::-;30914:4;30935:15;:2;:13;;;:15::i;:::-;30931:620;;;30987:2;30971:36;;;31008:12;:10;:12::i;:::-;31022:4;31028:7;31037:5;30971:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30967:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31230:1;31213:6;:13;:18;31209:272;;;31256:60;;;;;;;;;;:::i;:::-;;;;;;;;31209:272;31431:6;31425:13;31416:6;31412:2;31408:15;31401:38;30967:529;31104:41;;;31094:51;;;:6;:51;;;;31087:58;;;;;30931:620;31535:4;31528:11;;30759:799;;;;;;;:::o;27559:382::-;27653:1;27639:16;;:2;:16;;;;27631:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27712:16;27720:7;27712;:16::i;:::-;27711:17;27703:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27774:45;27803:1;27807:2;27811:7;27774:20;:45::i;:::-;27849:1;27832:9;:13;27842:2;27832:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27880:2;27861:7;:16;27869:7;27861:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27925:7;27921:2;27900:33;;27917:1;27900:33;;;;;;;;;;;;27559: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;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;11864:366;;;:::o;12236:::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12608:366;;;:::o;12980:400::-;13140:3;13161:84;13243:1;13238:3;13161:84;:::i;:::-;13154:91;;13254:93;13343:3;13254:93;:::i;:::-;13372:1;13367:3;13363:11;13356:18;;12980:400;;;:::o;13386:366::-;13528:3;13549:67;13613:2;13608:3;13549:67;:::i;:::-;13542:74;;13625:93;13714:3;13625:93;:::i;:::-;13743:2;13738:3;13734:12;13727:19;;13386:366;;;:::o;13758:::-;13900:3;13921:67;13985:2;13980:3;13921:67;:::i;:::-;13914:74;;13997:93;14086:3;13997:93;:::i;:::-;14115:2;14110:3;14106:12;14099:19;;13758:366;;;:::o;14130:::-;14272:3;14293:67;14357:2;14352:3;14293:67;:::i;:::-;14286:74;;14369:93;14458:3;14369:93;:::i;:::-;14487:2;14482:3;14478:12;14471:19;;14130:366;;;:::o;14502:::-;14644:3;14665:67;14729:2;14724:3;14665:67;:::i;:::-;14658:74;;14741:93;14830:3;14741:93;:::i;:::-;14859:2;14854:3;14850:12;14843:19;;14502:366;;;:::o;14874:::-;15016:3;15037:67;15101:2;15096:3;15037:67;:::i;:::-;15030:74;;15113:93;15202:3;15113:93;:::i;:::-;15231:2;15226:3;15222:12;15215:19;;14874:366;;;:::o;15246:::-;15388:3;15409:67;15473:2;15468:3;15409:67;:::i;:::-;15402:74;;15485:93;15574:3;15485:93;:::i;:::-;15603:2;15598:3;15594:12;15587:19;;15246:366;;;:::o;15618:118::-;15705:24;15723:5;15705:24;:::i;:::-;15700:3;15693:37;15618:118;;:::o;15742:701::-;16023:3;16045:95;16136:3;16127:6;16045:95;:::i;:::-;16038:102;;16157:95;16248:3;16239:6;16157:95;:::i;:::-;16150:102;;16269:148;16413:3;16269:148;:::i;:::-;16262:155;;16434:3;16427:10;;15742:701;;;;;:::o;16449:222::-;16542:4;16580:2;16569:9;16565:18;16557:26;;16593:71;16661:1;16650:9;16646:17;16637:6;16593:71;:::i;:::-;16449:222;;;;:::o;16677:640::-;16872:4;16910:3;16899:9;16895:19;16887:27;;16924:71;16992:1;16981:9;16977:17;16968:6;16924:71;:::i;:::-;17005:72;17073:2;17062:9;17058:18;17049:6;17005:72;:::i;:::-;17087;17155:2;17144:9;17140:18;17131:6;17087:72;:::i;:::-;17206:9;17200:4;17196:20;17191:2;17180:9;17176:18;17169:48;17234:76;17305:4;17296:6;17234:76;:::i;:::-;17226:84;;16677:640;;;;;;;:::o;17323:210::-;17410:4;17448:2;17437:9;17433:18;17425:26;;17461:65;17523:1;17512:9;17508:17;17499:6;17461:65;:::i;:::-;17323:210;;;;:::o;17539:313::-;17652:4;17690:2;17679:9;17675:18;17667:26;;17739:9;17733:4;17729:20;17725:1;17714:9;17710:17;17703:47;17767:78;17840:4;17831:6;17767:78;:::i;:::-;17759:86;;17539:313;;;;:::o;17858:419::-;18024:4;18062:2;18051:9;18047:18;18039:26;;18111:9;18105:4;18101:20;18097:1;18086:9;18082:17;18075:47;18139:131;18265:4;18139:131;:::i;:::-;18131:139;;17858:419;;;:::o;18283:::-;18449:4;18487:2;18476:9;18472:18;18464:26;;18536:9;18530:4;18526:20;18522:1;18511:9;18507:17;18500:47;18564:131;18690:4;18564:131;:::i;:::-;18556:139;;18283:419;;;:::o;18708:::-;18874:4;18912:2;18901:9;18897:18;18889:26;;18961:9;18955:4;18951:20;18947:1;18936:9;18932:17;18925:47;18989:131;19115:4;18989:131;:::i;:::-;18981:139;;18708:419;;;:::o;19133:::-;19299:4;19337:2;19326:9;19322:18;19314:26;;19386:9;19380:4;19376:20;19372:1;19361:9;19357:17;19350:47;19414:131;19540:4;19414:131;:::i;:::-;19406:139;;19133:419;;;:::o;19558:::-;19724:4;19762:2;19751:9;19747:18;19739:26;;19811:9;19805:4;19801:20;19797:1;19786:9;19782:17;19775:47;19839:131;19965:4;19839:131;:::i;:::-;19831:139;;19558:419;;;:::o;19983:::-;20149:4;20187:2;20176:9;20172:18;20164:26;;20236:9;20230:4;20226:20;20222:1;20211:9;20207:17;20200:47;20264:131;20390:4;20264:131;:::i;:::-;20256:139;;19983:419;;;:::o;20408:::-;20574:4;20612:2;20601:9;20597:18;20589:26;;20661:9;20655:4;20651:20;20647:1;20636:9;20632:17;20625:47;20689:131;20815:4;20689:131;:::i;:::-;20681:139;;20408:419;;;:::o;20833:::-;20999:4;21037:2;21026:9;21022:18;21014:26;;21086:9;21080:4;21076:20;21072:1;21061:9;21057:17;21050:47;21114:131;21240:4;21114:131;:::i;:::-;21106:139;;20833:419;;;:::o;21258:::-;21424:4;21462:2;21451:9;21447:18;21439:26;;21511:9;21505:4;21501:20;21497:1;21486:9;21482:17;21475:47;21539:131;21665:4;21539:131;:::i;:::-;21531:139;;21258:419;;;:::o;21683:::-;21849:4;21887:2;21876:9;21872:18;21864:26;;21936:9;21930:4;21926:20;21922:1;21911:9;21907:17;21900:47;21964:131;22090:4;21964:131;:::i;:::-;21956:139;;21683:419;;;:::o;22108:::-;22274:4;22312:2;22301:9;22297:18;22289:26;;22361:9;22355:4;22351:20;22347:1;22336:9;22332:17;22325:47;22389:131;22515:4;22389:131;:::i;:::-;22381:139;;22108:419;;;:::o;22533:::-;22699:4;22737:2;22726:9;22722:18;22714:26;;22786:9;22780:4;22776:20;22772:1;22761:9;22757:17;22750:47;22814:131;22940:4;22814:131;:::i;:::-;22806:139;;22533:419;;;:::o;22958:::-;23124:4;23162:2;23151:9;23147:18;23139:26;;23211:9;23205:4;23201:20;23197:1;23186:9;23182:17;23175:47;23239:131;23365:4;23239:131;:::i;:::-;23231:139;;22958:419;;;:::o;23383:::-;23549:4;23587:2;23576:9;23572:18;23564:26;;23636:9;23630:4;23626:20;23622:1;23611:9;23607:17;23600:47;23664:131;23790:4;23664:131;:::i;:::-;23656:139;;23383:419;;;:::o;23808:::-;23974:4;24012:2;24001:9;23997:18;23989:26;;24061:9;24055:4;24051:20;24047:1;24036:9;24032:17;24025:47;24089:131;24215:4;24089:131;:::i;:::-;24081:139;;23808:419;;;:::o;24233:::-;24399:4;24437:2;24426:9;24422:18;24414:26;;24486:9;24480:4;24476:20;24472:1;24461:9;24457:17;24450:47;24514:131;24640:4;24514:131;:::i;:::-;24506:139;;24233:419;;;:::o;24658:::-;24824:4;24862:2;24851:9;24847:18;24839:26;;24911:9;24905:4;24901:20;24897:1;24886:9;24882:17;24875:47;24939:131;25065:4;24939:131;:::i;:::-;24931:139;;24658:419;;;:::o;25083:::-;25249:4;25287:2;25276:9;25272:18;25264:26;;25336:9;25330:4;25326:20;25322:1;25311:9;25307:17;25300:47;25364:131;25490:4;25364:131;:::i;:::-;25356:139;;25083:419;;;:::o;25508:222::-;25601:4;25639:2;25628:9;25624:18;25616:26;;25652:71;25720:1;25709:9;25705:17;25696:6;25652:71;:::i;:::-;25508:222;;;;:::o;25736:129::-;25770:6;25797:20;;:::i;:::-;25787:30;;25826:33;25854:4;25846:6;25826:33;:::i;:::-;25736:129;;;:::o;25871:75::-;25904:6;25937:2;25931:9;25921:19;;25871:75;:::o;25952:307::-;26013:4;26103:18;26095:6;26092:30;26089:56;;;26125:18;;:::i;:::-;26089:56;26163:29;26185:6;26163:29;:::i;:::-;26155:37;;26247:4;26241;26237:15;26229:23;;25952:307;;;:::o;26265:308::-;26327:4;26417:18;26409:6;26406:30;26403:56;;;26439:18;;:::i;:::-;26403:56;26477:29;26499:6;26477:29;:::i;:::-;26469:37;;26561:4;26555;26551:15;26543:23;;26265:308;;;:::o;26579:98::-;26630:6;26664:5;26658:12;26648:22;;26579:98;;;:::o;26683:99::-;26735:6;26769:5;26763:12;26753:22;;26683:99;;;:::o;26788:168::-;26871:11;26905:6;26900:3;26893:19;26945:4;26940:3;26936:14;26921:29;;26788:168;;;;:::o;26962:169::-;27046:11;27080:6;27075:3;27068:19;27120:4;27115:3;27111:14;27096:29;;26962:169;;;;:::o;27137:148::-;27239:11;27276:3;27261:18;;27137:148;;;;:::o;27291:305::-;27331:3;27350:20;27368:1;27350:20;:::i;:::-;27345:25;;27384:20;27402:1;27384:20;:::i;:::-;27379:25;;27538:1;27470:66;27466:74;27463:1;27460:81;27457:107;;;27544:18;;:::i;:::-;27457:107;27588:1;27585;27581:9;27574:16;;27291:305;;;;:::o;27602:185::-;27642:1;27659:20;27677:1;27659:20;:::i;:::-;27654:25;;27693:20;27711:1;27693:20;:::i;:::-;27688:25;;27732:1;27722:35;;27737:18;;:::i;:::-;27722:35;27779:1;27776;27772:9;27767:14;;27602:185;;;;:::o;27793:348::-;27833:7;27856:20;27874:1;27856:20;:::i;:::-;27851:25;;27890:20;27908:1;27890:20;:::i;:::-;27885:25;;28078:1;28010:66;28006:74;28003:1;28000:81;27995:1;27988:9;27981:17;27977:105;27974:131;;;28085:18;;:::i;:::-;27974:131;28133:1;28130;28126:9;28115:20;;27793:348;;;;:::o;28147:191::-;28187:4;28207:20;28225:1;28207:20;:::i;:::-;28202:25;;28241:20;28259:1;28241:20;:::i;:::-;28236:25;;28280:1;28277;28274:8;28271:34;;;28285:18;;:::i;:::-;28271:34;28330:1;28327;28323:9;28315:17;;28147:191;;;;:::o;28344:96::-;28381:7;28410:24;28428:5;28410:24;:::i;:::-;28399:35;;28344:96;;;:::o;28446:90::-;28480:7;28523:5;28516:13;28509:21;28498:32;;28446:90;;;:::o;28542:149::-;28578:7;28618:66;28611:5;28607:78;28596:89;;28542:149;;;:::o;28697:126::-;28734:7;28774:42;28767:5;28763:54;28752:65;;28697:126;;;:::o;28829:77::-;28866:7;28895:5;28884:16;;28829:77;;;:::o;28912:154::-;28996:6;28991:3;28986;28973:30;29058:1;29049:6;29044:3;29040:16;29033:27;28912:154;;;:::o;29072:307::-;29140:1;29150:113;29164:6;29161:1;29158:13;29150:113;;;29249:1;29244:3;29240:11;29234:18;29230:1;29225:3;29221:11;29214:39;29186:2;29183:1;29179:10;29174:15;;29150:113;;;29281:6;29278:1;29275:13;29272:101;;;29361:1;29352:6;29347:3;29343:16;29336:27;29272:101;29121:258;29072:307;;;:::o;29385:320::-;29429:6;29466:1;29460:4;29456:12;29446:22;;29513:1;29507:4;29503:12;29534:18;29524:81;;29590:4;29582:6;29578:17;29568:27;;29524:81;29652:2;29644:6;29641:14;29621:18;29618:38;29615:84;;;29671:18;;:::i;:::-;29615:84;29436:269;29385:320;;;:::o;29711:281::-;29794:27;29816:4;29794:27;:::i;:::-;29786:6;29782:40;29924:6;29912:10;29909:22;29888:18;29876:10;29873:34;29870:62;29867:88;;;29935:18;;:::i;:::-;29867:88;29975:10;29971:2;29964:22;29754:238;29711:281;;:::o;29998:233::-;30037:3;30060:24;30078:5;30060:24;:::i;:::-;30051:33;;30106:66;30099:5;30096:77;30093:103;;;30176:18;;:::i;:::-;30093:103;30223:1;30216:5;30212:13;30205:20;;29998:233;;;:::o;30237:176::-;30269:1;30286:20;30304:1;30286:20;:::i;:::-;30281:25;;30320:20;30338:1;30320:20;:::i;:::-;30315:25;;30359:1;30349:35;;30364:18;;:::i;:::-;30349:35;30405:1;30402;30398:9;30393:14;;30237:176;;;;:::o;30419:180::-;30467:77;30464:1;30457:88;30564:4;30561:1;30554:15;30588:4;30585:1;30578:15;30605:180;30653:77;30650:1;30643:88;30750:4;30747:1;30740:15;30774:4;30771:1;30764:15;30791:180;30839:77;30836:1;30829:88;30936:4;30933:1;30926:15;30960:4;30957:1;30950:15;30977:180;31025:77;31022:1;31015:88;31122:4;31119:1;31112:15;31146:4;31143:1;31136:15;31163:180;31211:77;31208:1;31201:88;31308:4;31305:1;31298:15;31332:4;31329:1;31322:15;31349:117;31458:1;31455;31448:12;31472:117;31581:1;31578;31571:12;31595:117;31704:1;31701;31694:12;31718:117;31827:1;31824;31817:12;31841:102;31882:6;31933:2;31929:7;31924:2;31917:5;31913:14;31909:28;31899:38;;31841:102;;;:::o;31949:237::-;32089:34;32085:1;32077:6;32073:14;32066:58;32158:20;32153:2;32145:6;32141:15;32134:45;31949:237;:::o;32192:225::-;32332:34;32328:1;32320:6;32316:14;32309:58;32401:8;32396:2;32388:6;32384:15;32377:33;32192:225;:::o;32423:178::-;32563:30;32559:1;32551:6;32547:14;32540:54;32423:178;:::o;32607:223::-;32747:34;32743:1;32735:6;32731:14;32724:58;32816:6;32811:2;32803:6;32799:15;32792:31;32607:223;:::o;32836:175::-;32976:27;32972:1;32964:6;32960:14;32953:51;32836:175;:::o;33017:181::-;33157:33;33153:1;33145:6;33141:14;33134:57;33017:181;:::o;33204:231::-;33344:34;33340:1;33332:6;33328:14;33321:58;33413:14;33408:2;33400:6;33396:15;33389:39;33204:231;:::o;33441:243::-;33581:34;33577:1;33569:6;33565:14;33558:58;33650:26;33645:2;33637:6;33633:15;33626:51;33441:243;:::o;33690:229::-;33830:34;33826:1;33818:6;33814:14;33807:58;33899:12;33894:2;33886:6;33882:15;33875:37;33690:229;:::o;33925:228::-;34065:34;34061:1;34053:6;34049:14;34042:58;34134:11;34129:2;34121:6;34117:15;34110:36;33925:228;:::o;34159:182::-;34299:34;34295:1;34287:6;34283:14;34276:58;34159:182;:::o;34347:231::-;34487:34;34483:1;34475:6;34471:14;34464:58;34556:14;34551:2;34543:6;34539:15;34532:39;34347:231;:::o;34584:155::-;34724:7;34720:1;34712:6;34708:14;34701:31;34584:155;:::o;34745:182::-;34885:34;34881:1;34873:6;34869:14;34862:58;34745:182;:::o;34933:228::-;35073:34;35069:1;35061:6;35057:14;35050:58;35142:11;35137:2;35129:6;35125:15;35118:36;34933:228;:::o;35167:234::-;35307:34;35303:1;35295:6;35291:14;35284:58;35376:17;35371:2;35363:6;35359:15;35352:42;35167:234;:::o;35407:220::-;35547:34;35543:1;35535:6;35531:14;35524:58;35616:3;35611:2;35603:6;35599:15;35592:28;35407:220;:::o;35633:174::-;35773:26;35769:1;35761:6;35757:14;35750:50;35633:174;:::o;35813:236::-;35953:34;35949:1;35941:6;35937:14;35930:58;36022:19;36017:2;36009:6;36005:15;35998:44;35813:236;:::o;36055:122::-;36128:24;36146:5;36128:24;:::i;:::-;36121:5;36118:35;36108:63;;36167:1;36164;36157:12;36108:63;36055:122;:::o;36183:116::-;36253:21;36268:5;36253:21;:::i;:::-;36246:5;36243:32;36233:60;;36289:1;36286;36279:12;36233:60;36183:116;:::o;36305:120::-;36377:23;36394:5;36377:23;:::i;:::-;36370:5;36367:34;36357:62;;36415:1;36412;36405:12;36357:62;36305:120;:::o;36431:122::-;36504:24;36522:5;36504:24;:::i;:::-;36497:5;36494:35;36484:63;;36543:1;36540;36533:12;36484:63;36431:122;:::o

Swarm Source

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