ETH Price: $2,513.16 (+0.57%)

Token

Amber Pinocchio (AP)
 

Overview

Max Total Supply

144 AP

Holders

91

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AP
0xE9F8c582DFfB4fA6A5aF97E481cbDb2794937aD5
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:
AmberPinocchio

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-02
*/

// File: contracts/AmberPinocchio.sol

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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;

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

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

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

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

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

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

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

// File: CESHI1.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 AmberPinocchio is ERC721A, Ownable, ReentrancyGuard {
    string public baseURI = "ipfs://QmbQrxt65U6PggtNkUrurzMpxm8Zu8fFPLC3UdPj6T2mA7/";
    uint   public price             = 0.003 ether;
    uint   public maxPerTx          = 10;
    uint   public maxPerFree        = 1;
    uint   public totalFree         = 4444;
    uint   public maxSupply         = 4444;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("Amber Pinocchio", "AP"){}

    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,"amber",".json"))
            : "";
    }

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

        if (isFree) {
            cost = 0;
            _mintedFreeAmount[msg.sender] += count;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count <= maxSupply, "No more");
        require(count <= maxPerTx, "Max per TX reached.");

        _safeMint(msg.sender, 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 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":"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":"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":"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":"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":"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":[{"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":"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"}]

60806040526040518060600160405280603681526020016200422660369139600990805190602001906200003592919062000201565b50660aa87bee538000600a55600a600b556001600c5561115c600d5561115c600e553480156200006457600080fd5b506040518060400160405280600f81526020017f416d6265722050696e6f636368696f00000000000000000000000000000000008152506040518060400160405280600281526020017f41500000000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000e992919062000201565b5080600290805190602001906200010292919062000201565b50505062000125620001196200013360201b60201c565b6200013b60201b60201c565b600160088190555062000316565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020f90620002b1565b90600052602060002090601f0160209004810192826200023357600085556200027f565b82601f106200024e57805160ff19168380011785556200027f565b828001600101855582156200027f579182015b828111156200027e57825182559160200191906001019062000261565b5b5090506200028e919062000292565b5090565b5b80821115620002ad57600081600090555060010162000293565b5090565b60006002820490506001821680620002ca57607f821691505b60208210811415620002e157620002e0620002e7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613f0080620003266000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610633578063e985e9c51461065e578063f2fde38b1461069b578063f968adbe146106c4576101c2565b8063a22cb46514610579578063b88d4fde146105a2578063c7c39ffc146105cb578063c87b56dd146105f6576101c2565b806395d89b41116100d157806395d89b41146104de578063a035b1fe14610509578063a0712d6814610534578063a0bcfc7f14610550576101c2565b8063715018a6146104735780638da5cb5b1461048a57806391b7f5ed146104b5576101c2565b8063333e44e6116101645780634f6ccce71161013e5780634f6ccce7146103915780636352211e146103ce5780636c0360eb1461040b57806370a0823114610436576101c2565b8063333e44e6146103265780633ccfd60b1461035157806342842e0e14610368576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f745c59146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612b19565b6106ef565b6040516101fb9190613113565b60405180910390f35b34801561021057600080fd5b50610219610839565b604051610226919061312e565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612bbc565b6108cb565b60405161026391906130ac565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612ad9565b610950565b005b3480156102a157600080fd5b506102aa610a69565b6040516102b79190613450565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906129c3565b610a72565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612ad9565b610a82565b60405161031d9190613450565b60405180910390f35b34801561033257600080fd5b5061033b610c74565b6040516103489190613450565b60405180910390f35b34801561035d57600080fd5b50610366610c7a565b005b34801561037457600080fd5b5061038f600480360381019061038a91906129c3565b610dfb565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612bbc565b610e1b565b6040516103c59190613450565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190612bbc565b610e6e565b60405161040291906130ac565b60405180910390f35b34801561041757600080fd5b50610420610e84565b60405161042d919061312e565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190612956565b610f12565b60405161046a9190613450565b60405180910390f35b34801561047f57600080fd5b50610488610ffb565b005b34801561049657600080fd5b5061049f611083565b6040516104ac91906130ac565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190612bbc565b6110ad565b005b3480156104ea57600080fd5b506104f3611133565b604051610500919061312e565b60405180910390f35b34801561051557600080fd5b5061051e6111c5565b60405161052b9190613450565b60405180910390f35b61054e60048036038101906105499190612bbc565b6111cb565b005b34801561055c57600080fd5b5061057760048036038101906105729190612b73565b6113ab565b005b34801561058557600080fd5b506105a0600480360381019061059b9190612a99565b611441565b005b3480156105ae57600080fd5b506105c960048036038101906105c49190612a16565b6115c2565b005b3480156105d757600080fd5b506105e061161e565b6040516105ed9190613450565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612bbc565b611624565b60405161062a919061312e565b60405180910390f35b34801561063f57600080fd5b506106486116c1565b6040516106559190613450565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612983565b6116c7565b6040516106929190613113565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190612956565b61175b565b005b3480156106d057600080fd5b506106d9611853565b6040516106e69190613450565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610832575061083182611859565b5b9050919050565b606060018054610848906136a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610874906136a6565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d6826118c3565b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c90613430565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095b82610e6e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c390613310565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109eb6118d0565b73ffffffffffffffffffffffffffffffffffffffff161480610a1a5750610a1981610a146118d0565b6116c7565b5b610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090613210565b60405180910390fd5b610a648383836118d8565b505050565b60008054905090565b610a7d83838361198a565b505050565b6000610a8d83610f12565b8210610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac590613150565b60405180910390fd5b6000610ad8610a69565b905060008060005b83811015610c32576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bd257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c245786841415610c1b578195505050505050610c6e565b83806001019450505b508080600101915050610ae0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c65906133d0565b60405180910390fd5b92915050565b600d5481565b610c826118d0565b73ffffffffffffffffffffffffffffffffffffffff16610ca0611083565b73ffffffffffffffffffffffffffffffffffffffff1614610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced90613270565b60405180910390fd5b60026008541415610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d33906133f0565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610d6a90613097565b60006040518083038185875af1925050503d8060008114610da7576040519150601f19603f3d011682016040523d82523d6000602084013e610dac565b606091505b5050905080610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613330565b60405180910390fd5b506001600881905550565b610e16838383604051806020016040528060008152506115c2565b505050565b6000610e25610a69565b8210610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d906131d0565b60405180910390fd5b819050919050565b6000610e7982611eca565b600001519050919050565b60098054610e91906136a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebd906136a6565b8015610f0a5780601f10610edf57610100808354040283529160200191610f0a565b820191906000526020600020905b815481529060010190602001808311610eed57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a90613230565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110036118d0565b73ffffffffffffffffffffffffffffffffffffffff16611021611083565b73ffffffffffffffffffffffffffffffffffffffff1614611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90613270565b60405180910390fd5b6110816000612064565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110b56118d0565b73ffffffffffffffffffffffffffffffffffffffff166110d3611083565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090613270565b60405180910390fd5b80600a8190555050565b606060028054611142906136a6565b80601f016020809104026020016040519081016040528092919081815260200182805461116e906136a6565b80156111bb5780601f10611190576101008083540402835291602001916111bb565b820191906000526020600020905b81548152906001019060200180831161119e57829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d546111e39190613540565b836111ec610a69565b6111f69190613540565b10801561124f5750600c5483600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461124c9190613540565b11155b905080156112b2576000915082600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112aa9190613540565b925050819055505b81836112be9190613596565b341015611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f7906132f0565b60405180910390fd5b600e548361130c610a69565b6113169190613540565b1115611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90613170565b60405180910390fd5b600b5483111561139c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611393906133b0565b60405180910390fd5b6113a6338461212a565b505050565b6113b36118d0565b73ffffffffffffffffffffffffffffffffffffffff166113d1611083565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90613270565b60405180910390fd5b806009908051906020019061143d929190612730565b5050565b6114496118d0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae906132b0565b60405180910390fd5b80600660006114c46118d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115716118d0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b69190613113565b60405180910390a35050565b6115cd84848461198a565b6115d984848484612148565b611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f90613350565b60405180910390fd5b50505050565b600c5481565b606061162f826118c3565b61166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590613290565b60405180910390fd5b60006116786122df565b9050600081511161169857604051806020016040528060008152506116b9565b806040516020016116a9919061306a565b6040516020818303038152906040525b915050919050565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117636118d0565b73ffffffffffffffffffffffffffffffffffffffff16611781611083565b73ffffffffffffffffffffffffffffffffffffffff16146117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce90613270565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e90613190565b60405180910390fd5b61185081612064565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061199582611eca565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119bc6118d0565b73ffffffffffffffffffffffffffffffffffffffff161480611a1857506119e16118d0565b73ffffffffffffffffffffffffffffffffffffffff16611a00846108cb565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a345750611a338260000151611a2e6118d0565b6116c7565b5b905080611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d906132d0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf90613250565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f906131f0565b60405180910390fd5b611b658585856001612371565b611b7560008484600001516118d8565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e5a57611db9816118c3565b15611e595782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ec38585856001612377565b5050505050565b611ed26127b6565b611edb826118c3565b611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f11906131b0565b60405180910390fd5b60008290505b60008110612023576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461201457809250505061205f565b50808060019003915050611f20565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205690613410565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61214482826040518060200160405280600081525061237d565b5050565b60006121698473ffffffffffffffffffffffffffffffffffffffff1661238f565b156122d2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121926118d0565b8786866040518563ffffffff1660e01b81526004016121b494939291906130c7565b602060405180830381600087803b1580156121ce57600080fd5b505af19250505080156121ff57506040513d601f19601f820116820180604052508101906121fc9190612b46565b60015b612282573d806000811461222f576040519150601f19603f3d011682016040523d82523d6000602084013e612234565b606091505b5060008151141561227a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227190613350565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122d7565b600190505b949350505050565b6060600980546122ee906136a6565b80601f016020809104026020016040519081016040528092919081815260200182805461231a906136a6565b80156123675780601f1061233c57610100808354040283529160200191612367565b820191906000526020600020905b81548152906001019060200180831161234a57829003601f168201915b5050505050905090565b50505050565b50505050565b61238a83838360016123b2565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f90613370565b60405180910390fd5b600084141561246c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246390613390565b60405180910390fd5b6124796000868387612371565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561271357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156126fe576126be6000888488612148565b6126fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f490613350565b60405180910390fd5b5b81806001019250508080600101915050612647565b5080600081905550506127296000868387612377565b5050505050565b82805461273c906136a6565b90600052602060002090601f01602090048101928261275e57600085556127a5565b82601f1061277757805160ff19168380011785556127a5565b828001600101855582156127a5579182015b828111156127a4578251825591602001919060010190612789565b5b5090506127b291906127f0565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156128095760008160009055506001016127f1565b5090565b600061282061281b84613490565b61346b565b90508281526020810184848401111561283c5761283b61379b565b5b612847848285613664565b509392505050565b600061286261285d846134c1565b61346b565b90508281526020810184848401111561287e5761287d61379b565b5b612889848285613664565b509392505050565b6000813590506128a081613e6e565b92915050565b6000813590506128b581613e85565b92915050565b6000813590506128ca81613e9c565b92915050565b6000815190506128df81613e9c565b92915050565b600082601f8301126128fa576128f9613796565b5b813561290a84826020860161280d565b91505092915050565b600082601f83011261292857612927613796565b5b813561293884826020860161284f565b91505092915050565b60008135905061295081613eb3565b92915050565b60006020828403121561296c5761296b6137a5565b5b600061297a84828501612891565b91505092915050565b6000806040838503121561299a576129996137a5565b5b60006129a885828601612891565b92505060206129b985828601612891565b9150509250929050565b6000806000606084860312156129dc576129db6137a5565b5b60006129ea86828701612891565b93505060206129fb86828701612891565b9250506040612a0c86828701612941565b9150509250925092565b60008060008060808587031215612a3057612a2f6137a5565b5b6000612a3e87828801612891565b9450506020612a4f87828801612891565b9350506040612a6087828801612941565b925050606085013567ffffffffffffffff811115612a8157612a806137a0565b5b612a8d878288016128e5565b91505092959194509250565b60008060408385031215612ab057612aaf6137a5565b5b6000612abe85828601612891565b9250506020612acf858286016128a6565b9150509250929050565b60008060408385031215612af057612aef6137a5565b5b6000612afe85828601612891565b9250506020612b0f85828601612941565b9150509250929050565b600060208284031215612b2f57612b2e6137a5565b5b6000612b3d848285016128bb565b91505092915050565b600060208284031215612b5c57612b5b6137a5565b5b6000612b6a848285016128d0565b91505092915050565b600060208284031215612b8957612b886137a5565b5b600082013567ffffffffffffffff811115612ba757612ba66137a0565b5b612bb384828501612913565b91505092915050565b600060208284031215612bd257612bd16137a5565b5b6000612be084828501612941565b91505092915050565b612bf2816135f0565b82525050565b612c0181613602565b82525050565b6000612c12826134f2565b612c1c8185613508565b9350612c2c818560208601613673565b612c35816137aa565b840191505092915050565b6000612c4b826134fd565b612c558185613524565b9350612c65818560208601613673565b612c6e816137aa565b840191505092915050565b6000612c84826134fd565b612c8e8185613535565b9350612c9e818560208601613673565b80840191505092915050565b6000612cb7602283613524565b9150612cc2826137bb565b604082019050919050565b6000612cda600583613535565b9150612ce58261380a565b600582019050919050565b6000612cfd600783613524565b9150612d0882613833565b602082019050919050565b6000612d20602683613524565b9150612d2b8261385c565b604082019050919050565b6000612d43602a83613524565b9150612d4e826138ab565b604082019050919050565b6000612d66602383613524565b9150612d71826138fa565b604082019050919050565b6000612d89602583613524565b9150612d9482613949565b604082019050919050565b6000612dac603983613524565b9150612db782613998565b604082019050919050565b6000612dcf602b83613524565b9150612dda826139e7565b604082019050919050565b6000612df2602683613524565b9150612dfd82613a36565b604082019050919050565b6000612e15600583613535565b9150612e2082613a85565b600582019050919050565b6000612e38602083613524565b9150612e4382613aae565b602082019050919050565b6000612e5b602f83613524565b9150612e6682613ad7565b604082019050919050565b6000612e7e601a83613524565b9150612e8982613b26565b602082019050919050565b6000612ea1603283613524565b9150612eac82613b4f565b604082019050919050565b6000612ec4601d83613524565b9150612ecf82613b9e565b602082019050919050565b6000612ee7602283613524565b9150612ef282613bc7565b604082019050919050565b6000612f0a600083613519565b9150612f1582613c16565b600082019050919050565b6000612f2d601083613524565b9150612f3882613c19565b602082019050919050565b6000612f50603383613524565b9150612f5b82613c42565b604082019050919050565b6000612f73602183613524565b9150612f7e82613c91565b604082019050919050565b6000612f96602883613524565b9150612fa182613ce0565b604082019050919050565b6000612fb9601383613524565b9150612fc482613d2f565b602082019050919050565b6000612fdc602e83613524565b9150612fe782613d58565b604082019050919050565b6000612fff601f83613524565b915061300a82613da7565b602082019050919050565b6000613022602f83613524565b915061302d82613dd0565b604082019050919050565b6000613045602d83613524565b915061305082613e1f565b604082019050919050565b6130648161365a565b82525050565b60006130768284612c79565b915061308182612ccd565b915061308c82612e08565b915081905092915050565b60006130a282612efd565b9150819050919050565b60006020820190506130c16000830184612be9565b92915050565b60006080820190506130dc6000830187612be9565b6130e96020830186612be9565b6130f6604083018561305b565b81810360608301526131088184612c07565b905095945050505050565b60006020820190506131286000830184612bf8565b92915050565b600060208201905081810360008301526131488184612c40565b905092915050565b6000602082019050818103600083015261316981612caa565b9050919050565b6000602082019050818103600083015261318981612cf0565b9050919050565b600060208201905081810360008301526131a981612d13565b9050919050565b600060208201905081810360008301526131c981612d36565b9050919050565b600060208201905081810360008301526131e981612d59565b9050919050565b6000602082019050818103600083015261320981612d7c565b9050919050565b6000602082019050818103600083015261322981612d9f565b9050919050565b6000602082019050818103600083015261324981612dc2565b9050919050565b6000602082019050818103600083015261326981612de5565b9050919050565b6000602082019050818103600083015261328981612e2b565b9050919050565b600060208201905081810360008301526132a981612e4e565b9050919050565b600060208201905081810360008301526132c981612e71565b9050919050565b600060208201905081810360008301526132e981612e94565b9050919050565b6000602082019050818103600083015261330981612eb7565b9050919050565b6000602082019050818103600083015261332981612eda565b9050919050565b6000602082019050818103600083015261334981612f20565b9050919050565b6000602082019050818103600083015261336981612f43565b9050919050565b6000602082019050818103600083015261338981612f66565b9050919050565b600060208201905081810360008301526133a981612f89565b9050919050565b600060208201905081810360008301526133c981612fac565b9050919050565b600060208201905081810360008301526133e981612fcf565b9050919050565b6000602082019050818103600083015261340981612ff2565b9050919050565b6000602082019050818103600083015261342981613015565b9050919050565b6000602082019050818103600083015261344981613038565b9050919050565b6000602082019050613465600083018461305b565b92915050565b6000613475613486565b905061348182826136d8565b919050565b6000604051905090565b600067ffffffffffffffff8211156134ab576134aa613767565b5b6134b4826137aa565b9050602081019050919050565b600067ffffffffffffffff8211156134dc576134db613767565b5b6134e5826137aa565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061354b8261365a565b91506135568361365a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561358b5761358a613709565b5b828201905092915050565b60006135a18261365a565b91506135ac8361365a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135e5576135e4613709565b5b828202905092915050565b60006135fb8261363a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613691578082015181840152602081019050613676565b838111156136a0576000848401525b50505050565b600060028204905060018216806136be57607f821691505b602082108114156136d2576136d1613738565b5b50919050565b6136e1826137aa565b810181811067ffffffffffffffff82111715613700576136ff613767565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f616d626572000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b613e77816135f0565b8114613e8257600080fd5b50565b613e8e81613602565b8114613e9957600080fd5b50565b613ea58161360e565b8114613eb057600080fd5b50565b613ebc8161365a565b8114613ec757600080fd5b5056fea2646970667358221220cabe12b00510b794d5451b4ebc2e2dd0120e7c8c1eb1f423370e5d6e844fee1a64736f6c63430008070033697066733a2f2f516d625172787436355536506767744e6b557275727a4d70786d385a75386646504c43335564506a3654326d41372f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610633578063e985e9c51461065e578063f2fde38b1461069b578063f968adbe146106c4576101c2565b8063a22cb46514610579578063b88d4fde146105a2578063c7c39ffc146105cb578063c87b56dd146105f6576101c2565b806395d89b41116100d157806395d89b41146104de578063a035b1fe14610509578063a0712d6814610534578063a0bcfc7f14610550576101c2565b8063715018a6146104735780638da5cb5b1461048a57806391b7f5ed146104b5576101c2565b8063333e44e6116101645780634f6ccce71161013e5780634f6ccce7146103915780636352211e146103ce5780636c0360eb1461040b57806370a0823114610436576101c2565b8063333e44e6146103265780633ccfd60b1461035157806342842e0e14610368576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f745c59146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612b19565b6106ef565b6040516101fb9190613113565b60405180910390f35b34801561021057600080fd5b50610219610839565b604051610226919061312e565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612bbc565b6108cb565b60405161026391906130ac565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612ad9565b610950565b005b3480156102a157600080fd5b506102aa610a69565b6040516102b79190613450565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e291906129c3565b610a72565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612ad9565b610a82565b60405161031d9190613450565b60405180910390f35b34801561033257600080fd5b5061033b610c74565b6040516103489190613450565b60405180910390f35b34801561035d57600080fd5b50610366610c7a565b005b34801561037457600080fd5b5061038f600480360381019061038a91906129c3565b610dfb565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612bbc565b610e1b565b6040516103c59190613450565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190612bbc565b610e6e565b60405161040291906130ac565b60405180910390f35b34801561041757600080fd5b50610420610e84565b60405161042d919061312e565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190612956565b610f12565b60405161046a9190613450565b60405180910390f35b34801561047f57600080fd5b50610488610ffb565b005b34801561049657600080fd5b5061049f611083565b6040516104ac91906130ac565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190612bbc565b6110ad565b005b3480156104ea57600080fd5b506104f3611133565b604051610500919061312e565b60405180910390f35b34801561051557600080fd5b5061051e6111c5565b60405161052b9190613450565b60405180910390f35b61054e60048036038101906105499190612bbc565b6111cb565b005b34801561055c57600080fd5b5061057760048036038101906105729190612b73565b6113ab565b005b34801561058557600080fd5b506105a0600480360381019061059b9190612a99565b611441565b005b3480156105ae57600080fd5b506105c960048036038101906105c49190612a16565b6115c2565b005b3480156105d757600080fd5b506105e061161e565b6040516105ed9190613450565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190612bbc565b611624565b60405161062a919061312e565b60405180910390f35b34801561063f57600080fd5b506106486116c1565b6040516106559190613450565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612983565b6116c7565b6040516106929190613113565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190612956565b61175b565b005b3480156106d057600080fd5b506106d9611853565b6040516106e69190613450565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610832575061083182611859565b5b9050919050565b606060018054610848906136a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610874906136a6565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d6826118c3565b610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c90613430565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095b82610e6e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c390613310565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109eb6118d0565b73ffffffffffffffffffffffffffffffffffffffff161480610a1a5750610a1981610a146118d0565b6116c7565b5b610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090613210565b60405180910390fd5b610a648383836118d8565b505050565b60008054905090565b610a7d83838361198a565b505050565b6000610a8d83610f12565b8210610ace576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac590613150565b60405180910390fd5b6000610ad8610a69565b905060008060005b83811015610c32576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bd257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c245786841415610c1b578195505050505050610c6e565b83806001019450505b508080600101915050610ae0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c65906133d0565b60405180910390fd5b92915050565b600d5481565b610c826118d0565b73ffffffffffffffffffffffffffffffffffffffff16610ca0611083565b73ffffffffffffffffffffffffffffffffffffffff1614610cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ced90613270565b60405180910390fd5b60026008541415610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d33906133f0565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610d6a90613097565b60006040518083038185875af1925050503d8060008114610da7576040519150601f19603f3d011682016040523d82523d6000602084013e610dac565b606091505b5050905080610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613330565b60405180910390fd5b506001600881905550565b610e16838383604051806020016040528060008152506115c2565b505050565b6000610e25610a69565b8210610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d906131d0565b60405180910390fd5b819050919050565b6000610e7982611eca565b600001519050919050565b60098054610e91906136a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebd906136a6565b8015610f0a5780601f10610edf57610100808354040283529160200191610f0a565b820191906000526020600020905b815481529060010190602001808311610eed57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a90613230565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110036118d0565b73ffffffffffffffffffffffffffffffffffffffff16611021611083565b73ffffffffffffffffffffffffffffffffffffffff1614611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90613270565b60405180910390fd5b6110816000612064565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110b56118d0565b73ffffffffffffffffffffffffffffffffffffffff166110d3611083565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090613270565b60405180910390fd5b80600a8190555050565b606060028054611142906136a6565b80601f016020809104026020016040519081016040528092919081815260200182805461116e906136a6565b80156111bb5780601f10611190576101008083540402835291602001916111bb565b820191906000526020600020905b81548152906001019060200180831161119e57829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d546111e39190613540565b836111ec610a69565b6111f69190613540565b10801561124f5750600c5483600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461124c9190613540565b11155b905080156112b2576000915082600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112aa9190613540565b925050819055505b81836112be9190613596565b341015611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f7906132f0565b60405180910390fd5b600e548361130c610a69565b6113169190613540565b1115611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90613170565b60405180910390fd5b600b5483111561139c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611393906133b0565b60405180910390fd5b6113a6338461212a565b505050565b6113b36118d0565b73ffffffffffffffffffffffffffffffffffffffff166113d1611083565b73ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90613270565b60405180910390fd5b806009908051906020019061143d929190612730565b5050565b6114496118d0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae906132b0565b60405180910390fd5b80600660006114c46118d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115716118d0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115b69190613113565b60405180910390a35050565b6115cd84848461198a565b6115d984848484612148565b611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f90613350565b60405180910390fd5b50505050565b600c5481565b606061162f826118c3565b61166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590613290565b60405180910390fd5b60006116786122df565b9050600081511161169857604051806020016040528060008152506116b9565b806040516020016116a9919061306a565b6040516020818303038152906040525b915050919050565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117636118d0565b73ffffffffffffffffffffffffffffffffffffffff16611781611083565b73ffffffffffffffffffffffffffffffffffffffff16146117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce90613270565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e90613190565b60405180910390fd5b61185081612064565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061199582611eca565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119bc6118d0565b73ffffffffffffffffffffffffffffffffffffffff161480611a1857506119e16118d0565b73ffffffffffffffffffffffffffffffffffffffff16611a00846108cb565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a345750611a338260000151611a2e6118d0565b6116c7565b5b905080611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d906132d0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf90613250565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f906131f0565b60405180910390fd5b611b658585856001612371565b611b7560008484600001516118d8565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e5a57611db9816118c3565b15611e595782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ec38585856001612377565b5050505050565b611ed26127b6565b611edb826118c3565b611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f11906131b0565b60405180910390fd5b60008290505b60008110612023576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461201457809250505061205f565b50808060019003915050611f20565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205690613410565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61214482826040518060200160405280600081525061237d565b5050565b60006121698473ffffffffffffffffffffffffffffffffffffffff1661238f565b156122d2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121926118d0565b8786866040518563ffffffff1660e01b81526004016121b494939291906130c7565b602060405180830381600087803b1580156121ce57600080fd5b505af19250505080156121ff57506040513d601f19601f820116820180604052508101906121fc9190612b46565b60015b612282573d806000811461222f576040519150601f19603f3d011682016040523d82523d6000602084013e612234565b606091505b5060008151141561227a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227190613350565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122d7565b600190505b949350505050565b6060600980546122ee906136a6565b80601f016020809104026020016040519081016040528092919081815260200182805461231a906136a6565b80156123675780601f1061233c57610100808354040283529160200191612367565b820191906000526020600020905b81548152906001019060200180831161234a57829003601f168201915b5050505050905090565b50505050565b50505050565b61238a83838360016123b2565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f90613370565b60405180910390fd5b600084141561246c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246390613390565b60405180910390fd5b6124796000868387612371565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561271357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156126fe576126be6000888488612148565b6126fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f490613350565b60405180910390fd5b5b81806001019250508080600101915050612647565b5080600081905550506127296000868387612377565b5050505050565b82805461273c906136a6565b90600052602060002090601f01602090048101928261275e57600085556127a5565b82601f1061277757805160ff19168380011785556127a5565b828001600101855582156127a5579182015b828111156127a4578251825591602001919060010190612789565b5b5090506127b291906127f0565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156128095760008160009055506001016127f1565b5090565b600061282061281b84613490565b61346b565b90508281526020810184848401111561283c5761283b61379b565b5b612847848285613664565b509392505050565b600061286261285d846134c1565b61346b565b90508281526020810184848401111561287e5761287d61379b565b5b612889848285613664565b509392505050565b6000813590506128a081613e6e565b92915050565b6000813590506128b581613e85565b92915050565b6000813590506128ca81613e9c565b92915050565b6000815190506128df81613e9c565b92915050565b600082601f8301126128fa576128f9613796565b5b813561290a84826020860161280d565b91505092915050565b600082601f83011261292857612927613796565b5b813561293884826020860161284f565b91505092915050565b60008135905061295081613eb3565b92915050565b60006020828403121561296c5761296b6137a5565b5b600061297a84828501612891565b91505092915050565b6000806040838503121561299a576129996137a5565b5b60006129a885828601612891565b92505060206129b985828601612891565b9150509250929050565b6000806000606084860312156129dc576129db6137a5565b5b60006129ea86828701612891565b93505060206129fb86828701612891565b9250506040612a0c86828701612941565b9150509250925092565b60008060008060808587031215612a3057612a2f6137a5565b5b6000612a3e87828801612891565b9450506020612a4f87828801612891565b9350506040612a6087828801612941565b925050606085013567ffffffffffffffff811115612a8157612a806137a0565b5b612a8d878288016128e5565b91505092959194509250565b60008060408385031215612ab057612aaf6137a5565b5b6000612abe85828601612891565b9250506020612acf858286016128a6565b9150509250929050565b60008060408385031215612af057612aef6137a5565b5b6000612afe85828601612891565b9250506020612b0f85828601612941565b9150509250929050565b600060208284031215612b2f57612b2e6137a5565b5b6000612b3d848285016128bb565b91505092915050565b600060208284031215612b5c57612b5b6137a5565b5b6000612b6a848285016128d0565b91505092915050565b600060208284031215612b8957612b886137a5565b5b600082013567ffffffffffffffff811115612ba757612ba66137a0565b5b612bb384828501612913565b91505092915050565b600060208284031215612bd257612bd16137a5565b5b6000612be084828501612941565b91505092915050565b612bf2816135f0565b82525050565b612c0181613602565b82525050565b6000612c12826134f2565b612c1c8185613508565b9350612c2c818560208601613673565b612c35816137aa565b840191505092915050565b6000612c4b826134fd565b612c558185613524565b9350612c65818560208601613673565b612c6e816137aa565b840191505092915050565b6000612c84826134fd565b612c8e8185613535565b9350612c9e818560208601613673565b80840191505092915050565b6000612cb7602283613524565b9150612cc2826137bb565b604082019050919050565b6000612cda600583613535565b9150612ce58261380a565b600582019050919050565b6000612cfd600783613524565b9150612d0882613833565b602082019050919050565b6000612d20602683613524565b9150612d2b8261385c565b604082019050919050565b6000612d43602a83613524565b9150612d4e826138ab565b604082019050919050565b6000612d66602383613524565b9150612d71826138fa565b604082019050919050565b6000612d89602583613524565b9150612d9482613949565b604082019050919050565b6000612dac603983613524565b9150612db782613998565b604082019050919050565b6000612dcf602b83613524565b9150612dda826139e7565b604082019050919050565b6000612df2602683613524565b9150612dfd82613a36565b604082019050919050565b6000612e15600583613535565b9150612e2082613a85565b600582019050919050565b6000612e38602083613524565b9150612e4382613aae565b602082019050919050565b6000612e5b602f83613524565b9150612e6682613ad7565b604082019050919050565b6000612e7e601a83613524565b9150612e8982613b26565b602082019050919050565b6000612ea1603283613524565b9150612eac82613b4f565b604082019050919050565b6000612ec4601d83613524565b9150612ecf82613b9e565b602082019050919050565b6000612ee7602283613524565b9150612ef282613bc7565b604082019050919050565b6000612f0a600083613519565b9150612f1582613c16565b600082019050919050565b6000612f2d601083613524565b9150612f3882613c19565b602082019050919050565b6000612f50603383613524565b9150612f5b82613c42565b604082019050919050565b6000612f73602183613524565b9150612f7e82613c91565b604082019050919050565b6000612f96602883613524565b9150612fa182613ce0565b604082019050919050565b6000612fb9601383613524565b9150612fc482613d2f565b602082019050919050565b6000612fdc602e83613524565b9150612fe782613d58565b604082019050919050565b6000612fff601f83613524565b915061300a82613da7565b602082019050919050565b6000613022602f83613524565b915061302d82613dd0565b604082019050919050565b6000613045602d83613524565b915061305082613e1f565b604082019050919050565b6130648161365a565b82525050565b60006130768284612c79565b915061308182612ccd565b915061308c82612e08565b915081905092915050565b60006130a282612efd565b9150819050919050565b60006020820190506130c16000830184612be9565b92915050565b60006080820190506130dc6000830187612be9565b6130e96020830186612be9565b6130f6604083018561305b565b81810360608301526131088184612c07565b905095945050505050565b60006020820190506131286000830184612bf8565b92915050565b600060208201905081810360008301526131488184612c40565b905092915050565b6000602082019050818103600083015261316981612caa565b9050919050565b6000602082019050818103600083015261318981612cf0565b9050919050565b600060208201905081810360008301526131a981612d13565b9050919050565b600060208201905081810360008301526131c981612d36565b9050919050565b600060208201905081810360008301526131e981612d59565b9050919050565b6000602082019050818103600083015261320981612d7c565b9050919050565b6000602082019050818103600083015261322981612d9f565b9050919050565b6000602082019050818103600083015261324981612dc2565b9050919050565b6000602082019050818103600083015261326981612de5565b9050919050565b6000602082019050818103600083015261328981612e2b565b9050919050565b600060208201905081810360008301526132a981612e4e565b9050919050565b600060208201905081810360008301526132c981612e71565b9050919050565b600060208201905081810360008301526132e981612e94565b9050919050565b6000602082019050818103600083015261330981612eb7565b9050919050565b6000602082019050818103600083015261332981612eda565b9050919050565b6000602082019050818103600083015261334981612f20565b9050919050565b6000602082019050818103600083015261336981612f43565b9050919050565b6000602082019050818103600083015261338981612f66565b9050919050565b600060208201905081810360008301526133a981612f89565b9050919050565b600060208201905081810360008301526133c981612fac565b9050919050565b600060208201905081810360008301526133e981612fcf565b9050919050565b6000602082019050818103600083015261340981612ff2565b9050919050565b6000602082019050818103600083015261342981613015565b9050919050565b6000602082019050818103600083015261344981613038565b9050919050565b6000602082019050613465600083018461305b565b92915050565b6000613475613486565b905061348182826136d8565b919050565b6000604051905090565b600067ffffffffffffffff8211156134ab576134aa613767565b5b6134b4826137aa565b9050602081019050919050565b600067ffffffffffffffff8211156134dc576134db613767565b5b6134e5826137aa565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061354b8261365a565b91506135568361365a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561358b5761358a613709565b5b828201905092915050565b60006135a18261365a565b91506135ac8361365a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135e5576135e4613709565b5b828202905092915050565b60006135fb8261363a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613691578082015181840152602081019050613676565b838111156136a0576000848401525b50505050565b600060028204905060018216806136be57607f821691505b602082108114156136d2576136d1613738565b5b50919050565b6136e1826137aa565b810181811067ffffffffffffffff82111715613700576136ff613767565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f616d626572000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b613e77816135f0565b8114613e8257600080fd5b50565b613e8e81613602565b8114613e9957600080fd5b50565b613ea58161360e565b8114613eb057600080fd5b50565b613ebc8161365a565b8114613ec757600080fd5b5056fea2646970667358221220cabe12b00510b794d5451b4ebc2e2dd0120e7c8c1eb1f423370e5d6e844fee1a64736f6c63430008070033

Deployed Bytecode Sourcemap

43281:1978:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30141:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32027:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33589:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33110:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28398:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34465:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29062:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43573:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45070:186;;;;;;;;;;;;;:::i;:::-;;34706:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28575:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31836:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43349:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30577:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25803:103;;;;;;;;;;;;;:::i;:::-;;25152:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44976:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32196:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43436:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44167:579;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44870:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33875:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34962:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43531:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43783:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43618:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34234:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26061:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43488:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30141:372;30243:4;30295:25;30280:40;;;:11;:40;;;;:105;;;;30352:33;30337:48;;;:11;:48;;;;30280:105;:172;;;;30417:35;30402:50;;;:11;:50;;;;30280:172;:225;;;;30469:36;30493:11;30469:23;:36::i;:::-;30280:225;30260:245;;30141:372;;;:::o;32027:100::-;32081:13;32114:5;32107:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32027:100;:::o;33589:214::-;33657:7;33685:16;33693:7;33685;:16::i;:::-;33677:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;33771:15;:24;33787:7;33771:24;;;;;;;;;;;;;;;;;;;;;33764:31;;33589:214;;;:::o;33110:413::-;33183:13;33199:24;33215:7;33199:15;:24::i;:::-;33183:40;;33248:5;33242:11;;:2;:11;;;;33234:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33343:5;33327:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33352:37;33369:5;33376:12;:10;:12::i;:::-;33352:16;:37::i;:::-;33327:62;33305:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;33487:28;33496:2;33500:7;33509:5;33487:8;:28::i;:::-;33172:351;33110:413;;:::o;28398:100::-;28451:7;28478:12;;28471:19;;28398:100;:::o;34465:170::-;34599:28;34609:4;34615:2;34619:7;34599:9;:28::i;:::-;34465:170;;;:::o;29062:1007::-;29151:7;29187:16;29197:5;29187:9;:16::i;:::-;29179:5;:24;29171:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29253:22;29278:13;:11;:13::i;:::-;29253:38;;29302:19;29332:25;29521:9;29516:466;29536:14;29532:1;:18;29516:466;;;29576:31;29610:11;:14;29622:1;29610:14;;;;;;;;;;;29576:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29673:1;29647:28;;:9;:14;;;:28;;;29643:111;;29720:9;:14;;;29700:34;;29643:111;29797:5;29776:26;;:17;:26;;;29772:195;;;29846:5;29831:11;:20;29827:85;;;29887:1;29880:8;;;;;;;;;29827:85;29934:13;;;;;;;29772:195;29557:425;29552:3;;;;;;;29516:466;;;;30005:56;;;;;;;;;;:::i;:::-;;;;;;;;29062:1007;;;;;:::o;43573:38::-;;;;:::o;45070:186::-;25383:12;:10;:12::i;:::-;25372:23;;:7;:5;:7::i;:::-;:23;;;25364:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22250:1:::1;22848:7;;:19;;22840:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22250:1;22981:7;:18;;;;45134:12:::2;45152:10;:15;;45175:21;45152:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45133:68;;;45220:7;45212:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;45122:134;22206:1:::1;23160:7;:22;;;;45070:186::o:0;34706:185::-;34844:39;34861:4;34867:2;34871:7;34844:39;;;;;;;;;;;;:16;:39::i;:::-;34706:185;;;:::o;28575:187::-;28642:7;28678:13;:11;:13::i;:::-;28670:5;:21;28662:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;28749:5;28742:12;;28575:187;;;:::o;31836:124::-;31900:7;31927:20;31939:7;31927:11;:20::i;:::-;:25;;;31920:32;;31836:124;;;:::o;43349:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30577:221::-;30641:7;30686:1;30669:19;;:5;:19;;;;30661:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;30762:12;:19;30775:5;30762:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30754:36;;30747:43;;30577:221;;;:::o;25803:103::-;25383:12;:10;:12::i;:::-;25372:23;;:7;:5;:7::i;:::-;:23;;;25364:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25868:30:::1;25895:1;25868:18;:30::i;:::-;25803:103::o:0;25152:87::-;25198:7;25225:6;;;;;;;;;;;25218:13;;25152:87;:::o;44976:86::-;25383:12;:10;:12::i;:::-;25372:23;;:7;:5;:7::i;:::-;:23;;;25364:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45048:6:::1;45040:5;:14;;;;44976:86:::0;:::o;32196:104::-;32252:13;32285:7;32278:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32196:104;:::o;43436:45::-;;;;:::o;44167:579::-;44224:12;44239:5;;44224:20;;44255:11;44307:1;44295:9;;:13;;;;:::i;:::-;44287:5;44271:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;44270:109;;;;;44368:10;;44359:5;44327:17;:29;44345:10;44327:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:51;;44270:109;44255:125;;44397:6;44393:100;;;44427:1;44420:8;;44476:5;44443:17;:29;44461:10;44443:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;44393:100;44534:4;44526:5;:12;;;;:::i;:::-;44513:9;:25;;44505:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;44616:9;;44607:5;44591:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;44583:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;44665:8;;44656:5;:17;;44648:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44710:28;44720:10;44732:5;44710:9;:28::i;:::-;44213:533;;44167:579;:::o;44870:98::-;25383:12;:10;:12::i;:::-;25372:23;;:7;:5;:7::i;:::-;:23;;;25364:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44952:8:::1;44942:7;:18;;;;;;;;;;;;:::i;:::-;;44870:98:::0;:::o;33875:288::-;33982:12;:10;:12::i;:::-;33970:24;;:8;:24;;;;33962:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;34083:8;34038:18;:32;34057:12;:10;:12::i;:::-;34038:32;;;;;;;;;;;;;;;:42;34071:8;34038:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34136:8;34107:48;;34122:12;:10;:12::i;:::-;34107:48;;;34146:8;34107:48;;;;;;:::i;:::-;;;;;;;;33875:288;;:::o;34962:355::-;35121:28;35131:4;35137:2;35141:7;35121:9;:28::i;:::-;35182:48;35205:4;35211:2;35215:7;35224:5;35182:22;:48::i;:::-;35160:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;34962:355;;;;:::o;43531:35::-;;;;:::o;43783:376::-;43857:13;43891:17;43899:8;43891:7;:17::i;:::-;43883:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43970:28;44001:10;:8;:10::i;:::-;43970:41;;44060:1;44035:14;44029:28;:32;:122;;;;;;;;;;;;;;;;;44101:14;44084:48;;;;;;;;:::i;:::-;;;;;;;;;;;;;44029:122;44022:129;;;43783:376;;;:::o;43618:38::-;;;;:::o;34234:164::-;34331:4;34355:18;:25;34374:5;34355:25;;;;;;;;;;;;;;;:35;34381:8;34355:35;;;;;;;;;;;;;;;;;;;;;;;;;34348:42;;34234:164;;;;:::o;26061:201::-;25383:12;:10;:12::i;:::-;25372:23;;:7;:5;:7::i;:::-;:23;;;25364:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26170:1:::1;26150:22;;:8;:22;;;;26142:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26226:28;26245:8;26226:18;:28::i;:::-;26061:201:::0;:::o;43488:36::-;;;;:::o;13504:157::-;13589:4;13628:25;13613:40;;;:11;:40;;;;13606:47;;13504:157;;;:::o;35572:111::-;35629:4;35663:12;;35653:7;:22;35646:29;;35572:111;;;:::o;23876:98::-;23929:7;23956:10;23949:17;;23876:98;:::o;40492:196::-;40634:2;40607:15;:24;40623:7;40607:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40672:7;40668:2;40652:28;;40661:5;40652:28;;;;;;;;;;;;40492:196;;;:::o;38372:2002::-;38487:35;38525:20;38537:7;38525:11;:20::i;:::-;38487:58;;38558:22;38600:13;:18;;;38584:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;38659:12;:10;:12::i;:::-;38635:36;;:20;38647:7;38635:11;:20::i;:::-;:36;;;38584:87;:154;;;;38688:50;38705:13;:18;;;38725:12;:10;:12::i;:::-;38688:16;:50::i;:::-;38584:154;38558:181;;38760:17;38752:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;38875:4;38853:26;;:13;:18;;;:26;;;38845:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;38955:1;38941:16;;:2;:16;;;;38933:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;39012:43;39034:4;39040:2;39044:7;39053:1;39012:21;:43::i;:::-;39120:49;39137:1;39141:7;39150:13;:18;;;39120:8;:49::i;:::-;39495:1;39465:12;:18;39478:4;39465:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39539:1;39511:12;:16;39524:2;39511:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39585:2;39557:11;:20;39569:7;39557:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39647:15;39602:11;:20;39614:7;39602:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39915:19;39947:1;39937:7;:11;39915:33;;40008:1;39967:43;;:11;:24;39979:11;39967:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39963:295;;;40035:20;40043:11;40035:7;:20::i;:::-;40031:212;;;40112:13;:18;;;40080:11;:24;40092:11;40080:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40195:13;:28;;;40153:11;:24;40165:11;40153:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40031:212;39963:295;39440:829;40305:7;40301:2;40286:27;;40295:4;40286:27;;;;;;;;;;;;40324:42;40345:4;40351:2;40355:7;40364:1;40324:20;:42::i;:::-;38476:1898;;38372:2002;;;:::o;31237:537::-;31298:21;;:::i;:::-;31340:16;31348:7;31340;:16::i;:::-;31332:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31446:12;31461:7;31446:22;;31441:245;31478:1;31470:4;:9;31441:245;;31508:31;31542:11;:17;31554:4;31542:17;;;;;;;;;;;31508:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31608:1;31582:28;;:9;:14;;;:28;;;31578:93;;31642:9;31635:16;;;;;;31578:93;31489:197;31481:6;;;;;;;;31441:245;;;;31709:57;;;;;;;;;;:::i;:::-;;;;;;;;31237:537;;;;:::o;26422:191::-;26496:16;26515:6;;;;;;;;;;;26496:25;;26541:8;26532:6;;:17;;;;;;;;;;;;;;;;;;26596:8;26565:40;;26586:8;26565:40;;;;;;;;;;;;26485:128;26422:191;:::o;35691:104::-;35760:27;35770:2;35774:8;35760:27;;;;;;;;;;;;:9;:27::i;:::-;35691:104;;:::o;41253:804::-;41408:4;41429:15;:2;:13;;;:15::i;:::-;41425:625;;;41481:2;41465:36;;;41502:12;:10;:12::i;:::-;41516:4;41522:7;41531:5;41465:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41461:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41728:1;41711:6;:13;:18;41707:273;;;41754:61;;;;;;;;;;:::i;:::-;;;;;;;;41707:273;41930:6;41924:13;41915:6;41911:2;41907:15;41900:38;41461:534;41598:45;;;41588:55;;;:6;:55;;;;41581:62;;;;;41425:625;42034:4;42027:11;;41253:804;;;;;;;:::o;44754:108::-;44814:13;44847:7;44840:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44754:108;:::o;42545:159::-;;;;;:::o;43116:158::-;;;;;:::o;36158:163::-;36281:32;36287:2;36291:8;36301:5;36308:4;36281:5;:32::i;:::-;36158:163;;;:::o;3398:326::-;3458:4;3715:1;3693:7;:19;;;:23;3686:30;;3398:326;;;:::o;36580:1538::-;36719:20;36742:12;;36719:35;;36787:1;36773:16;;:2;:16;;;;36765:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36858:1;36846:8;:13;;36838:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;36917:61;36947:1;36951:2;36955:12;36969:8;36917:21;:61::i;:::-;37292:8;37256:12;:16;37269:2;37256:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37357:8;37316:12;:16;37329:2;37316:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37416:2;37383:11;:25;37395:12;37383:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37483:15;37433:11;:25;37445:12;37433:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37516:20;37539:12;37516:35;;37573:9;37568:415;37588:8;37584:1;:12;37568:415;;;37652:12;37648:2;37627:38;;37644:1;37627:38;;;;;;;;;;;;37688:4;37684:249;;;37751:59;37782:1;37786:2;37790:12;37804:5;37751:22;:59::i;:::-;37717:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;37684:249;37953:14;;;;;;;37598:3;;;;;;;37568:415;;;;38014:12;37999;:27;;;;37231:807;38050:60;38079:1;38083:2;38087:12;38101:8;38050:20;:60::i;:::-;36708:1410;36580: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:400::-;9048:3;9069:84;9151:1;9146:3;9069:84;:::i;:::-;9062:91;;9162:93;9251:3;9162:93;:::i;:::-;9280:1;9275:3;9271:11;9264:18;;8888:400;;;:::o;9294:365::-;9436:3;9457:66;9521:1;9516:3;9457:66;:::i;:::-;9450:73;;9532:93;9621:3;9532:93;:::i;:::-;9650:2;9645:3;9641:12;9634:19;;9294:365;;;:::o;9665:366::-;9807:3;9828:67;9892:2;9887:3;9828:67;:::i;:::-;9821:74;;9904:93;9993:3;9904:93;:::i;:::-;10022:2;10017:3;10013:12;10006:19;;9665:366;;;:::o;10037:::-;10179:3;10200:67;10264:2;10259:3;10200:67;:::i;:::-;10193:74;;10276:93;10365:3;10276:93;:::i;:::-;10394:2;10389:3;10385:12;10378:19;;10037:366;;;:::o;10409:::-;10551:3;10572:67;10636:2;10631:3;10572:67;:::i;:::-;10565:74;;10648:93;10737:3;10648:93;:::i;:::-;10766:2;10761:3;10757:12;10750:19;;10409:366;;;:::o;10781:::-;10923:3;10944:67;11008:2;11003:3;10944:67;:::i;:::-;10937:74;;11020:93;11109:3;11020:93;:::i;:::-;11138:2;11133:3;11129:12;11122:19;;10781:366;;;:::o;11153:::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:400::-;12429:3;12450:84;12532:1;12527:3;12450:84;:::i;:::-;12443:91;;12543:93;12632:3;12543:93;:::i;:::-;12661:1;12656:3;12652:11;12645:18;;12269:400;;;:::o;12675:366::-;12817:3;12838:67;12902:2;12897:3;12838:67;:::i;:::-;12831:74;;12914:93;13003:3;12914:93;:::i;:::-;13032:2;13027:3;13023:12;13016:19;;12675:366;;;:::o;13047:::-;13189:3;13210:67;13274:2;13269:3;13210:67;:::i;:::-;13203:74;;13286:93;13375:3;13286:93;:::i;:::-;13404:2;13399:3;13395:12;13388:19;;13047:366;;;:::o;13419:::-;13561:3;13582:67;13646:2;13641:3;13582:67;:::i;:::-;13575:74;;13658:93;13747:3;13658:93;:::i;:::-;13776:2;13771:3;13767:12;13760:19;;13419:366;;;:::o;13791:::-;13933:3;13954:67;14018:2;14013:3;13954:67;:::i;:::-;13947:74;;14030:93;14119:3;14030:93;:::i;:::-;14148:2;14143:3;14139:12;14132:19;;13791:366;;;:::o;14163:::-;14305:3;14326:67;14390:2;14385:3;14326:67;:::i;:::-;14319:74;;14402:93;14491:3;14402:93;:::i;:::-;14520:2;14515:3;14511:12;14504:19;;14163:366;;;:::o;14535:::-;14677:3;14698:67;14762:2;14757:3;14698:67;:::i;:::-;14691:74;;14774:93;14863:3;14774:93;:::i;:::-;14892:2;14887:3;14883:12;14876:19;;14535:366;;;:::o;14907:398::-;15066:3;15087:83;15168:1;15163:3;15087:83;:::i;:::-;15080:90;;15179:93;15268:3;15179:93;:::i;:::-;15297:1;15292:3;15288:11;15281:18;;14907:398;;;:::o;15311:366::-;15453:3;15474:67;15538:2;15533:3;15474:67;:::i;:::-;15467:74;;15550:93;15639:3;15550:93;:::i;:::-;15668:2;15663:3;15659:12;15652:19;;15311:366;;;:::o;15683:::-;15825:3;15846:67;15910:2;15905:3;15846:67;:::i;:::-;15839:74;;15922:93;16011:3;15922:93;:::i;:::-;16040:2;16035:3;16031:12;16024:19;;15683:366;;;:::o;16055:::-;16197:3;16218:67;16282:2;16277:3;16218:67;:::i;:::-;16211:74;;16294:93;16383:3;16294:93;:::i;:::-;16412:2;16407:3;16403:12;16396:19;;16055:366;;;:::o;16427:::-;16569:3;16590:67;16654:2;16649:3;16590:67;:::i;:::-;16583:74;;16666:93;16755:3;16666:93;:::i;:::-;16784:2;16779:3;16775:12;16768:19;;16427:366;;;:::o;16799:::-;16941:3;16962:67;17026:2;17021:3;16962:67;:::i;:::-;16955:74;;17038:93;17127:3;17038:93;:::i;:::-;17156:2;17151:3;17147:12;17140:19;;16799:366;;;:::o;17171:::-;17313:3;17334:67;17398:2;17393:3;17334:67;:::i;:::-;17327:74;;17410:93;17499:3;17410:93;:::i;:::-;17528:2;17523:3;17519:12;17512:19;;17171:366;;;:::o;17543:::-;17685:3;17706:67;17770:2;17765:3;17706:67;:::i;:::-;17699:74;;17782:93;17871:3;17782:93;:::i;:::-;17900:2;17895:3;17891:12;17884:19;;17543:366;;;:::o;17915:::-;18057:3;18078:67;18142:2;18137:3;18078:67;:::i;:::-;18071:74;;18154:93;18243:3;18154:93;:::i;:::-;18272:2;18267:3;18263:12;18256:19;;17915:366;;;:::o;18287:::-;18429:3;18450:67;18514:2;18509:3;18450:67;:::i;:::-;18443:74;;18526:93;18615:3;18526:93;:::i;:::-;18644:2;18639:3;18635:12;18628:19;;18287:366;;;:::o;18659:118::-;18746:24;18764:5;18746:24;:::i;:::-;18741:3;18734:37;18659:118;;:::o;18783:807::-;19117:3;19139:95;19230:3;19221:6;19139:95;:::i;:::-;19132:102;;19251:148;19395:3;19251:148;:::i;:::-;19244:155;;19416:148;19560:3;19416:148;:::i;:::-;19409:155;;19581:3;19574:10;;18783:807;;;;:::o;19596:379::-;19780:3;19802:147;19945:3;19802:147;:::i;:::-;19795:154;;19966:3;19959:10;;19596:379;;;:::o;19981:222::-;20074:4;20112:2;20101:9;20097:18;20089:26;;20125:71;20193:1;20182:9;20178:17;20169:6;20125:71;:::i;:::-;19981:222;;;;:::o;20209:640::-;20404:4;20442:3;20431:9;20427:19;20419:27;;20456:71;20524:1;20513:9;20509:17;20500:6;20456:71;:::i;:::-;20537:72;20605:2;20594:9;20590:18;20581:6;20537:72;:::i;:::-;20619;20687:2;20676:9;20672:18;20663:6;20619:72;:::i;:::-;20738:9;20732:4;20728:20;20723:2;20712:9;20708:18;20701:48;20766:76;20837:4;20828:6;20766:76;:::i;:::-;20758:84;;20209:640;;;;;;;:::o;20855:210::-;20942:4;20980:2;20969:9;20965:18;20957:26;;20993:65;21055:1;21044:9;21040:17;21031:6;20993:65;:::i;:::-;20855:210;;;;:::o;21071:313::-;21184:4;21222:2;21211:9;21207:18;21199:26;;21271:9;21265:4;21261:20;21257:1;21246:9;21242:17;21235:47;21299:78;21372:4;21363:6;21299:78;:::i;:::-;21291:86;;21071:313;;;;:::o;21390:419::-;21556:4;21594:2;21583:9;21579:18;21571:26;;21643:9;21637:4;21633:20;21629:1;21618:9;21614:17;21607:47;21671:131;21797:4;21671:131;:::i;:::-;21663:139;;21390:419;;;:::o;21815:::-;21981:4;22019:2;22008:9;22004:18;21996:26;;22068:9;22062:4;22058:20;22054:1;22043:9;22039:17;22032:47;22096:131;22222:4;22096:131;:::i;:::-;22088:139;;21815:419;;;:::o;22240:::-;22406:4;22444:2;22433:9;22429:18;22421:26;;22493:9;22487:4;22483:20;22479:1;22468:9;22464:17;22457:47;22521:131;22647:4;22521:131;:::i;:::-;22513:139;;22240:419;;;:::o;22665:::-;22831:4;22869:2;22858:9;22854:18;22846:26;;22918:9;22912:4;22908:20;22904:1;22893:9;22889:17;22882:47;22946:131;23072:4;22946:131;:::i;:::-;22938:139;;22665:419;;;:::o;23090:::-;23256:4;23294:2;23283:9;23279:18;23271:26;;23343:9;23337:4;23333:20;23329:1;23318:9;23314:17;23307:47;23371:131;23497:4;23371:131;:::i;:::-;23363:139;;23090:419;;;:::o;23515:::-;23681:4;23719:2;23708:9;23704:18;23696:26;;23768:9;23762:4;23758:20;23754:1;23743:9;23739:17;23732:47;23796:131;23922:4;23796:131;:::i;:::-;23788:139;;23515:419;;;:::o;23940:::-;24106:4;24144:2;24133:9;24129:18;24121:26;;24193:9;24187:4;24183:20;24179:1;24168:9;24164:17;24157:47;24221:131;24347:4;24221:131;:::i;:::-;24213:139;;23940:419;;;:::o;24365:::-;24531:4;24569:2;24558:9;24554:18;24546:26;;24618:9;24612:4;24608:20;24604:1;24593:9;24589:17;24582:47;24646:131;24772:4;24646:131;:::i;:::-;24638:139;;24365:419;;;:::o;24790:::-;24956:4;24994:2;24983:9;24979:18;24971:26;;25043:9;25037:4;25033:20;25029:1;25018:9;25014:17;25007:47;25071:131;25197:4;25071:131;:::i;:::-;25063:139;;24790:419;;;:::o;25215:::-;25381:4;25419:2;25408:9;25404:18;25396:26;;25468:9;25462:4;25458:20;25454:1;25443:9;25439:17;25432:47;25496:131;25622:4;25496:131;:::i;:::-;25488:139;;25215:419;;;:::o;25640:::-;25806:4;25844:2;25833:9;25829:18;25821:26;;25893:9;25887:4;25883:20;25879:1;25868:9;25864:17;25857:47;25921:131;26047:4;25921:131;:::i;:::-;25913:139;;25640:419;;;:::o;26065:::-;26231:4;26269:2;26258:9;26254:18;26246:26;;26318:9;26312:4;26308:20;26304:1;26293:9;26289:17;26282:47;26346:131;26472:4;26346:131;:::i;:::-;26338:139;;26065:419;;;:::o;26490:::-;26656:4;26694:2;26683:9;26679:18;26671:26;;26743:9;26737:4;26733:20;26729:1;26718:9;26714:17;26707:47;26771:131;26897:4;26771:131;:::i;:::-;26763:139;;26490:419;;;:::o;26915:::-;27081:4;27119:2;27108:9;27104:18;27096:26;;27168:9;27162:4;27158:20;27154:1;27143:9;27139:17;27132:47;27196:131;27322:4;27196:131;:::i;:::-;27188:139;;26915:419;;;:::o;27340:::-;27506:4;27544:2;27533:9;27529:18;27521:26;;27593:9;27587:4;27583:20;27579:1;27568:9;27564:17;27557:47;27621:131;27747:4;27621:131;:::i;:::-;27613:139;;27340:419;;;:::o;27765:::-;27931:4;27969:2;27958:9;27954:18;27946:26;;28018:9;28012:4;28008:20;28004:1;27993:9;27989:17;27982:47;28046:131;28172:4;28046:131;:::i;:::-;28038:139;;27765:419;;;:::o;28190:::-;28356:4;28394:2;28383:9;28379:18;28371:26;;28443:9;28437:4;28433:20;28429:1;28418:9;28414:17;28407:47;28471:131;28597:4;28471:131;:::i;:::-;28463:139;;28190:419;;;:::o;28615:::-;28781:4;28819:2;28808:9;28804:18;28796:26;;28868:9;28862:4;28858:20;28854:1;28843:9;28839:17;28832:47;28896:131;29022:4;28896:131;:::i;:::-;28888:139;;28615:419;;;:::o;29040:::-;29206:4;29244:2;29233:9;29229:18;29221:26;;29293:9;29287:4;29283:20;29279:1;29268:9;29264:17;29257:47;29321:131;29447:4;29321:131;:::i;:::-;29313:139;;29040:419;;;:::o;29465:::-;29631:4;29669:2;29658:9;29654:18;29646:26;;29718:9;29712:4;29708:20;29704:1;29693:9;29689:17;29682:47;29746:131;29872:4;29746:131;:::i;:::-;29738:139;;29465:419;;;:::o;29890:::-;30056:4;30094:2;30083:9;30079:18;30071:26;;30143:9;30137:4;30133:20;30129:1;30118:9;30114:17;30107:47;30171:131;30297:4;30171:131;:::i;:::-;30163:139;;29890:419;;;:::o;30315:::-;30481:4;30519:2;30508:9;30504:18;30496:26;;30568:9;30562:4;30558:20;30554:1;30543:9;30539:17;30532:47;30596:131;30722:4;30596:131;:::i;:::-;30588:139;;30315:419;;;:::o;30740:::-;30906:4;30944:2;30933:9;30929:18;30921:26;;30993:9;30987:4;30983:20;30979:1;30968:9;30964:17;30957:47;31021:131;31147:4;31021:131;:::i;:::-;31013:139;;30740:419;;;:::o;31165:::-;31331:4;31369:2;31358:9;31354:18;31346:26;;31418:9;31412:4;31408:20;31404:1;31393:9;31389:17;31382:47;31446:131;31572:4;31446:131;:::i;:::-;31438:139;;31165:419;;;:::o;31590:222::-;31683:4;31721:2;31710:9;31706:18;31698:26;;31734:71;31802:1;31791:9;31787:17;31778:6;31734:71;:::i;:::-;31590:222;;;;:::o;31818:129::-;31852:6;31879:20;;:::i;:::-;31869:30;;31908:33;31936:4;31928:6;31908:33;:::i;:::-;31818:129;;;:::o;31953:75::-;31986:6;32019:2;32013:9;32003:19;;31953:75;:::o;32034:307::-;32095:4;32185:18;32177:6;32174:30;32171:56;;;32207:18;;:::i;:::-;32171:56;32245:29;32267:6;32245:29;:::i;:::-;32237:37;;32329:4;32323;32319:15;32311:23;;32034:307;;;:::o;32347:308::-;32409:4;32499:18;32491:6;32488:30;32485:56;;;32521:18;;:::i;:::-;32485:56;32559:29;32581:6;32559:29;:::i;:::-;32551:37;;32643:4;32637;32633:15;32625:23;;32347:308;;;:::o;32661:98::-;32712:6;32746:5;32740:12;32730:22;;32661:98;;;:::o;32765:99::-;32817:6;32851:5;32845:12;32835:22;;32765:99;;;:::o;32870:168::-;32953:11;32987:6;32982:3;32975:19;33027:4;33022:3;33018:14;33003:29;;32870:168;;;;:::o;33044:147::-;33145:11;33182:3;33167:18;;33044:147;;;;:::o;33197:169::-;33281:11;33315:6;33310:3;33303:19;33355:4;33350:3;33346:14;33331:29;;33197:169;;;;:::o;33372:148::-;33474:11;33511:3;33496:18;;33372:148;;;;:::o;33526:305::-;33566:3;33585:20;33603:1;33585:20;:::i;:::-;33580:25;;33619:20;33637:1;33619:20;:::i;:::-;33614:25;;33773:1;33705:66;33701:74;33698:1;33695:81;33692:107;;;33779:18;;:::i;:::-;33692:107;33823:1;33820;33816:9;33809:16;;33526:305;;;;:::o;33837:348::-;33877:7;33900:20;33918:1;33900:20;:::i;:::-;33895:25;;33934:20;33952:1;33934:20;:::i;:::-;33929:25;;34122:1;34054:66;34050:74;34047:1;34044:81;34039:1;34032:9;34025:17;34021:105;34018:131;;;34129:18;;:::i;:::-;34018:131;34177:1;34174;34170:9;34159:20;;33837:348;;;;:::o;34191:96::-;34228:7;34257:24;34275:5;34257:24;:::i;:::-;34246:35;;34191:96;;;:::o;34293:90::-;34327:7;34370:5;34363:13;34356:21;34345:32;;34293:90;;;:::o;34389:149::-;34425:7;34465:66;34458:5;34454:78;34443:89;;34389:149;;;:::o;34544:126::-;34581:7;34621:42;34614:5;34610:54;34599:65;;34544:126;;;:::o;34676:77::-;34713:7;34742:5;34731:16;;34676:77;;;:::o;34759:154::-;34843:6;34838:3;34833;34820:30;34905:1;34896:6;34891:3;34887:16;34880:27;34759:154;;;:::o;34919:307::-;34987:1;34997:113;35011:6;35008:1;35005:13;34997:113;;;35096:1;35091:3;35087:11;35081:18;35077:1;35072:3;35068:11;35061:39;35033:2;35030:1;35026:10;35021:15;;34997:113;;;35128:6;35125:1;35122:13;35119:101;;;35208:1;35199:6;35194:3;35190:16;35183:27;35119:101;34968:258;34919:307;;;:::o;35232:320::-;35276:6;35313:1;35307:4;35303:12;35293:22;;35360:1;35354:4;35350:12;35381:18;35371:81;;35437:4;35429:6;35425:17;35415:27;;35371:81;35499:2;35491:6;35488:14;35468:18;35465:38;35462:84;;;35518:18;;:::i;:::-;35462:84;35283:269;35232:320;;;:::o;35558:281::-;35641:27;35663:4;35641:27;:::i;:::-;35633:6;35629:40;35771:6;35759:10;35756:22;35735:18;35723:10;35720:34;35717:62;35714:88;;;35782:18;;:::i;:::-;35714:88;35822:10;35818:2;35811:22;35601:238;35558:281;;:::o;35845:180::-;35893:77;35890:1;35883:88;35990:4;35987:1;35980:15;36014:4;36011:1;36004:15;36031:180;36079:77;36076:1;36069:88;36176:4;36173:1;36166:15;36200:4;36197:1;36190:15;36217:180;36265:77;36262:1;36255:88;36362:4;36359:1;36352:15;36386:4;36383:1;36376:15;36403:117;36512:1;36509;36502:12;36526:117;36635:1;36632;36625:12;36649:117;36758:1;36755;36748:12;36772:117;36881:1;36878;36871:12;36895:102;36936:6;36987:2;36983:7;36978:2;36971:5;36967:14;36963:28;36953:38;;36895:102;;;:::o;37003:221::-;37143:34;37139:1;37131:6;37127:14;37120:58;37212:4;37207:2;37199:6;37195:15;37188:29;37003:221;:::o;37230:155::-;37370:7;37366:1;37358:6;37354:14;37347:31;37230:155;:::o;37391:157::-;37531:9;37527:1;37519:6;37515:14;37508:33;37391:157;:::o;37554:225::-;37694:34;37690:1;37682:6;37678:14;37671:58;37763:8;37758:2;37750:6;37746:15;37739:33;37554:225;:::o;37785:229::-;37925:34;37921:1;37913:6;37909:14;37902:58;37994:12;37989:2;37981:6;37977:15;37970:37;37785:229;:::o;38020:222::-;38160:34;38156:1;38148:6;38144:14;38137:58;38229:5;38224:2;38216:6;38212:15;38205:30;38020:222;:::o;38248:224::-;38388:34;38384:1;38376:6;38372:14;38365:58;38457:7;38452:2;38444:6;38440:15;38433:32;38248:224;:::o;38478:244::-;38618:34;38614:1;38606:6;38602:14;38595:58;38687:27;38682:2;38674:6;38670:15;38663:52;38478:244;:::o;38728:230::-;38868:34;38864:1;38856:6;38852:14;38845:58;38937:13;38932:2;38924:6;38920:15;38913:38;38728:230;:::o;38964:225::-;39104:34;39100:1;39092:6;39088:14;39081:58;39173:8;39168:2;39160:6;39156:15;39149:33;38964:225;:::o;39195:155::-;39335:7;39331:1;39323:6;39319:14;39312:31;39195:155;:::o;39356:182::-;39496:34;39492:1;39484:6;39480:14;39473:58;39356:182;:::o;39544:234::-;39684:34;39680:1;39672:6;39668:14;39661:58;39753:17;39748:2;39740:6;39736:15;39729:42;39544:234;:::o;39784:176::-;39924:28;39920:1;39912:6;39908:14;39901:52;39784:176;:::o;39966:237::-;40106:34;40102:1;40094:6;40090:14;40083:58;40175:20;40170:2;40162:6;40158:15;40151:45;39966:237;:::o;40209:179::-;40349:31;40345:1;40337:6;40333:14;40326:55;40209:179;:::o;40394:221::-;40534:34;40530:1;40522:6;40518:14;40511:58;40603:4;40598:2;40590:6;40586:15;40579:29;40394:221;:::o;40621:114::-;;:::o;40741:166::-;40881:18;40877:1;40869:6;40865:14;40858:42;40741:166;:::o;40913:238::-;41053:34;41049:1;41041:6;41037:14;41030:58;41122:21;41117:2;41109:6;41105:15;41098:46;40913:238;:::o;41157:220::-;41297:34;41293:1;41285:6;41281:14;41274:58;41366:3;41361:2;41353:6;41349:15;41342:28;41157:220;:::o;41383:227::-;41523:34;41519:1;41511:6;41507:14;41500:58;41592:10;41587:2;41579:6;41575:15;41568:35;41383:227;:::o;41616:169::-;41756:21;41752:1;41744:6;41740:14;41733:45;41616:169;:::o;41791:233::-;41931:34;41927:1;41919:6;41915:14;41908:58;42000:16;41995:2;41987:6;41983:15;41976:41;41791:233;:::o;42030:181::-;42170:33;42166:1;42158:6;42154:14;42147:57;42030:181;:::o;42217:234::-;42357:34;42353:1;42345:6;42341:14;42334:58;42426:17;42421:2;42413:6;42409:15;42402:42;42217:234;:::o;42457:232::-;42597:34;42593:1;42585:6;42581:14;42574:58;42666:15;42661:2;42653:6;42649:15;42642:40;42457:232;:::o;42695:122::-;42768:24;42786:5;42768:24;:::i;:::-;42761:5;42758:35;42748:63;;42807:1;42804;42797:12;42748:63;42695:122;:::o;42823:116::-;42893:21;42908:5;42893:21;:::i;:::-;42886:5;42883:32;42873:60;;42929:1;42926;42919:12;42873:60;42823:116;:::o;42945:120::-;43017:23;43034:5;43017:23;:::i;:::-;43010:5;43007:34;42997:62;;43055:1;43052;43045:12;42997:62;42945:120;:::o;43071:122::-;43144:24;43162:5;43144:24;:::i;:::-;43137:5;43134:35;43124:63;;43183:1;43180;43173:12;43124:63;43071:122;:::o

Swarm Source

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