ETH Price: $2,971.19 (-4.00%)
Gas: 2 Gwei

BlockchainAdventuresOfBellaTheBlueBot (BELLA)
 

Overview

TokenID

637

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Blockchain Adventures of Bella the Blue Bot is a 3D digital collection of 12,000 unique NFTs stored on the Ethereum blockchain as ERC-721 tokens. Our focus is to create an NFT studio that builds an animated series, comic books, and a metaverse to entertain kids and familie...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BlockchainAdventuresOfBellaTheBlueBot

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-13
*/

// SPDX-License-Identifier: MIT

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


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

pragma solidity 0.8.7;

/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


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

pragma solidity 0.8.7;

/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


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

pragma solidity 0.8.7;


/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.3.2 (utils/Address.sol)

pragma solidity 0.8.7;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC721/IERC721Receiver.sol)

pragma solidity 0.8.7;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


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

pragma solidity 0.8.7;

/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol


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

pragma solidity 0.8.7;


/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC721/IERC721.sol)

pragma solidity 0.8.7;


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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity 0.8.7;


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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity 0.8.7;


/**
 * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC721/ERC721.sol)

pragma solidity 0.8.7;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/ERC721Enumerable.sol


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

pragma solidity 0.8.7;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/BlockchainAdventuresOfBellaTheBlueBot.sol


pragma solidity 0.8.7;



/*
    _____╓▓▓▓▓▓▓▓╜__╓╬╣╣╢▓`_________________________________________________________
    ___╓▓╢╢╢╢╢▓`__╓▓╢╢╢▓___________╥╣▒╢∩____________________________________________
    _g▓╢╢╢╢╢▓`__╓▓╢╢╢╝__________,@╢▒▒╢╜_____________________________________________
    ▓╢╢╢╢╣▓___g▓╢╢╣╜__________,@╣▒▒╣╜_______________________________________________
    ╢╢╢▓╜__,@╣╢╢▓╜__________╓╣▒▒▒Ñ`_________________________________________________
    ╢▓╜___ ╢╢╢▓╜__________╓╣▒▒▒╝____________________________________________________
    ╜_______"__╓@╣╣@@╖__╓╣▒▒╢╜______________________________________________________
    _________g╢▒▒▒╢▒▒▒▒▒▒▒╢╜________________________________________________________
    ______,@╢▒▒╣╜___"╙╨╜╙___________________________________________________________
    ____,@▒▒▒╣`_____________________________________________________________________
    __╓╣▒▒▒Ñ`_______________________________________________________________________
    ╓╣▒▒▒╝__]@@@@@@@@@@╥,_____]@@@___________╟@@@_______]@@@H___]@@@@@@@@@@@@[_∩╖___
    ▒▒▒╜____]╢╢╢╣╣╣╣╣╢╢╢╢@____╟╢╢╢___________╟╢╢╢_______]╢╢╢C___]╢╢╢╣╣╣╣╣╣╣╣╣[______
    ╢╜______]╢╢║______]╢╢╢____╟╢╢╢___________╟╢╢╢_______]╢╢╢C___]╢╢║________________
    ________]╢╢╢╖╖╖╖╖╦▓║╣╜____╟╢╢╢___________╟╢╢╢_______]╢╢╢C___]╢╢╢╖╖╖╖╖╖╖╖╖_______
    ________]╢╢╢╢╢╢╢╢╢╢╢▓N____╟╢╢╢___________╟╢╢╢_______]╢╢╢[___]╢╢║╢╢╢╢╢╢╢╢▒_______
    ________]╢╢║_______╙╢╢▓___╟╢╢╢___________╟╢╢╢_______╠╢╢╢C___]╢╢║________________
    ________]╢╢╢╖,,,,,╓▓╢╢╣___╟╢╢╢╖,,,,,,,,__╙║╢╢▓╖,,,╓g▓╢╢╣____]╢╢║,,,,,,,,,,______
    ________]╢╢╢╢╢╢╢╢╢╢╢╢╣`___╟╢╢╢╢╢╢╢╢╢╢╢╢____╨╣╢╢╢╢╢╢╢╢╣╝`____╟╢╢╢╢╢╢╢╢╢╢╢╢╢______
    _________""║▒"""````_______""""""""""""_______``""``__ ╢╢╦╦@▒▒╜"""""║▒""""______
    ________╓▓▓▓▀▓▓@__▓▓▓╢╣▓▓▓U_╢╢____╫╢H_]╢╣▓▓▓▓▓╖__╞╢╣m╥╣▒▒▒▒▒▒▒@╥mg▓▓▓▀▓▓m_______
    ________╙╢▓╥╖,╙`_____╢╣_____╢╢____╫╢H_]╢╣____╟╢╗_╞╢╣╢▒▒▒╜`__╙▒▒▒╢▓╢▓╖,,╙`_______
    __________╙╨▓▓╢▓_____╢╣_____╢╢____╫╢H_]╢╣____╟╢[_╞╢╣╫▒▒▒____╓▒▒▒@__╙╨▓▓╣▓______╓
    ________▓▓U__,▓╢[____╢╣_____▓╢Ç__╓▓▓__]╢╣_,,╓▓▓┘_╞╢╣╣Ñ▒▒▒╣╣╣▒▒▒Ñ╢╫▓,__,▓╢H___╓╣▒
    _________╙▓▓▓▓▓╜_____▓▓______╙▓▓▓▓▓╜___▓▓▓▓▓▓╜`__╘▓Ñ__ ▒▒╢╢║▒▒____╙▓▓▓▓▓╜__╓╣▒▒▒
    ________________________________________________________`___`____________╥╣▒▒▒▒▒
    ____________________________________________________________g▓▓▓,_____,@╢▒▒▒▒▒╜_
    _________________________________________________________,@▓╢╢╢╢▓___,@╢▒▒▒▒╢╜___
    _______________________________________________________,▓╢╢╢╢╢▓╜__╓╣▒▒▒▒▒╣╜_____
    _____________________________________________________╓▓╢╢╢╢╢▓╜__╓╣▒▒▒▒▒╣`_______
    ___________________________________________________╓▓╢╢╢╢╢▓"__╓╣▒▒▒▒▒Ñ__________
    _________________________________________________g▓╢╢╢╢╢▓`__g╢▒▒▒▒▒╝____________
    ______________________________________________ g▓╢╢╢╢╣▓__,@╢▒▒▒▒╢╜______________
    ____________________________________________,@▓╢╢╢╢╣╝___]▒▒▒▒▒╢╜________________
    __________________________________________,▓▓╢╢╢╢▓╜______╩▒▒╣╜__________________
    ________________________________________╓▓╢╢╢╢╢▓╜_______________________________
*/


contract BlockchainAdventuresOfBellaTheBlueBot is ERC721Enumerable, Ownable{
    string private baseURI;
    
    bool public presaleActive = false;
    mapping(address => uint256) private presaleAddressesToRemainingAmount;
    
    bool public publicSaleActive = false;

    uint256 public reserved = 655;
    uint256 private cost = 0.0555 ether; 
    uint256 public constant maxSupply = 12000;
    
    constructor(string memory _initBaseURI) ERC721("BlockchainAdventuresOfBellaTheBlueBot", "BELLA") {
        setBaseURI(_initBaseURI);
    }

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

    function remainingPresaleAmount(address _address) external view returns(uint256){
        return presaleAddressesToRemainingAmount[_address];
    }
    
    function addToPresale(address[] calldata _addresses) external onlyOwner {
        for(uint256 i = 0; i < _addresses.length; i++){
            presaleAddressesToRemainingAmount[_addresses[i]] = 5;
        }
    }
    
    function removeFromPresale(address[] calldata _addresses) external onlyOwner {
        for(uint256 i = 0; i < _addresses.length; i++){
            presaleAddressesToRemainingAmount[_addresses[i]] = 0;
        }
    }
    
    function mintReserved(address _to, uint256 _mintAmount) external onlyOwner{
        uint256 supply = totalSupply();
        
        require(_mintAmount > 0, "Invalid mint amount");
        require(supply + _mintAmount <= maxSupply, "Transaction would exceed max supply");
        require(reserved - _mintAmount >= 0, "You cannot mint more tokens than the amount reserved");
        
        reserved -= _mintAmount;

        for (uint256 i = 1; i <= _mintAmount; i++){
            _safeMint(_to, supply + i);
        }
    }

    function mintAirdrop(address[] calldata _addresses) external onlyOwner{
        uint256 supply = totalSupply();
        
        require(_addresses.length > 0, "You must provide at least one address");
        require(supply + _addresses.length <= maxSupply, "Transaction would exceed max supply");
        require(reserved - _addresses.length >= 0, "You cannot mint more tokens than the amount reserved");

        reserved -= _addresses.length;

        for(uint256 i = 1; i <= _addresses.length; i++){
            _safeMint(_addresses[i - 1], supply + i);
        }

    }

    function mintPresale(uint256 _mintAmount) external payable {
        uint256 supply = totalSupply();
        
        require(presaleActive, "Presale is not available");

        require(_mintAmount > 0 && _mintAmount <= presaleAddressesToRemainingAmount[msg.sender], "Invalid mint amount");

        require(cost * _mintAmount <= msg.value, "Value of transaction is too low");
        require(supply + reserved + _mintAmount <= maxSupply, "Transaction would exceed max supply");

        presaleAddressesToRemainingAmount[msg.sender] -= _mintAmount;

        for (uint256 i = 1; i <= _mintAmount; i++){
            _safeMint(msg.sender, supply + i);
        }
    }

    function mintPublicSale(uint256 _mintAmount) external payable {
        uint256 supply = totalSupply();
        
        require(publicSaleActive, "Public sale is not available");

        require(msg.sender == tx.origin);

        require(_mintAmount > 0 && _mintAmount <= 20, "Invalid mint amount");

        require(cost * _mintAmount <= msg.value, "Value of transaction is too low");
        require(balanceOf(msg.sender) + _mintAmount <= 100, "You cannot mint more than 100 tokens");
        require(supply + reserved + _mintAmount <= maxSupply, "Transaction would exceed max supply");
        
        for (uint256 i = 1; i <= _mintAmount; i++){
            _safeMint(msg.sender, supply + i);
        }    
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory){
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for(uint256 i = 0; i < ownerTokenCount; i++){
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

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

    function setCost(uint256 _newCost) external onlyOwner{
        cost = _newCost;
    }
    
    function setPresale(bool _state) external onlyOwner{
        presaleActive = _state;
    }
    
    function setPublicSale(bool _state) external onlyOwner{
        publicSaleActive = _state;
    }

    function withdraw() external payable onlyOwner{
        require(payable(msg.sender).send(address(this).balance));
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"_addresses","type":"address[]"}],"name":"addToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"mintAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"remainingPresaleAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeFromPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","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":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600c60006101000a81548160ff0219169083151502179055506000600e60006101000a81548160ff02191690831515021790555061028f600f5566c52cf4b908c0006010553480156200005857600080fd5b50604051620054163803806200541683398181016040528101906200007e91906200040b565b604051806060016040528060258152602001620053f1602591396040518060400160405280600581526020017f42454c4c410000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e6929190620002dd565b508060019080519060200190620000ff929190620002dd565b50505062000122620001166200013a60201b60201c565b6200014260201b60201c565b62000133816200020860201b60201c565b5062000663565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002186200013a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200023e620002b360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000297576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028e9062000483565b60405180910390fd5b80600b9080519060200190620002af929190620002dd565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002eb906200054b565b90600052602060002090601f0160209004810192826200030f57600085556200035b565b82601f106200032a57805160ff19168380011785556200035b565b828001600101855582156200035b579182015b828111156200035a5782518255916020019190600101906200033d565b5b5090506200036a91906200036e565b5090565b5b80821115620003895760008160009055506001016200036f565b5090565b6000620003a46200039e84620004ce565b620004a5565b905082815260208101848484011115620003c357620003c26200061a565b5b620003d084828562000515565b509392505050565b600082601f830112620003f057620003ef62000615565b5b8151620004028482602086016200038d565b91505092915050565b60006020828403121562000424576200042362000624565b5b600082015167ffffffffffffffff8111156200044557620004446200061f565b5b6200045384828501620003d8565b91505092915050565b60006200046b60208362000504565b915062000478826200063a565b602082019050919050565b600060208201905081810360008301526200049e816200045c565b9050919050565b6000620004b1620004c4565b9050620004bf828262000581565b919050565b6000604051905090565b600067ffffffffffffffff821115620004ec57620004eb620005e6565b5b620004f78262000629565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200053557808201518184015260208101905062000518565b8381111562000545576000848401525b50505050565b600060028204905060018216806200056457607f821691505b602082108114156200057b576200057a620005b7565b5b50919050565b6200058c8262000629565b810181811067ffffffffffffffff82111715620005ae57620005ad620005e6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614d7e80620006736000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063bc8893b4116100a0578063d5abeb011161006f578063d5abeb011461078d578063e985e9c5146107b8578063f2fde38b146107f5578063f759867a1461081e578063fe60d12c1461083a5761020f565b8063bc8893b4146106d3578063c54e73e3146106fe578063c595317014610727578063c87b56dd146107505761020f565b80639c816955116100e75780639c816955146105f2578063a22cb4651461061b578063aef6ee1f14610644578063b4296c771461066d578063b88d4fde146106aa5761020f565b8063715018a61461055c5780637de55fe1146105735780638da5cb5b1461059c57806395d89b41146105c75761020f565b8063438b63001161019b57806355f804b31161016a57806355f804b3146104745780635a5e5d581461049d5780635aca1bb6146104b95780636352211e146104e257806370a082311461051f5761020f565b8063438b6300146103a657806344a0d68a146103e35780634f6ccce71461040c57806353135ca0146104495761020f565b806318160ddd116101e257806318160ddd146102e257806323b872dd1461030d5780632f745c59146103365780633ccfd60b1461037357806342842e0e1461037d5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061372a565b610865565b6040516102489190613d8a565b60405180910390f35b34801561025d57600080fd5b506102666108df565b6040516102739190613da5565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906137cd565b610971565b6040516102b09190613d01565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613670565b6109f6565b005b3480156102ee57600080fd5b506102f7610b0e565b6040516103049190614107565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f919061355a565b610b1b565b005b34801561034257600080fd5b5061035d60048036038101906103589190613670565b610b7b565b60405161036a9190614107565b60405180910390f35b61037b610c20565b005b34801561038957600080fd5b506103a4600480360381019061039f919061355a565b610cdc565b005b3480156103b257600080fd5b506103cd60048036038101906103c891906134ed565b610cfc565b6040516103da9190613d68565b60405180910390f35b3480156103ef57600080fd5b5061040a600480360381019061040591906137cd565b610daa565b005b34801561041857600080fd5b50610433600480360381019061042e91906137cd565b610e30565b6040516104409190614107565b60405180910390f35b34801561045557600080fd5b5061045e610ea1565b60405161046b9190613d8a565b60405180910390f35b34801561048057600080fd5b5061049b60048036038101906104969190613784565b610eb4565b005b6104b760048036038101906104b291906137cd565b610f4a565b005b3480156104c557600080fd5b506104e060048036038101906104db91906136fd565b61116c565b005b3480156104ee57600080fd5b50610509600480360381019061050491906137cd565b611205565b6040516105169190613d01565b60405180910390f35b34801561052b57600080fd5b50610546600480360381019061054191906134ed565b6112b7565b6040516105539190614107565b60405180910390f35b34801561056857600080fd5b5061057161136f565b005b34801561057f57600080fd5b5061059a60048036038101906105959190613670565b6113f7565b005b3480156105a857600080fd5b506105b16115b8565b6040516105be9190613d01565b60405180910390f35b3480156105d357600080fd5b506105dc6115e2565b6040516105e99190613da5565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906136b0565b611674565b005b34801561062757600080fd5b50610642600480360381019061063d9190613630565b611782565b005b34801561065057600080fd5b5061066b600480360381019061066691906136b0565b611798565b005b34801561067957600080fd5b50610694600480360381019061068f91906134ed565b6118a6565b6040516106a19190614107565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc91906135ad565b6118ef565b005b3480156106df57600080fd5b506106e8611951565b6040516106f59190613d8a565b60405180910390f35b34801561070a57600080fd5b50610725600480360381019061072091906136fd565b611964565b005b34801561073357600080fd5b5061074e600480360381019061074991906136b0565b6119fd565b005b34801561075c57600080fd5b50610777600480360381019061077291906137cd565b611c00565b6040516107849190613da5565b60405180910390f35b34801561079957600080fd5b506107a2611ca7565b6040516107af9190614107565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da919061351a565b611cad565b6040516107ec9190613d8a565b60405180910390f35b34801561080157600080fd5b5061081c600480360381019061081791906134ed565b611d41565b005b610838600480360381019061083391906137cd565b611e39565b005b34801561084657600080fd5b5061084f612060565b60405161085c9190614107565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d857506108d782612066565b5b9050919050565b6060600080546108ee906143f0565b80601f016020809104026020016040519081016040528092919081815260200182805461091a906143f0565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b600061097c82612148565b6109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b290613f67565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0182611205565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6990614007565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a916121b4565b73ffffffffffffffffffffffffffffffffffffffff161480610ac05750610abf81610aba6121b4565b611cad565b5b610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690613ee7565b60405180910390fd5b610b0983836121bc565b505050565b6000600880549050905090565b610b2c610b266121b4565b82612275565b610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290614067565b60405180910390fd5b610b76838383612353565b505050565b6000610b86836112b7565b8210610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90613dc7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c286121b4565b73ffffffffffffffffffffffffffffffffffffffff16610c466115b8565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9390613f87565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610cda57600080fd5b565b610cf7838383604051806020016040528060008152506118ef565b505050565b60606000610d09836112b7565b905060008167ffffffffffffffff811115610d2757610d266145b8565b5b604051908082528060200260200182016040528015610d555781602001602082028036833780820191505090505b50905060005b82811015610d9f57610d6d8582610b7b565b828281518110610d8057610d7f614589565b5b6020026020010181815250508080610d9790614453565b915050610d5b565b508092505050919050565b610db26121b4565b73ffffffffffffffffffffffffffffffffffffffff16610dd06115b8565b73ffffffffffffffffffffffffffffffffffffffff1614610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d90613f87565b60405180910390fd5b8060108190555050565b6000610e3a610b0e565b8210610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e72906140a7565b60405180910390fd5b60088281548110610e8f57610e8e614589565b5b90600052602060002001549050919050565b600c60009054906101000a900460ff1681565b610ebc6121b4565b73ffffffffffffffffffffffffffffffffffffffff16610eda6115b8565b73ffffffffffffffffffffffffffffffffffffffff1614610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790613f87565b60405180910390fd5b80600b9080519060200190610f469291906132ab565b5050565b6000610f54610b0e565b9050600e60009054906101000a900460ff16610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90613ea7565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fdd57600080fd5b600082118015610fee575060148211155b61102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490614087565b60405180910390fd5b348260105461103c91906142ac565b111561107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490614047565b60405180910390fd5b606482611089336112b7565b6110939190614225565b11156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb906140c7565b60405180910390fd5b612ee082600f54836110e69190614225565b6110f09190614225565b1115611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890613e47565b60405180910390fd5b6000600190505b8281116111675761115433828461114f9190614225565b6125af565b808061115f90614453565b915050611138565b505050565b6111746121b4565b73ffffffffffffffffffffffffffffffffffffffff166111926115b8565b73ffffffffffffffffffffffffffffffffffffffff16146111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df90613f87565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a590613f27565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f90613f07565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113776121b4565b73ffffffffffffffffffffffffffffffffffffffff166113956115b8565b73ffffffffffffffffffffffffffffffffffffffff16146113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290613f87565b60405180910390fd5b6113f560006125cd565b565b6113ff6121b4565b73ffffffffffffffffffffffffffffffffffffffff1661141d6115b8565b73ffffffffffffffffffffffffffffffffffffffff1614611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a90613f87565b60405180910390fd5b600061147d610b0e565b9050600082116114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990614087565b60405180910390fd5b612ee082826114d19190614225565b1115611512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150990613e47565b60405180910390fd5b600082600f546115229190614306565b1015611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90614027565b60405180910390fd5b81600f60008282546115759190614306565b925050819055506000600190505b8281116115b25761159f84828461159a9190614225565b6125af565b80806115aa90614453565b915050611583565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115f1906143f0565b80601f016020809104026020016040519081016040528092919081815260200182805461161d906143f0565b801561166a5780601f1061163f5761010080835404028352916020019161166a565b820191906000526020600020905b81548152906001019060200180831161164d57829003601f168201915b5050505050905090565b61167c6121b4565b73ffffffffffffffffffffffffffffffffffffffff1661169a6115b8565b73ffffffffffffffffffffffffffffffffffffffff16146116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e790613f87565b60405180910390fd5b60005b8282905081101561177d576000600d600085858581811061171757611716614589565b5b905060200201602081019061172c91906134ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061177590614453565b9150506116f3565b505050565b61179461178d6121b4565b8383612693565b5050565b6117a06121b4565b73ffffffffffffffffffffffffffffffffffffffff166117be6115b8565b73ffffffffffffffffffffffffffffffffffffffff1614611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b90613f87565b60405180910390fd5b60005b828290508110156118a1576005600d600085858581811061183b5761183a614589565b5b905060200201602081019061185091906134ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061189990614453565b915050611817565b505050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119006118fa6121b4565b83612275565b61193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193690614067565b60405180910390fd5b61194b84848484612800565b50505050565b600e60009054906101000a900460ff1681565b61196c6121b4565b73ffffffffffffffffffffffffffffffffffffffff1661198a6115b8565b73ffffffffffffffffffffffffffffffffffffffff16146119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790613f87565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b611a056121b4565b73ffffffffffffffffffffffffffffffffffffffff16611a236115b8565b73ffffffffffffffffffffffffffffffffffffffff1614611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090613f87565b60405180910390fd5b6000611a83610b0e565b905060008383905011611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290613fc7565b60405180910390fd5b612ee08383905082611add9190614225565b1115611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1590613e47565b60405180910390fd5b600083839050600f54611b319190614306565b1015611b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6990614027565b60405180910390fd5b82829050600f6000828254611b879190614306565b925050819055506000600190505b838390508111611bfa57611be78484600184611bb19190614306565b818110611bc157611bc0614589565b5b9050602002016020810190611bd691906134ed565b8284611be29190614225565b6125af565b8080611bf290614453565b915050611b95565b50505050565b6060611c0b82612148565b611c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4190613fe7565b60405180910390fd5b6000611c5461285c565b90506000815111611c745760405180602001604052806000815250611c9f565b80611c7e846128ee565b604051602001611c8f929190613cdd565b6040516020818303038152906040525b915050919050565b612ee081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d496121b4565b73ffffffffffffffffffffffffffffffffffffffff16611d676115b8565b73ffffffffffffffffffffffffffffffffffffffff1614611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490613f87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2490613e07565b60405180910390fd5b611e36816125cd565b50565b6000611e43610b0e565b9050600c60009054906101000a900460ff16611e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8b906140e7565b60405180910390fd5b600082118015611ee35750600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211155b611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1990614087565b60405180910390fd5b3482601054611f3191906142ac565b1115611f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6990614047565b60405180910390fd5b612ee082600f5483611f849190614225565b611f8e9190614225565b1115611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc690613e47565b60405180910390fd5b81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461201e9190614306565b925050819055506000600190505b82811161205b576120483382846120439190614225565b6125af565b808061205390614453565b91505061202c565b505050565b600f5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061213157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612141575061214082612a4f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661222f83611205565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061228082612148565b6122bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b690613ec7565b60405180910390fd5b60006122ca83611205565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061233957508373ffffffffffffffffffffffffffffffffffffffff1661232184610971565b73ffffffffffffffffffffffffffffffffffffffff16145b8061234a57506123498185611cad565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661237382611205565b73ffffffffffffffffffffffffffffffffffffffff16146123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c090613fa7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243090613e67565b60405180910390fd5b612444838383612ab9565b61244f6000826121bc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461249f9190614306565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124f69190614225565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125c9828260405180602001604052806000815250612bcd565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f990613e87565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127f39190613d8a565b60405180910390a3505050565b61280b848484612353565b61281784848484612c28565b612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d90613de7565b60405180910390fd5b50505050565b6060600b805461286b906143f0565b80601f0160208091040260200160405190810160405280929190818152602001828054612897906143f0565b80156128e45780601f106128b9576101008083540402835291602001916128e4565b820191906000526020600020905b8154815290600101906020018083116128c757829003601f168201915b5050505050905090565b60606000821415612936576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a4a565b600082905060005b6000821461296857808061295190614453565b915050600a82612961919061427b565b915061293e565b60008167ffffffffffffffff811115612984576129836145b8565b5b6040519080825280601f01601f1916602001820160405280156129b65781602001600182028036833780820191505090505b5090505b60008514612a43576001826129cf9190614306565b9150600a856129de919061449c565b60306129ea9190614225565b60f81b818381518110612a00576129ff614589565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a3c919061427b565b94506129ba565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ac4838383612dbf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b0757612b0281612dc4565b612b46565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b4557612b448382612e0d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b8957612b8481612f7a565b612bc8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612bc757612bc6828261304b565b5b5b505050565b612bd783836130ca565b612be46000848484612c28565b612c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1a90613de7565b60405180910390fd5b505050565b6000612c498473ffffffffffffffffffffffffffffffffffffffff16613298565b15612db2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c726121b4565b8786866040518563ffffffff1660e01b8152600401612c949493929190613d1c565b602060405180830381600087803b158015612cae57600080fd5b505af1925050508015612cdf57506040513d601f19601f82011682018060405250810190612cdc9190613757565b60015b612d62573d8060008114612d0f576040519150601f19603f3d011682016040523d82523d6000602084013e612d14565b606091505b50600081511415612d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5190613de7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612db7565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612e1a846112b7565b612e249190614306565b9050600060076000848152602001908152602001600020549050818114612f09576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612f8e9190614306565b9050600060096000848152602001908152602001600020549050600060088381548110612fbe57612fbd614589565b5b906000526020600020015490508060088381548110612fe057612fdf614589565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061302f5761302e61455a565b5b6001900381819060005260206000200160009055905550505050565b6000613056836112b7565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561313a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313190613f47565b60405180910390fd5b61314381612148565b15613183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317a90613e27565b60405180910390fd5b61318f60008383612ab9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131df9190614225565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546132b7906143f0565b90600052602060002090601f0160209004810192826132d95760008555613320565b82601f106132f257805160ff1916838001178555613320565b82800160010185558215613320579182015b8281111561331f578251825591602001919060010190613304565b5b50905061332d9190613331565b5090565b5b8082111561334a576000816000905550600101613332565b5090565b600061336161335c84614147565b614122565b90508281526020810184848401111561337d5761337c6145f6565b5b6133888482856143ae565b509392505050565b60006133a361339e84614178565b614122565b9050828152602081018484840111156133bf576133be6145f6565b5b6133ca8482856143ae565b509392505050565b6000813590506133e181614cec565b92915050565b60008083601f8401126133fd576133fc6145ec565b5b8235905067ffffffffffffffff81111561341a576134196145e7565b5b602083019150836020820283011115613436576134356145f1565b5b9250929050565b60008135905061344c81614d03565b92915050565b60008135905061346181614d1a565b92915050565b60008151905061347681614d1a565b92915050565b600082601f830112613491576134906145ec565b5b81356134a184826020860161334e565b91505092915050565b600082601f8301126134bf576134be6145ec565b5b81356134cf848260208601613390565b91505092915050565b6000813590506134e781614d31565b92915050565b60006020828403121561350357613502614600565b5b6000613511848285016133d2565b91505092915050565b6000806040838503121561353157613530614600565b5b600061353f858286016133d2565b9250506020613550858286016133d2565b9150509250929050565b60008060006060848603121561357357613572614600565b5b6000613581868287016133d2565b9350506020613592868287016133d2565b92505060406135a3868287016134d8565b9150509250925092565b600080600080608085870312156135c7576135c6614600565b5b60006135d5878288016133d2565b94505060206135e6878288016133d2565b93505060406135f7878288016134d8565b925050606085013567ffffffffffffffff811115613618576136176145fb565b5b6136248782880161347c565b91505092959194509250565b6000806040838503121561364757613646614600565b5b6000613655858286016133d2565b92505060206136668582860161343d565b9150509250929050565b6000806040838503121561368757613686614600565b5b6000613695858286016133d2565b92505060206136a6858286016134d8565b9150509250929050565b600080602083850312156136c7576136c6614600565b5b600083013567ffffffffffffffff8111156136e5576136e46145fb565b5b6136f1858286016133e7565b92509250509250929050565b60006020828403121561371357613712614600565b5b60006137218482850161343d565b91505092915050565b6000602082840312156137405761373f614600565b5b600061374e84828501613452565b91505092915050565b60006020828403121561376d5761376c614600565b5b600061377b84828501613467565b91505092915050565b60006020828403121561379a57613799614600565b5b600082013567ffffffffffffffff8111156137b8576137b76145fb565b5b6137c4848285016134aa565b91505092915050565b6000602082840312156137e3576137e2614600565b5b60006137f1848285016134d8565b91505092915050565b60006138068383613cbf565b60208301905092915050565b61381b8161433a565b82525050565b600061382c826141b9565b61383681856141e7565b9350613841836141a9565b8060005b8381101561387257815161385988826137fa565b9750613864836141da565b925050600181019050613845565b5085935050505092915050565b6138888161434c565b82525050565b6000613899826141c4565b6138a381856141f8565b93506138b38185602086016143bd565b6138bc81614605565b840191505092915050565b60006138d2826141cf565b6138dc8185614209565b93506138ec8185602086016143bd565b6138f581614605565b840191505092915050565b600061390b826141cf565b613915818561421a565b93506139258185602086016143bd565b80840191505092915050565b600061393e602b83614209565b915061394982614616565b604082019050919050565b6000613961603283614209565b915061396c82614665565b604082019050919050565b6000613984602683614209565b915061398f826146b4565b604082019050919050565b60006139a7601c83614209565b91506139b282614703565b602082019050919050565b60006139ca602383614209565b91506139d58261472c565b604082019050919050565b60006139ed602483614209565b91506139f88261477b565b604082019050919050565b6000613a10601983614209565b9150613a1b826147ca565b602082019050919050565b6000613a33601c83614209565b9150613a3e826147f3565b602082019050919050565b6000613a56602c83614209565b9150613a618261481c565b604082019050919050565b6000613a79603883614209565b9150613a848261486b565b604082019050919050565b6000613a9c602a83614209565b9150613aa7826148ba565b604082019050919050565b6000613abf602983614209565b9150613aca82614909565b604082019050919050565b6000613ae2602083614209565b9150613aed82614958565b602082019050919050565b6000613b05602c83614209565b9150613b1082614981565b604082019050919050565b6000613b28602083614209565b9150613b33826149d0565b602082019050919050565b6000613b4b602983614209565b9150613b56826149f9565b604082019050919050565b6000613b6e602583614209565b9150613b7982614a48565b604082019050919050565b6000613b91602f83614209565b9150613b9c82614a97565b604082019050919050565b6000613bb4602183614209565b9150613bbf82614ae6565b604082019050919050565b6000613bd7603483614209565b9150613be282614b35565b604082019050919050565b6000613bfa601f83614209565b9150613c0582614b84565b602082019050919050565b6000613c1d603183614209565b9150613c2882614bad565b604082019050919050565b6000613c40601383614209565b9150613c4b82614bfc565b602082019050919050565b6000613c63602c83614209565b9150613c6e82614c25565b604082019050919050565b6000613c86602483614209565b9150613c9182614c74565b604082019050919050565b6000613ca9601883614209565b9150613cb482614cc3565b602082019050919050565b613cc8816143a4565b82525050565b613cd7816143a4565b82525050565b6000613ce98285613900565b9150613cf58284613900565b91508190509392505050565b6000602082019050613d166000830184613812565b92915050565b6000608082019050613d316000830187613812565b613d3e6020830186613812565b613d4b6040830185613cce565b8181036060830152613d5d818461388e565b905095945050505050565b60006020820190508181036000830152613d828184613821565b905092915050565b6000602082019050613d9f600083018461387f565b92915050565b60006020820190508181036000830152613dbf81846138c7565b905092915050565b60006020820190508181036000830152613de081613931565b9050919050565b60006020820190508181036000830152613e0081613954565b9050919050565b60006020820190508181036000830152613e2081613977565b9050919050565b60006020820190508181036000830152613e408161399a565b9050919050565b60006020820190508181036000830152613e60816139bd565b9050919050565b60006020820190508181036000830152613e80816139e0565b9050919050565b60006020820190508181036000830152613ea081613a03565b9050919050565b60006020820190508181036000830152613ec081613a26565b9050919050565b60006020820190508181036000830152613ee081613a49565b9050919050565b60006020820190508181036000830152613f0081613a6c565b9050919050565b60006020820190508181036000830152613f2081613a8f565b9050919050565b60006020820190508181036000830152613f4081613ab2565b9050919050565b60006020820190508181036000830152613f6081613ad5565b9050919050565b60006020820190508181036000830152613f8081613af8565b9050919050565b60006020820190508181036000830152613fa081613b1b565b9050919050565b60006020820190508181036000830152613fc081613b3e565b9050919050565b60006020820190508181036000830152613fe081613b61565b9050919050565b6000602082019050818103600083015261400081613b84565b9050919050565b6000602082019050818103600083015261402081613ba7565b9050919050565b6000602082019050818103600083015261404081613bca565b9050919050565b6000602082019050818103600083015261406081613bed565b9050919050565b6000602082019050818103600083015261408081613c10565b9050919050565b600060208201905081810360008301526140a081613c33565b9050919050565b600060208201905081810360008301526140c081613c56565b9050919050565b600060208201905081810360008301526140e081613c79565b9050919050565b6000602082019050818103600083015261410081613c9c565b9050919050565b600060208201905061411c6000830184613cce565b92915050565b600061412c61413d565b90506141388282614422565b919050565b6000604051905090565b600067ffffffffffffffff821115614162576141616145b8565b5b61416b82614605565b9050602081019050919050565b600067ffffffffffffffff821115614193576141926145b8565b5b61419c82614605565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614230826143a4565b915061423b836143a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142705761426f6144cd565b5b828201905092915050565b6000614286826143a4565b9150614291836143a4565b9250826142a1576142a06144fc565b5b828204905092915050565b60006142b7826143a4565b91506142c2836143a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142fb576142fa6144cd565b5b828202905092915050565b6000614311826143a4565b915061431c836143a4565b92508282101561432f5761432e6144cd565b5b828203905092915050565b600061434582614384565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143db5780820151818401526020810190506143c0565b838111156143ea576000848401525b50505050565b6000600282049050600182168061440857607f821691505b6020821081141561441c5761441b61452b565b5b50919050565b61442b82614605565b810181811067ffffffffffffffff8211171561444a576144496145b8565b5b80604052505050565b600061445e826143a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614491576144906144cd565b5b600182019050919050565b60006144a7826143a4565b91506144b2836143a4565b9250826144c2576144c16144fc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5472616e73616374696f6e20776f756c6420657863656564206d61782073757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5075626c69632073616c65206973206e6f7420617661696c61626c6500000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f596f75206d7573742070726f76696465206174206c65617374206f6e6520616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e6e6f74206d696e74206d6f726520746f6b656e73207468616e60008201527f2074686520616d6f756e74207265736572766564000000000000000000000000602082015250565b7f56616c7565206f66207472616e73616374696f6e20697320746f6f206c6f7700600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e2031303020746f60008201527f6b656e7300000000000000000000000000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f7420617661696c61626c650000000000000000600082015250565b614cf58161433a565b8114614d0057600080fd5b50565b614d0c8161434c565b8114614d1757600080fd5b50565b614d2381614358565b8114614d2e57600080fd5b50565b614d3a816143a4565b8114614d4557600080fd5b5056fea26469706673582212201b5284ae3351d17ff00af2e0a6f6e0849e674a797e632a82871856a4be821abc64736f6c63430008070033426c6f636b636861696e416476656e74757265734f6642656c6c61546865426c7565426f740000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f7777772e746865616476656e74757265736f6662656c6c61746865626c7565626f742e73747564696f2f0000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063bc8893b4116100a0578063d5abeb011161006f578063d5abeb011461078d578063e985e9c5146107b8578063f2fde38b146107f5578063f759867a1461081e578063fe60d12c1461083a5761020f565b8063bc8893b4146106d3578063c54e73e3146106fe578063c595317014610727578063c87b56dd146107505761020f565b80639c816955116100e75780639c816955146105f2578063a22cb4651461061b578063aef6ee1f14610644578063b4296c771461066d578063b88d4fde146106aa5761020f565b8063715018a61461055c5780637de55fe1146105735780638da5cb5b1461059c57806395d89b41146105c75761020f565b8063438b63001161019b57806355f804b31161016a57806355f804b3146104745780635a5e5d581461049d5780635aca1bb6146104b95780636352211e146104e257806370a082311461051f5761020f565b8063438b6300146103a657806344a0d68a146103e35780634f6ccce71461040c57806353135ca0146104495761020f565b806318160ddd116101e257806318160ddd146102e257806323b872dd1461030d5780632f745c59146103365780633ccfd60b1461037357806342842e0e1461037d5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061372a565b610865565b6040516102489190613d8a565b60405180910390f35b34801561025d57600080fd5b506102666108df565b6040516102739190613da5565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906137cd565b610971565b6040516102b09190613d01565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613670565b6109f6565b005b3480156102ee57600080fd5b506102f7610b0e565b6040516103049190614107565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f919061355a565b610b1b565b005b34801561034257600080fd5b5061035d60048036038101906103589190613670565b610b7b565b60405161036a9190614107565b60405180910390f35b61037b610c20565b005b34801561038957600080fd5b506103a4600480360381019061039f919061355a565b610cdc565b005b3480156103b257600080fd5b506103cd60048036038101906103c891906134ed565b610cfc565b6040516103da9190613d68565b60405180910390f35b3480156103ef57600080fd5b5061040a600480360381019061040591906137cd565b610daa565b005b34801561041857600080fd5b50610433600480360381019061042e91906137cd565b610e30565b6040516104409190614107565b60405180910390f35b34801561045557600080fd5b5061045e610ea1565b60405161046b9190613d8a565b60405180910390f35b34801561048057600080fd5b5061049b60048036038101906104969190613784565b610eb4565b005b6104b760048036038101906104b291906137cd565b610f4a565b005b3480156104c557600080fd5b506104e060048036038101906104db91906136fd565b61116c565b005b3480156104ee57600080fd5b50610509600480360381019061050491906137cd565b611205565b6040516105169190613d01565b60405180910390f35b34801561052b57600080fd5b50610546600480360381019061054191906134ed565b6112b7565b6040516105539190614107565b60405180910390f35b34801561056857600080fd5b5061057161136f565b005b34801561057f57600080fd5b5061059a60048036038101906105959190613670565b6113f7565b005b3480156105a857600080fd5b506105b16115b8565b6040516105be9190613d01565b60405180910390f35b3480156105d357600080fd5b506105dc6115e2565b6040516105e99190613da5565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906136b0565b611674565b005b34801561062757600080fd5b50610642600480360381019061063d9190613630565b611782565b005b34801561065057600080fd5b5061066b600480360381019061066691906136b0565b611798565b005b34801561067957600080fd5b50610694600480360381019061068f91906134ed565b6118a6565b6040516106a19190614107565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc91906135ad565b6118ef565b005b3480156106df57600080fd5b506106e8611951565b6040516106f59190613d8a565b60405180910390f35b34801561070a57600080fd5b50610725600480360381019061072091906136fd565b611964565b005b34801561073357600080fd5b5061074e600480360381019061074991906136b0565b6119fd565b005b34801561075c57600080fd5b50610777600480360381019061077291906137cd565b611c00565b6040516107849190613da5565b60405180910390f35b34801561079957600080fd5b506107a2611ca7565b6040516107af9190614107565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da919061351a565b611cad565b6040516107ec9190613d8a565b60405180910390f35b34801561080157600080fd5b5061081c600480360381019061081791906134ed565b611d41565b005b610838600480360381019061083391906137cd565b611e39565b005b34801561084657600080fd5b5061084f612060565b60405161085c9190614107565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108d857506108d782612066565b5b9050919050565b6060600080546108ee906143f0565b80601f016020809104026020016040519081016040528092919081815260200182805461091a906143f0565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b600061097c82612148565b6109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b290613f67565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0182611205565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6990614007565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a916121b4565b73ffffffffffffffffffffffffffffffffffffffff161480610ac05750610abf81610aba6121b4565b611cad565b5b610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690613ee7565b60405180910390fd5b610b0983836121bc565b505050565b6000600880549050905090565b610b2c610b266121b4565b82612275565b610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290614067565b60405180910390fd5b610b76838383612353565b505050565b6000610b86836112b7565b8210610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90613dc7565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c286121b4565b73ffffffffffffffffffffffffffffffffffffffff16610c466115b8565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9390613f87565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610cda57600080fd5b565b610cf7838383604051806020016040528060008152506118ef565b505050565b60606000610d09836112b7565b905060008167ffffffffffffffff811115610d2757610d266145b8565b5b604051908082528060200260200182016040528015610d555781602001602082028036833780820191505090505b50905060005b82811015610d9f57610d6d8582610b7b565b828281518110610d8057610d7f614589565b5b6020026020010181815250508080610d9790614453565b915050610d5b565b508092505050919050565b610db26121b4565b73ffffffffffffffffffffffffffffffffffffffff16610dd06115b8565b73ffffffffffffffffffffffffffffffffffffffff1614610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d90613f87565b60405180910390fd5b8060108190555050565b6000610e3a610b0e565b8210610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e72906140a7565b60405180910390fd5b60088281548110610e8f57610e8e614589565b5b90600052602060002001549050919050565b600c60009054906101000a900460ff1681565b610ebc6121b4565b73ffffffffffffffffffffffffffffffffffffffff16610eda6115b8565b73ffffffffffffffffffffffffffffffffffffffff1614610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790613f87565b60405180910390fd5b80600b9080519060200190610f469291906132ab565b5050565b6000610f54610b0e565b9050600e60009054906101000a900460ff16610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90613ea7565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fdd57600080fd5b600082118015610fee575060148211155b61102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490614087565b60405180910390fd5b348260105461103c91906142ac565b111561107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490614047565b60405180910390fd5b606482611089336112b7565b6110939190614225565b11156110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb906140c7565b60405180910390fd5b612ee082600f54836110e69190614225565b6110f09190614225565b1115611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890613e47565b60405180910390fd5b6000600190505b8281116111675761115433828461114f9190614225565b6125af565b808061115f90614453565b915050611138565b505050565b6111746121b4565b73ffffffffffffffffffffffffffffffffffffffff166111926115b8565b73ffffffffffffffffffffffffffffffffffffffff16146111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df90613f87565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a590613f27565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f90613f07565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113776121b4565b73ffffffffffffffffffffffffffffffffffffffff166113956115b8565b73ffffffffffffffffffffffffffffffffffffffff16146113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290613f87565b60405180910390fd5b6113f560006125cd565b565b6113ff6121b4565b73ffffffffffffffffffffffffffffffffffffffff1661141d6115b8565b73ffffffffffffffffffffffffffffffffffffffff1614611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a90613f87565b60405180910390fd5b600061147d610b0e565b9050600082116114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990614087565b60405180910390fd5b612ee082826114d19190614225565b1115611512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150990613e47565b60405180910390fd5b600082600f546115229190614306565b1015611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a90614027565b60405180910390fd5b81600f60008282546115759190614306565b925050819055506000600190505b8281116115b25761159f84828461159a9190614225565b6125af565b80806115aa90614453565b915050611583565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115f1906143f0565b80601f016020809104026020016040519081016040528092919081815260200182805461161d906143f0565b801561166a5780601f1061163f5761010080835404028352916020019161166a565b820191906000526020600020905b81548152906001019060200180831161164d57829003601f168201915b5050505050905090565b61167c6121b4565b73ffffffffffffffffffffffffffffffffffffffff1661169a6115b8565b73ffffffffffffffffffffffffffffffffffffffff16146116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e790613f87565b60405180910390fd5b60005b8282905081101561177d576000600d600085858581811061171757611716614589565b5b905060200201602081019061172c91906134ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061177590614453565b9150506116f3565b505050565b61179461178d6121b4565b8383612693565b5050565b6117a06121b4565b73ffffffffffffffffffffffffffffffffffffffff166117be6115b8565b73ffffffffffffffffffffffffffffffffffffffff1614611814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180b90613f87565b60405180910390fd5b60005b828290508110156118a1576005600d600085858581811061183b5761183a614589565b5b905060200201602081019061185091906134ed565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061189990614453565b915050611817565b505050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119006118fa6121b4565b83612275565b61193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193690614067565b60405180910390fd5b61194b84848484612800565b50505050565b600e60009054906101000a900460ff1681565b61196c6121b4565b73ffffffffffffffffffffffffffffffffffffffff1661198a6115b8565b73ffffffffffffffffffffffffffffffffffffffff16146119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790613f87565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b611a056121b4565b73ffffffffffffffffffffffffffffffffffffffff16611a236115b8565b73ffffffffffffffffffffffffffffffffffffffff1614611a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7090613f87565b60405180910390fd5b6000611a83610b0e565b905060008383905011611acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac290613fc7565b60405180910390fd5b612ee08383905082611add9190614225565b1115611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1590613e47565b60405180910390fd5b600083839050600f54611b319190614306565b1015611b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6990614027565b60405180910390fd5b82829050600f6000828254611b879190614306565b925050819055506000600190505b838390508111611bfa57611be78484600184611bb19190614306565b818110611bc157611bc0614589565b5b9050602002016020810190611bd691906134ed565b8284611be29190614225565b6125af565b8080611bf290614453565b915050611b95565b50505050565b6060611c0b82612148565b611c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4190613fe7565b60405180910390fd5b6000611c5461285c565b90506000815111611c745760405180602001604052806000815250611c9f565b80611c7e846128ee565b604051602001611c8f929190613cdd565b6040516020818303038152906040525b915050919050565b612ee081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d496121b4565b73ffffffffffffffffffffffffffffffffffffffff16611d676115b8565b73ffffffffffffffffffffffffffffffffffffffff1614611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490613f87565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2490613e07565b60405180910390fd5b611e36816125cd565b50565b6000611e43610b0e565b9050600c60009054906101000a900460ff16611e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8b906140e7565b60405180910390fd5b600082118015611ee35750600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211155b611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1990614087565b60405180910390fd5b3482601054611f3191906142ac565b1115611f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6990614047565b60405180910390fd5b612ee082600f5483611f849190614225565b611f8e9190614225565b1115611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc690613e47565b60405180910390fd5b81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461201e9190614306565b925050819055506000600190505b82811161205b576120483382846120439190614225565b6125af565b808061205390614453565b91505061202c565b505050565b600f5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061213157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612141575061214082612a4f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661222f83611205565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061228082612148565b6122bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b690613ec7565b60405180910390fd5b60006122ca83611205565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061233957508373ffffffffffffffffffffffffffffffffffffffff1661232184610971565b73ffffffffffffffffffffffffffffffffffffffff16145b8061234a57506123498185611cad565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661237382611205565b73ffffffffffffffffffffffffffffffffffffffff16146123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c090613fa7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243090613e67565b60405180910390fd5b612444838383612ab9565b61244f6000826121bc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461249f9190614306565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124f69190614225565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125c9828260405180602001604052806000815250612bcd565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f990613e87565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127f39190613d8a565b60405180910390a3505050565b61280b848484612353565b61281784848484612c28565b612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d90613de7565b60405180910390fd5b50505050565b6060600b805461286b906143f0565b80601f0160208091040260200160405190810160405280929190818152602001828054612897906143f0565b80156128e45780601f106128b9576101008083540402835291602001916128e4565b820191906000526020600020905b8154815290600101906020018083116128c757829003601f168201915b5050505050905090565b60606000821415612936576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a4a565b600082905060005b6000821461296857808061295190614453565b915050600a82612961919061427b565b915061293e565b60008167ffffffffffffffff811115612984576129836145b8565b5b6040519080825280601f01601f1916602001820160405280156129b65781602001600182028036833780820191505090505b5090505b60008514612a43576001826129cf9190614306565b9150600a856129de919061449c565b60306129ea9190614225565b60f81b818381518110612a00576129ff614589565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a3c919061427b565b94506129ba565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ac4838383612dbf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b0757612b0281612dc4565b612b46565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b4557612b448382612e0d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b8957612b8481612f7a565b612bc8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612bc757612bc6828261304b565b5b5b505050565b612bd783836130ca565b612be46000848484612c28565b612c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1a90613de7565b60405180910390fd5b505050565b6000612c498473ffffffffffffffffffffffffffffffffffffffff16613298565b15612db2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c726121b4565b8786866040518563ffffffff1660e01b8152600401612c949493929190613d1c565b602060405180830381600087803b158015612cae57600080fd5b505af1925050508015612cdf57506040513d601f19601f82011682018060405250810190612cdc9190613757565b60015b612d62573d8060008114612d0f576040519150601f19603f3d011682016040523d82523d6000602084013e612d14565b606091505b50600081511415612d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5190613de7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612db7565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612e1a846112b7565b612e249190614306565b9050600060076000848152602001908152602001600020549050818114612f09576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612f8e9190614306565b9050600060096000848152602001908152602001600020549050600060088381548110612fbe57612fbd614589565b5b906000526020600020015490508060088381548110612fe057612fdf614589565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061302f5761302e61455a565b5b6001900381819060005260206000200160009055905550505050565b6000613056836112b7565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561313a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313190613f47565b60405180910390fd5b61314381612148565b15613183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317a90613e27565b60405180910390fd5b61318f60008383612ab9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131df9190614225565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546132b7906143f0565b90600052602060002090601f0160209004810192826132d95760008555613320565b82601f106132f257805160ff1916838001178555613320565b82800160010185558215613320579182015b8281111561331f578251825591602001919060010190613304565b5b50905061332d9190613331565b5090565b5b8082111561334a576000816000905550600101613332565b5090565b600061336161335c84614147565b614122565b90508281526020810184848401111561337d5761337c6145f6565b5b6133888482856143ae565b509392505050565b60006133a361339e84614178565b614122565b9050828152602081018484840111156133bf576133be6145f6565b5b6133ca8482856143ae565b509392505050565b6000813590506133e181614cec565b92915050565b60008083601f8401126133fd576133fc6145ec565b5b8235905067ffffffffffffffff81111561341a576134196145e7565b5b602083019150836020820283011115613436576134356145f1565b5b9250929050565b60008135905061344c81614d03565b92915050565b60008135905061346181614d1a565b92915050565b60008151905061347681614d1a565b92915050565b600082601f830112613491576134906145ec565b5b81356134a184826020860161334e565b91505092915050565b600082601f8301126134bf576134be6145ec565b5b81356134cf848260208601613390565b91505092915050565b6000813590506134e781614d31565b92915050565b60006020828403121561350357613502614600565b5b6000613511848285016133d2565b91505092915050565b6000806040838503121561353157613530614600565b5b600061353f858286016133d2565b9250506020613550858286016133d2565b9150509250929050565b60008060006060848603121561357357613572614600565b5b6000613581868287016133d2565b9350506020613592868287016133d2565b92505060406135a3868287016134d8565b9150509250925092565b600080600080608085870312156135c7576135c6614600565b5b60006135d5878288016133d2565b94505060206135e6878288016133d2565b93505060406135f7878288016134d8565b925050606085013567ffffffffffffffff811115613618576136176145fb565b5b6136248782880161347c565b91505092959194509250565b6000806040838503121561364757613646614600565b5b6000613655858286016133d2565b92505060206136668582860161343d565b9150509250929050565b6000806040838503121561368757613686614600565b5b6000613695858286016133d2565b92505060206136a6858286016134d8565b9150509250929050565b600080602083850312156136c7576136c6614600565b5b600083013567ffffffffffffffff8111156136e5576136e46145fb565b5b6136f1858286016133e7565b92509250509250929050565b60006020828403121561371357613712614600565b5b60006137218482850161343d565b91505092915050565b6000602082840312156137405761373f614600565b5b600061374e84828501613452565b91505092915050565b60006020828403121561376d5761376c614600565b5b600061377b84828501613467565b91505092915050565b60006020828403121561379a57613799614600565b5b600082013567ffffffffffffffff8111156137b8576137b76145fb565b5b6137c4848285016134aa565b91505092915050565b6000602082840312156137e3576137e2614600565b5b60006137f1848285016134d8565b91505092915050565b60006138068383613cbf565b60208301905092915050565b61381b8161433a565b82525050565b600061382c826141b9565b61383681856141e7565b9350613841836141a9565b8060005b8381101561387257815161385988826137fa565b9750613864836141da565b925050600181019050613845565b5085935050505092915050565b6138888161434c565b82525050565b6000613899826141c4565b6138a381856141f8565b93506138b38185602086016143bd565b6138bc81614605565b840191505092915050565b60006138d2826141cf565b6138dc8185614209565b93506138ec8185602086016143bd565b6138f581614605565b840191505092915050565b600061390b826141cf565b613915818561421a565b93506139258185602086016143bd565b80840191505092915050565b600061393e602b83614209565b915061394982614616565b604082019050919050565b6000613961603283614209565b915061396c82614665565b604082019050919050565b6000613984602683614209565b915061398f826146b4565b604082019050919050565b60006139a7601c83614209565b91506139b282614703565b602082019050919050565b60006139ca602383614209565b91506139d58261472c565b604082019050919050565b60006139ed602483614209565b91506139f88261477b565b604082019050919050565b6000613a10601983614209565b9150613a1b826147ca565b602082019050919050565b6000613a33601c83614209565b9150613a3e826147f3565b602082019050919050565b6000613a56602c83614209565b9150613a618261481c565b604082019050919050565b6000613a79603883614209565b9150613a848261486b565b604082019050919050565b6000613a9c602a83614209565b9150613aa7826148ba565b604082019050919050565b6000613abf602983614209565b9150613aca82614909565b604082019050919050565b6000613ae2602083614209565b9150613aed82614958565b602082019050919050565b6000613b05602c83614209565b9150613b1082614981565b604082019050919050565b6000613b28602083614209565b9150613b33826149d0565b602082019050919050565b6000613b4b602983614209565b9150613b56826149f9565b604082019050919050565b6000613b6e602583614209565b9150613b7982614a48565b604082019050919050565b6000613b91602f83614209565b9150613b9c82614a97565b604082019050919050565b6000613bb4602183614209565b9150613bbf82614ae6565b604082019050919050565b6000613bd7603483614209565b9150613be282614b35565b604082019050919050565b6000613bfa601f83614209565b9150613c0582614b84565b602082019050919050565b6000613c1d603183614209565b9150613c2882614bad565b604082019050919050565b6000613c40601383614209565b9150613c4b82614bfc565b602082019050919050565b6000613c63602c83614209565b9150613c6e82614c25565b604082019050919050565b6000613c86602483614209565b9150613c9182614c74565b604082019050919050565b6000613ca9601883614209565b9150613cb482614cc3565b602082019050919050565b613cc8816143a4565b82525050565b613cd7816143a4565b82525050565b6000613ce98285613900565b9150613cf58284613900565b91508190509392505050565b6000602082019050613d166000830184613812565b92915050565b6000608082019050613d316000830187613812565b613d3e6020830186613812565b613d4b6040830185613cce565b8181036060830152613d5d818461388e565b905095945050505050565b60006020820190508181036000830152613d828184613821565b905092915050565b6000602082019050613d9f600083018461387f565b92915050565b60006020820190508181036000830152613dbf81846138c7565b905092915050565b60006020820190508181036000830152613de081613931565b9050919050565b60006020820190508181036000830152613e0081613954565b9050919050565b60006020820190508181036000830152613e2081613977565b9050919050565b60006020820190508181036000830152613e408161399a565b9050919050565b60006020820190508181036000830152613e60816139bd565b9050919050565b60006020820190508181036000830152613e80816139e0565b9050919050565b60006020820190508181036000830152613ea081613a03565b9050919050565b60006020820190508181036000830152613ec081613a26565b9050919050565b60006020820190508181036000830152613ee081613a49565b9050919050565b60006020820190508181036000830152613f0081613a6c565b9050919050565b60006020820190508181036000830152613f2081613a8f565b9050919050565b60006020820190508181036000830152613f4081613ab2565b9050919050565b60006020820190508181036000830152613f6081613ad5565b9050919050565b60006020820190508181036000830152613f8081613af8565b9050919050565b60006020820190508181036000830152613fa081613b1b565b9050919050565b60006020820190508181036000830152613fc081613b3e565b9050919050565b60006020820190508181036000830152613fe081613b61565b9050919050565b6000602082019050818103600083015261400081613b84565b9050919050565b6000602082019050818103600083015261402081613ba7565b9050919050565b6000602082019050818103600083015261404081613bca565b9050919050565b6000602082019050818103600083015261406081613bed565b9050919050565b6000602082019050818103600083015261408081613c10565b9050919050565b600060208201905081810360008301526140a081613c33565b9050919050565b600060208201905081810360008301526140c081613c56565b9050919050565b600060208201905081810360008301526140e081613c79565b9050919050565b6000602082019050818103600083015261410081613c9c565b9050919050565b600060208201905061411c6000830184613cce565b92915050565b600061412c61413d565b90506141388282614422565b919050565b6000604051905090565b600067ffffffffffffffff821115614162576141616145b8565b5b61416b82614605565b9050602081019050919050565b600067ffffffffffffffff821115614193576141926145b8565b5b61419c82614605565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614230826143a4565b915061423b836143a4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142705761426f6144cd565b5b828201905092915050565b6000614286826143a4565b9150614291836143a4565b9250826142a1576142a06144fc565b5b828204905092915050565b60006142b7826143a4565b91506142c2836143a4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142fb576142fa6144cd565b5b828202905092915050565b6000614311826143a4565b915061431c836143a4565b92508282101561432f5761432e6144cd565b5b828203905092915050565b600061434582614384565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143db5780820151818401526020810190506143c0565b838111156143ea576000848401525b50505050565b6000600282049050600182168061440857607f821691505b6020821081141561441c5761441b61452b565b5b50919050565b61442b82614605565b810181811067ffffffffffffffff8211171561444a576144496145b8565b5b80604052505050565b600061445e826143a4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614491576144906144cd565b5b600182019050919050565b60006144a7826143a4565b91506144b2836143a4565b9250826144c2576144c16144fc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5472616e73616374696f6e20776f756c6420657863656564206d61782073757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5075626c69632073616c65206973206e6f7420617661696c61626c6500000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f596f75206d7573742070726f76696465206174206c65617374206f6e6520616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e6e6f74206d696e74206d6f726520746f6b656e73207468616e60008201527f2074686520616d6f756e74207265736572766564000000000000000000000000602082015250565b7f56616c7565206f66207472616e73616374696f6e20697320746f6f206c6f7700600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f596f752063616e6e6f74206d696e74206d6f7265207468616e2031303020746f60008201527f6b656e7300000000000000000000000000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f7420617661696c61626c650000000000000000600082015250565b614cf58161433a565b8114614d0057600080fd5b50565b614d0c8161434c565b8114614d1757600080fd5b50565b614d2381614358565b8114614d2e57600080fd5b50565b614d3a816143a4565b8114614d4557600080fd5b5056fea26469706673582212201b5284ae3351d17ff00af2e0a6f6e0849e674a797e632a82871856a4be821abc64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f7777772e746865616476656e74757265736f6662656c6c61746865626c7565626f742e73747564696f2f0000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://www.theadventuresofbellathebluebot.studio/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [2] : 68747470733a2f2f7777772e746865616476656e74757265736f6662656c6c61
Arg [3] : 746865626c7565626f742e73747564696f2f0000000000000000000000000000


Deployed Bytecode Sourcemap

49756:4785:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38925:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26367:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27926:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27449:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39565:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28676:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39233:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54415:121;;;:::i;:::-;;29086:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53628:359;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54106:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39755:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49873:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53995:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52886:734;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54309:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26061:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25791:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4921:103;;;;;;;;;;;;;:::i;:::-;;51056:537;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4270:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26536:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50824:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28219:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50597:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50436:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29342:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49995:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54205:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51601:588;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26711:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50119:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28445:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5179:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52197:681;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50040:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38925:224;39027:4;39066:35;39051:50;;;:11;:50;;;;:90;;;;39105:36;39129:11;39105:23;:36::i;:::-;39051:90;39044:97;;38925:224;;;:::o;26367:100::-;26421:13;26454:5;26447:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26367:100;:::o;27926:221::-;28002:7;28030:16;28038:7;28030;:16::i;:::-;28022:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28115:15;:24;28131:7;28115:24;;;;;;;;;;;;;;;;;;;;;28108:31;;27926:221;;;:::o;27449:411::-;27530:13;27546:23;27561:7;27546:14;:23::i;:::-;27530:39;;27594:5;27588:11;;:2;:11;;;;27580:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27688:5;27672:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27697:37;27714:5;27721:12;:10;:12::i;:::-;27697:16;:37::i;:::-;27672:62;27650:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27831:21;27840:2;27844:7;27831:8;:21::i;:::-;27519:341;27449:411;;:::o;39565:113::-;39626:7;39653:10;:17;;;;39646:24;;39565:113;:::o;28676:339::-;28871:41;28890:12;:10;:12::i;:::-;28904:7;28871:18;:41::i;:::-;28863:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28979:28;28989:4;28995:2;28999:7;28979:9;:28::i;:::-;28676:339;;;:::o;39233:256::-;39330:7;39366:23;39383:5;39366:16;:23::i;:::-;39358:5;:31;39350:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39455:12;:19;39468:5;39455:19;;;;;;;;;;;;;;;:26;39475:5;39455:26;;;;;;;;;;;;39448:33;;39233:256;;;;:::o;54415:121::-;4501:12;:10;:12::i;:::-;4490:23;;:7;:5;:7::i;:::-;:23;;;4482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54488:10:::1;54480:24;;:47;54505:21;54480:47;;;;;;;;;;;;;;;;;;;;;;;54472:56;;;::::0;::::1;;54415:121::o:0;29086:185::-;29224:39;29241:4;29247:2;29251:7;29224:39;;;;;;;;;;;;:16;:39::i;:::-;29086:185;;;:::o;53628:359::-;53688:16;53716:23;53742:17;53752:6;53742:9;:17::i;:::-;53716:43;;53770:25;53812:15;53798:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53770:58;;53843:9;53839:115;53862:15;53858:1;:19;53839:115;;;53912:30;53932:6;53940:1;53912:19;:30::i;:::-;53898:8;53907:1;53898:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;53879:3;;;;;:::i;:::-;;;;53839:115;;;;53971:8;53964:15;;;;53628:359;;;:::o;54106:87::-;4501:12;:10;:12::i;:::-;4490:23;;:7;:5;:7::i;:::-;:23;;;4482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54177:8:::1;54170:4;:15;;;;54106:87:::0;:::o;39755:233::-;39830:7;39866:30;:28;:30::i;:::-;39858:5;:38;39850:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;39963:10;39974:5;39963:17;;;;;;;;:::i;:::-;;;;;;;;;;39956:24;;39755:233;;;:::o;49873:33::-;;;;;;;;;;;;;:::o;53995:103::-;4501:12;:10;:12::i;:::-;4490:23;;:7;:5;:7::i;:::-;:23;;;4482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54079:11:::1;54069:7;:21;;;;;;;;;;;;:::i;:::-;;53995:103:::0;:::o;52886:734::-;52959:14;52976:13;:11;:13::i;:::-;52959:30;;53018:16;;;;;;;;;;;53010:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;53102:9;53088:23;;:10;:23;;;53080:32;;;;;;53147:1;53133:11;:15;:36;;;;;53167:2;53152:11;:17;;53133:36;53125:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53236:9;53221:11;53214:4;;:18;;;;:::i;:::-;:31;;53206:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;53339:3;53324:11;53300:21;53310:10;53300:9;:21::i;:::-;:35;;;;:::i;:::-;:42;;53292:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;50155:5;53422:11;53411:8;;53402:6;:17;;;;:::i;:::-;:31;;;;:::i;:::-;:44;;53394:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;53512:9;53524:1;53512:13;;53507:102;53532:11;53527:1;:16;53507:102;;53564:33;53574:10;53595:1;53586:6;:10;;;;:::i;:::-;53564:9;:33::i;:::-;53545:3;;;;;:::i;:::-;;;;53507:102;;;;52948:672;52886:734;:::o;54309:98::-;4501:12;:10;:12::i;:::-;4490:23;;:7;:5;:7::i;:::-;:23;;;4482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54393:6:::1;54374:16;;:25;;;;;;;;;;;;;;;;;;54309:98:::0;:::o;26061:239::-;26133:7;26153:13;26169:7;:16;26177:7;26169:16;;;;;;;;;;;;;;;;;;;;;26153:32;;26221:1;26204:19;;:5;:19;;;;26196:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26287:5;26280:12;;;26061:239;;;:::o;25791:208::-;25863:7;25908:1;25891:19;;:5;:19;;;;25883:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25975:9;:16;25985:5;25975:16;;;;;;;;;;;;;;;;25968:23;;25791:208;;;:::o;4921:103::-;4501:12;:10;:12::i;:::-;4490:23;;:7;:5;:7::i;:::-;:23;;;4482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4986:30:::1;5013:1;4986:18;:30::i;:::-;4921:103::o:0;51056:537::-;4501:12;:10;:12::i;:::-;4490:23;;:7;:5;:7::i;:::-;:23;;;4482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51141:14:::1;51158:13;:11;:13::i;:::-;51141:30;;51214:1;51200:11;:15;51192:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;50155:5;51267:11;51258:6;:20;;;;:::i;:::-;:33;;51250:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;51376:1;51361:11;51350:8;;:22;;;;:::i;:::-;:27;;51342:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;51467:11;51455:8;;:23;;;;;;;:::i;:::-;;;;;;;;51496:9;51508:1;51496:13;;51491:95;51516:11;51511:1;:16;51491:95;;51548:26;51558:3;51572:1;51563:6;:10;;;;:::i;:::-;51548:9;:26::i;:::-;51529:3;;;;;:::i;:::-;;;;51491:95;;;;51130:463;51056:537:::0;;:::o;4270:87::-;4316:7;4343:6;;;;;;;;;;;4336:13;;4270:87;:::o;26536:104::-;26592:13;26625:7;26618:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26536:104;:::o;50824:220::-;4501:12;:10;:12::i;:::-;4490:23;;:7;:5;:7::i;:::-;:23;;;4482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50916:9:::1;50912:125;50935:10;;:17;;50931:1;:21;50912:125;;;51024:1;50973:33;:48;51007:10;;51018:1;51007:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;50973:48;;;;;;;;;;;;;;;:52;;;;50954:3;;;;;:::i;:::-;;;;50912:125;;;;50824:220:::0;;:::o;28219:155::-;28314:52;28333:12;:10;:12::i;:::-;28347:8;28357;28314:18;:52::i;:::-;28219:155;;:::o;50597:215::-;4501:12;:10;:12::i;:::-;4490:23;;:7;:5;:7::i;:::-;:23;;;4482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50684:9:::1;50680:125;50703:10;;:17;;50699:1;:21;50680:125;;;50792:1;50741:33;:48;50775:10;;50786:1;50775:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;50741:48;;;;;;;;;;;;;;;:52;;;;50722:3;;;;;:::i;:::-;;;;50680:125;;;;50597:215:::0;;:::o;50436:149::-;50508:7;50534:33;:43;50568:8;50534:43;;;;;;;;;;;;;;;;50527:50;;50436:149;;;:::o;29342:328::-;29517:41;29536:12;:10;:12::i;:::-;29550:7;29517:18;:41::i;:::-;29509:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29623:39;29637:4;29643:2;29647:7;29656:5;29623:13;:39::i;:::-;29342:328;;;;:::o;49995:36::-;;;;;;;;;;;;;:::o;54205:92::-;4501:12;:10;:12::i;:::-;4490:23;;:7;:5;:7::i;:::-;:23;;;4482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54283:6:::1;54267:13;;:22;;;;;;;;;;;;;;;;;;54205:92:::0;:::o;51601:588::-;4501:12;:10;:12::i;:::-;4490:23;;:7;:5;:7::i;:::-;:23;;;4482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51682:14:::1;51699:13;:11;:13::i;:::-;51682:30;;51761:1;51741:10;;:17;;:21;51733:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;50155:5;51832:10;;:17;;51823:6;:26;;;;:::i;:::-;:39;;51815:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;51953:1;51932:10;;:17;;51921:8;;:28;;;;:::i;:::-;:33;;51913:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;52036:10;;:17;;52024:8;;:29;;;;;;;:::i;:::-;;;;;;;;52070:9;52082:1;52070:13;;52066:114;52090:10;;:17;;52085:1;:22;52066:114;;52128:40;52138:10;;52153:1;52149;:5;;;;:::i;:::-;52138:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;52166:1;52157:6;:10;;;;:::i;:::-;52128:9;:40::i;:::-;52109:3;;;;;:::i;:::-;;;;52066:114;;;;51671:518;51601:588:::0;;:::o;26711:334::-;26784:13;26818:16;26826:7;26818;:16::i;:::-;26810:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26899:21;26923:10;:8;:10::i;:::-;26899:34;;26975:1;26957:7;26951:21;:25;:86;;;;;;;;;;;;;;;;;27003:7;27012:18;:7;:16;:18::i;:::-;26986:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26951:86;26944:93;;;26711:334;;;:::o;50119:41::-;50155:5;50119:41;:::o;28445:164::-;28542:4;28566:18;:25;28585:5;28566:25;;;;;;;;;;;;;;;:35;28592:8;28566:35;;;;;;;;;;;;;;;;;;;;;;;;;28559:42;;28445:164;;;;:::o;5179:201::-;4501:12;:10;:12::i;:::-;4490:23;;:7;:5;:7::i;:::-;:23;;;4482:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5288:1:::1;5268:22;;:8;:22;;;;5260:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5344:28;5363:8;5344:18;:28::i;:::-;5179:201:::0;:::o;52197:681::-;52267:14;52284:13;:11;:13::i;:::-;52267:30;;52326:13;;;;;;;;;;;52318:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;52403:1;52389:11;:15;:79;;;;;52423:33;:45;52457:10;52423:45;;;;;;;;;;;;;;;;52408:11;:60;;52389:79;52381:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;52535:9;52520:11;52513:4;;:18;;;;:::i;:::-;:31;;52505:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;50155:5;52619:11;52608:8;;52599:6;:17;;;;:::i;:::-;:31;;;;:::i;:::-;:44;;52591:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;52745:11;52696:33;:45;52730:10;52696:45;;;;;;;;;;;;;;;;:60;;;;;;;:::i;:::-;;;;;;;;52774:9;52786:1;52774:13;;52769:102;52794:11;52789:1;:16;52769:102;;52826:33;52836:10;52857:1;52848:6;:10;;;;:::i;:::-;52826:9;:33::i;:::-;52807:3;;;;;:::i;:::-;;;;52769:102;;;;52256:622;52197:681;:::o;50040:29::-;;;;:::o;25422:305::-;25524:4;25576:25;25561:40;;;:11;:40;;;;:105;;;;25633:33;25618:48;;;:11;:48;;;;25561:105;:158;;;;25683:36;25707:11;25683:23;:36::i;:::-;25561:158;25541:178;;25422:305;;;:::o;31180:127::-;31245:4;31297:1;31269:30;;:7;:16;31277:7;31269:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31262:37;;31180:127;;;:::o;2942:98::-;2995:7;3022:10;3015:17;;2942:98;:::o;35162:174::-;35264:2;35237:15;:24;35253:7;35237:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35320:7;35316:2;35282:46;;35291:23;35306:7;35291:14;:23::i;:::-;35282:46;;;;;;;;;;;;35162:174;;:::o;31474:348::-;31567:4;31592:16;31600:7;31592;:16::i;:::-;31584:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31668:13;31684:23;31699:7;31684:14;:23::i;:::-;31668:39;;31737:5;31726:16;;:7;:16;;;:51;;;;31770:7;31746:31;;:20;31758:7;31746:11;:20::i;:::-;:31;;;31726:51;:87;;;;31781:32;31798:5;31805:7;31781:16;:32::i;:::-;31726:87;31718:96;;;31474:348;;;;:::o;34466:578::-;34625:4;34598:31;;:23;34613:7;34598:14;:23::i;:::-;:31;;;34590:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34708:1;34694:16;;:2;:16;;;;34686:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34764:39;34785:4;34791:2;34795:7;34764:20;:39::i;:::-;34868:29;34885:1;34889:7;34868:8;:29::i;:::-;34929:1;34910:9;:15;34920:4;34910:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34958:1;34941:9;:13;34951:2;34941:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34989:2;34970:7;:16;34978:7;34970:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35028:7;35024:2;35009:27;;35018:4;35009:27;;;;;;;;;;;;34466:578;;;:::o;32164:110::-;32240:26;32250:2;32254:7;32240:26;;;;;;;;;;;;:9;:26::i;:::-;32164:110;;:::o;5540:191::-;5614:16;5633:6;;;;;;;;;;;5614:25;;5659:8;5650:6;;:17;;;;;;;;;;;;;;;;;;5714:8;5683:40;;5704:8;5683:40;;;;;;;;;;;;5603:128;5540:191;:::o;35478:315::-;35633:8;35624:17;;:5;:17;;;;35616:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35720:8;35682:18;:25;35701:5;35682:25;;;;;;;;;;;;;;;:35;35708:8;35682:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35766:8;35744:41;;35759:5;35744:41;;;35776:8;35744:41;;;;;;:::i;:::-;;;;;;;;35478:315;;;:::o;30552:::-;30709:28;30719:4;30725:2;30729:7;30709:9;:28::i;:::-;30756:48;30779:4;30785:2;30789:7;30798:5;30756:22;:48::i;:::-;30748:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30552:315;;;;:::o;50321:107::-;50381:13;50413:7;50406:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50321:107;:::o;452:723::-;508:13;738:1;729:5;:10;725:53;;;756:10;;;;;;;;;;;;;;;;;;;;;725:53;788:12;803:5;788:20;;819:14;844:78;859:1;851:4;:9;844:78;;877:8;;;;;:::i;:::-;;;;908:2;900:10;;;;;:::i;:::-;;;844:78;;;932:19;964:6;954:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;932:39;;982:154;998:1;989:5;:10;982:154;;1026:1;1016:11;;;;;:::i;:::-;;;1093:2;1085:5;:10;;;;:::i;:::-;1072:2;:24;;;;:::i;:::-;1059:39;;1042:6;1049;1042:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1122:2;1113:11;;;;;:::i;:::-;;;982:154;;;1160:6;1146:21;;;;;452:723;;;;:::o;16910:157::-;16995:4;17034:25;17019:40;;;:11;:40;;;;17012:47;;16910:157;;;:::o;40601:589::-;40745:45;40772:4;40778:2;40782:7;40745:26;:45::i;:::-;40823:1;40807:18;;:4;:18;;;40803:187;;;40842:40;40874:7;40842:31;:40::i;:::-;40803:187;;;40912:2;40904:10;;:4;:10;;;40900:90;;40931:47;40964:4;40970:7;40931:32;:47::i;:::-;40900:90;40803:187;41018:1;41004:16;;:2;:16;;;41000:183;;;41037:45;41074:7;41037:36;:45::i;:::-;41000:183;;;41110:4;41104:10;;:2;:10;;;41100:83;;41131:40;41159:2;41163:7;41131:27;:40::i;:::-;41100:83;41000:183;40601:589;;;:::o;32501:321::-;32631:18;32637:2;32641:7;32631:5;:18::i;:::-;32682:54;32713:1;32717:2;32721:7;32730:5;32682:22;:54::i;:::-;32660:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32501:321;;;:::o;36358:799::-;36513:4;36534:15;:2;:13;;;:15::i;:::-;36530:620;;;36586:2;36570:36;;;36607:12;:10;:12::i;:::-;36621:4;36627:7;36636:5;36570:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36566:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36829:1;36812:6;:13;:18;36808:272;;;36855:60;;;;;;;;;;:::i;:::-;;;;;;;;36808:272;37030:6;37024:13;37015:6;37011:2;37007:15;37000:38;36566:529;36703:41;;;36693:51;;;:6;:51;;;;36686:58;;;;;36530:620;37134:4;37127:11;;36358:799;;;;;;;:::o;37729:126::-;;;;:::o;41913:164::-;42017:10;:17;;;;41990:15;:24;42006:7;41990:24;;;;;;;;;;;:44;;;;42045:10;42061:7;42045:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41913:164;:::o;42704:988::-;42970:22;43020:1;42995:22;43012:4;42995:16;:22::i;:::-;:26;;;;:::i;:::-;42970:51;;43032:18;43053:17;:26;43071:7;43053:26;;;;;;;;;;;;43032:47;;43200:14;43186:10;:28;43182:328;;43231:19;43253:12;:18;43266:4;43253:18;;;;;;;;;;;;;;;:34;43272:14;43253:34;;;;;;;;;;;;43231:56;;43337:11;43304:12;:18;43317:4;43304:18;;;;;;;;;;;;;;;:30;43323:10;43304:30;;;;;;;;;;;:44;;;;43454:10;43421:17;:30;43439:11;43421:30;;;;;;;;;;;:43;;;;43216:294;43182:328;43606:17;:26;43624:7;43606:26;;;;;;;;;;;43599:33;;;43650:12;:18;43663:4;43650:18;;;;;;;;;;;;;;;:34;43669:14;43650:34;;;;;;;;;;;43643:41;;;42785:907;;42704:988;;:::o;43987:1079::-;44240:22;44285:1;44265:10;:17;;;;:21;;;;:::i;:::-;44240:46;;44297:18;44318:15;:24;44334:7;44318:24;;;;;;;;;;;;44297:45;;44669:19;44691:10;44702:14;44691:26;;;;;;;;:::i;:::-;;;;;;;;;;44669:48;;44755:11;44730:10;44741;44730:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;44866:10;44835:15;:28;44851:11;44835:28;;;;;;;;;;;:41;;;;45007:15;:24;45023:7;45007:24;;;;;;;;;;;45000:31;;;45042:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44058:1008;;;43987:1079;:::o;41491:221::-;41576:14;41593:20;41610:2;41593:16;:20::i;:::-;41576:37;;41651:7;41624:12;:16;41637:2;41624:16;;;;;;;;;;;;;;;:24;41641:6;41624:24;;;;;;;;;;;:34;;;;41698:6;41669:17;:26;41687:7;41669:26;;;;;;;;;;;:35;;;;41565:147;41491:221;;:::o;33158:382::-;33252:1;33238:16;;:2;:16;;;;33230:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33311:16;33319:7;33311;:16::i;:::-;33310:17;33302:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33373:45;33402:1;33406:2;33410:7;33373:20;:45::i;:::-;33448:1;33431:9;:13;33441:2;33431:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33479:2;33460:7;:16;33468:7;33460:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33524:7;33520:2;33499:33;;33516:1;33499:33;;;;;;;;;;;;33158:382;;:::o;6610:387::-;6670:4;6878:12;6945:7;6933:20;6925:28;;6988:1;6981:4;:8;6974:15;;;6610:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:179::-;8712:10;8733:46;8775:3;8767:6;8733:46;:::i;:::-;8811:4;8806:3;8802:14;8788:28;;8643:179;;;;:::o;8828:118::-;8915:24;8933:5;8915:24;:::i;:::-;8910:3;8903:37;8828:118;;:::o;8982:732::-;9101:3;9130:54;9178:5;9130:54;:::i;:::-;9200:86;9279:6;9274:3;9200:86;:::i;:::-;9193:93;;9310:56;9360:5;9310:56;:::i;:::-;9389:7;9420:1;9405:284;9430:6;9427:1;9424:13;9405:284;;;9506:6;9500:13;9533:63;9592:3;9577:13;9533:63;:::i;:::-;9526:70;;9619:60;9672:6;9619:60;:::i;:::-;9609:70;;9465:224;9452:1;9449;9445:9;9440:14;;9405:284;;;9409:14;9705:3;9698:10;;9106:608;;;8982:732;;;;:::o;9720:109::-;9801:21;9816:5;9801:21;:::i;:::-;9796:3;9789:34;9720:109;;:::o;9835:360::-;9921:3;9949:38;9981:5;9949:38;:::i;:::-;10003:70;10066:6;10061:3;10003:70;:::i;:::-;9996:77;;10082:52;10127:6;10122:3;10115:4;10108:5;10104:16;10082:52;:::i;:::-;10159:29;10181:6;10159:29;:::i;:::-;10154:3;10150:39;10143:46;;9925:270;9835:360;;;;:::o;10201:364::-;10289:3;10317:39;10350:5;10317:39;:::i;:::-;10372:71;10436:6;10431:3;10372:71;:::i;:::-;10365:78;;10452:52;10497:6;10492:3;10485:4;10478:5;10474:16;10452:52;:::i;:::-;10529:29;10551:6;10529:29;:::i;:::-;10524:3;10520:39;10513:46;;10293:272;10201:364;;;;:::o;10571:377::-;10677:3;10705:39;10738:5;10705:39;:::i;:::-;10760:89;10842:6;10837:3;10760:89;:::i;:::-;10753:96;;10858:52;10903:6;10898:3;10891:4;10884:5;10880:16;10858:52;:::i;:::-;10935:6;10930:3;10926:16;10919:23;;10681:267;10571:377;;;;:::o;10954:366::-;11096:3;11117:67;11181:2;11176:3;11117:67;:::i;:::-;11110:74;;11193:93;11282:3;11193:93;:::i;:::-;11311:2;11306:3;11302:12;11295:19;;10954:366;;;:::o;11326:::-;11468:3;11489:67;11553:2;11548:3;11489:67;:::i;:::-;11482:74;;11565:93;11654:3;11565:93;:::i;:::-;11683:2;11678:3;11674:12;11667:19;;11326:366;;;:::o;11698:::-;11840:3;11861:67;11925:2;11920:3;11861:67;:::i;:::-;11854:74;;11937:93;12026:3;11937:93;:::i;:::-;12055:2;12050:3;12046:12;12039:19;;11698:366;;;:::o;12070:::-;12212:3;12233:67;12297:2;12292:3;12233:67;:::i;:::-;12226:74;;12309:93;12398:3;12309:93;:::i;:::-;12427:2;12422:3;12418:12;12411:19;;12070:366;;;:::o;12442:::-;12584:3;12605:67;12669:2;12664:3;12605:67;:::i;:::-;12598:74;;12681:93;12770:3;12681:93;:::i;:::-;12799:2;12794:3;12790:12;12783:19;;12442:366;;;:::o;12814:::-;12956:3;12977:67;13041:2;13036:3;12977:67;:::i;:::-;12970:74;;13053:93;13142:3;13053:93;:::i;:::-;13171:2;13166:3;13162:12;13155:19;;12814:366;;;:::o;13186:::-;13328:3;13349:67;13413:2;13408:3;13349:67;:::i;:::-;13342:74;;13425:93;13514:3;13425:93;:::i;:::-;13543:2;13538:3;13534:12;13527:19;;13186:366;;;:::o;13558:::-;13700:3;13721:67;13785:2;13780:3;13721:67;:::i;:::-;13714:74;;13797:93;13886:3;13797:93;:::i;:::-;13915:2;13910:3;13906:12;13899:19;;13558:366;;;:::o;13930:::-;14072:3;14093:67;14157:2;14152:3;14093:67;:::i;:::-;14086:74;;14169:93;14258:3;14169:93;:::i;:::-;14287:2;14282:3;14278:12;14271:19;;13930:366;;;:::o;14302:::-;14444:3;14465:67;14529:2;14524:3;14465:67;:::i;:::-;14458:74;;14541:93;14630:3;14541:93;:::i;:::-;14659:2;14654:3;14650:12;14643:19;;14302:366;;;:::o;14674:::-;14816:3;14837:67;14901:2;14896:3;14837:67;:::i;:::-;14830:74;;14913:93;15002:3;14913:93;:::i;:::-;15031:2;15026:3;15022:12;15015:19;;14674:366;;;:::o;15046:::-;15188:3;15209:67;15273:2;15268:3;15209:67;:::i;:::-;15202:74;;15285:93;15374:3;15285:93;:::i;:::-;15403:2;15398:3;15394:12;15387:19;;15046:366;;;:::o;15418:::-;15560:3;15581:67;15645:2;15640:3;15581:67;:::i;:::-;15574:74;;15657:93;15746:3;15657:93;:::i;:::-;15775:2;15770:3;15766:12;15759:19;;15418:366;;;:::o;15790:::-;15932:3;15953:67;16017:2;16012:3;15953:67;:::i;:::-;15946:74;;16029:93;16118:3;16029:93;:::i;:::-;16147:2;16142:3;16138:12;16131:19;;15790:366;;;:::o;16162:::-;16304:3;16325:67;16389:2;16384:3;16325:67;:::i;:::-;16318:74;;16401:93;16490:3;16401:93;:::i;:::-;16519:2;16514:3;16510:12;16503:19;;16162:366;;;:::o;16534:::-;16676:3;16697:67;16761:2;16756:3;16697:67;:::i;:::-;16690:74;;16773:93;16862:3;16773:93;:::i;:::-;16891:2;16886:3;16882:12;16875:19;;16534:366;;;:::o;16906:::-;17048:3;17069:67;17133:2;17128:3;17069:67;:::i;:::-;17062:74;;17145:93;17234:3;17145:93;:::i;:::-;17263:2;17258:3;17254:12;17247:19;;16906:366;;;:::o;17278:::-;17420:3;17441:67;17505:2;17500:3;17441:67;:::i;:::-;17434:74;;17517:93;17606:3;17517:93;:::i;:::-;17635:2;17630:3;17626:12;17619:19;;17278:366;;;:::o;17650:::-;17792:3;17813:67;17877:2;17872:3;17813:67;:::i;:::-;17806:74;;17889:93;17978:3;17889:93;:::i;:::-;18007:2;18002:3;17998:12;17991:19;;17650:366;;;:::o;18022:::-;18164:3;18185:67;18249:2;18244:3;18185:67;:::i;:::-;18178:74;;18261:93;18350:3;18261:93;:::i;:::-;18379:2;18374:3;18370:12;18363:19;;18022:366;;;:::o;18394:::-;18536:3;18557:67;18621:2;18616:3;18557:67;:::i;:::-;18550:74;;18633:93;18722:3;18633:93;:::i;:::-;18751:2;18746:3;18742:12;18735:19;;18394:366;;;:::o;18766:::-;18908:3;18929:67;18993:2;18988:3;18929:67;:::i;:::-;18922:74;;19005:93;19094:3;19005:93;:::i;:::-;19123:2;19118:3;19114:12;19107:19;;18766:366;;;:::o;19138:::-;19280:3;19301:67;19365:2;19360:3;19301:67;:::i;:::-;19294:74;;19377:93;19466:3;19377:93;:::i;:::-;19495:2;19490:3;19486:12;19479:19;;19138:366;;;:::o;19510:::-;19652:3;19673:67;19737:2;19732:3;19673:67;:::i;:::-;19666:74;;19749:93;19838:3;19749:93;:::i;:::-;19867:2;19862:3;19858:12;19851:19;;19510:366;;;:::o;19882:::-;20024:3;20045:67;20109:2;20104:3;20045:67;:::i;:::-;20038:74;;20121:93;20210:3;20121:93;:::i;:::-;20239:2;20234:3;20230:12;20223:19;;19882:366;;;:::o;20254:::-;20396:3;20417:67;20481:2;20476:3;20417:67;:::i;:::-;20410:74;;20493:93;20582:3;20493:93;:::i;:::-;20611:2;20606:3;20602:12;20595:19;;20254:366;;;:::o;20626:108::-;20703:24;20721:5;20703:24;:::i;:::-;20698:3;20691:37;20626:108;;:::o;20740:118::-;20827:24;20845:5;20827:24;:::i;:::-;20822:3;20815:37;20740:118;;:::o;20864:435::-;21044:3;21066:95;21157:3;21148:6;21066:95;:::i;:::-;21059:102;;21178:95;21269:3;21260:6;21178:95;:::i;:::-;21171:102;;21290:3;21283:10;;20864:435;;;;;:::o;21305:222::-;21398:4;21436:2;21425:9;21421:18;21413:26;;21449:71;21517:1;21506:9;21502:17;21493:6;21449:71;:::i;:::-;21305:222;;;;:::o;21533:640::-;21728:4;21766:3;21755:9;21751:19;21743:27;;21780:71;21848:1;21837:9;21833:17;21824:6;21780:71;:::i;:::-;21861:72;21929:2;21918:9;21914:18;21905:6;21861:72;:::i;:::-;21943;22011:2;22000:9;21996:18;21987:6;21943:72;:::i;:::-;22062:9;22056:4;22052:20;22047:2;22036:9;22032:18;22025:48;22090:76;22161:4;22152:6;22090:76;:::i;:::-;22082:84;;21533:640;;;;;;;:::o;22179:373::-;22322:4;22360:2;22349:9;22345:18;22337:26;;22409:9;22403:4;22399:20;22395:1;22384:9;22380:17;22373:47;22437:108;22540:4;22531:6;22437:108;:::i;:::-;22429:116;;22179:373;;;;:::o;22558:210::-;22645:4;22683:2;22672:9;22668:18;22660:26;;22696:65;22758:1;22747:9;22743:17;22734:6;22696:65;:::i;:::-;22558:210;;;;:::o;22774:313::-;22887:4;22925:2;22914:9;22910:18;22902:26;;22974:9;22968:4;22964:20;22960:1;22949:9;22945:17;22938:47;23002:78;23075:4;23066:6;23002:78;:::i;:::-;22994:86;;22774:313;;;;:::o;23093:419::-;23259:4;23297:2;23286:9;23282:18;23274:26;;23346:9;23340:4;23336:20;23332:1;23321:9;23317:17;23310:47;23374:131;23500:4;23374:131;:::i;:::-;23366:139;;23093:419;;;:::o;23518:::-;23684:4;23722:2;23711:9;23707:18;23699:26;;23771:9;23765:4;23761:20;23757:1;23746:9;23742:17;23735:47;23799:131;23925:4;23799:131;:::i;:::-;23791:139;;23518:419;;;:::o;23943:::-;24109:4;24147:2;24136:9;24132:18;24124:26;;24196:9;24190:4;24186:20;24182:1;24171:9;24167:17;24160:47;24224:131;24350:4;24224:131;:::i;:::-;24216:139;;23943:419;;;:::o;24368:::-;24534:4;24572:2;24561:9;24557:18;24549:26;;24621:9;24615:4;24611:20;24607:1;24596:9;24592:17;24585:47;24649:131;24775:4;24649:131;:::i;:::-;24641:139;;24368:419;;;:::o;24793:::-;24959:4;24997:2;24986:9;24982:18;24974:26;;25046:9;25040:4;25036:20;25032:1;25021:9;25017:17;25010:47;25074:131;25200:4;25074:131;:::i;:::-;25066:139;;24793:419;;;:::o;25218:::-;25384:4;25422:2;25411:9;25407:18;25399:26;;25471:9;25465:4;25461:20;25457:1;25446:9;25442:17;25435:47;25499:131;25625:4;25499:131;:::i;:::-;25491:139;;25218:419;;;:::o;25643:::-;25809:4;25847:2;25836:9;25832:18;25824:26;;25896:9;25890:4;25886:20;25882:1;25871:9;25867:17;25860:47;25924:131;26050:4;25924:131;:::i;:::-;25916:139;;25643:419;;;:::o;26068:::-;26234:4;26272:2;26261:9;26257:18;26249:26;;26321:9;26315:4;26311:20;26307:1;26296:9;26292:17;26285:47;26349:131;26475:4;26349:131;:::i;:::-;26341:139;;26068:419;;;:::o;26493:::-;26659:4;26697:2;26686:9;26682:18;26674:26;;26746:9;26740:4;26736:20;26732:1;26721:9;26717:17;26710:47;26774:131;26900:4;26774:131;:::i;:::-;26766:139;;26493:419;;;:::o;26918:::-;27084:4;27122:2;27111:9;27107:18;27099:26;;27171:9;27165:4;27161:20;27157:1;27146:9;27142:17;27135:47;27199:131;27325:4;27199:131;:::i;:::-;27191:139;;26918:419;;;:::o;27343:::-;27509:4;27547:2;27536:9;27532:18;27524:26;;27596:9;27590:4;27586:20;27582:1;27571:9;27567:17;27560:47;27624:131;27750:4;27624:131;:::i;:::-;27616:139;;27343:419;;;:::o;27768:::-;27934:4;27972:2;27961:9;27957:18;27949:26;;28021:9;28015:4;28011:20;28007:1;27996:9;27992:17;27985:47;28049:131;28175:4;28049:131;:::i;:::-;28041:139;;27768:419;;;:::o;28193:::-;28359:4;28397:2;28386:9;28382:18;28374:26;;28446:9;28440:4;28436:20;28432:1;28421:9;28417:17;28410:47;28474:131;28600:4;28474:131;:::i;:::-;28466:139;;28193:419;;;:::o;28618:::-;28784:4;28822:2;28811:9;28807:18;28799:26;;28871:9;28865:4;28861:20;28857:1;28846:9;28842:17;28835:47;28899:131;29025:4;28899:131;:::i;:::-;28891:139;;28618:419;;;:::o;29043:::-;29209:4;29247:2;29236:9;29232:18;29224:26;;29296:9;29290:4;29286:20;29282:1;29271:9;29267:17;29260:47;29324:131;29450:4;29324:131;:::i;:::-;29316:139;;29043:419;;;:::o;29468:::-;29634:4;29672:2;29661:9;29657:18;29649:26;;29721:9;29715:4;29711:20;29707:1;29696:9;29692:17;29685:47;29749:131;29875:4;29749:131;:::i;:::-;29741:139;;29468:419;;;:::o;29893:::-;30059:4;30097:2;30086:9;30082:18;30074:26;;30146:9;30140:4;30136:20;30132:1;30121:9;30117:17;30110:47;30174:131;30300:4;30174:131;:::i;:::-;30166:139;;29893:419;;;:::o;30318:::-;30484:4;30522:2;30511:9;30507:18;30499:26;;30571:9;30565:4;30561:20;30557:1;30546:9;30542:17;30535:47;30599:131;30725:4;30599:131;:::i;:::-;30591:139;;30318:419;;;:::o;30743:::-;30909:4;30947:2;30936:9;30932:18;30924:26;;30996:9;30990:4;30986:20;30982:1;30971:9;30967:17;30960:47;31024:131;31150:4;31024:131;:::i;:::-;31016:139;;30743:419;;;:::o;31168:::-;31334:4;31372:2;31361:9;31357:18;31349:26;;31421:9;31415:4;31411:20;31407:1;31396:9;31392:17;31385:47;31449:131;31575:4;31449:131;:::i;:::-;31441:139;;31168:419;;;:::o;31593:::-;31759:4;31797:2;31786:9;31782:18;31774:26;;31846:9;31840:4;31836:20;31832:1;31821:9;31817:17;31810:47;31874:131;32000:4;31874:131;:::i;:::-;31866:139;;31593:419;;;:::o;32018:::-;32184:4;32222:2;32211:9;32207:18;32199:26;;32271:9;32265:4;32261:20;32257:1;32246:9;32242:17;32235:47;32299:131;32425:4;32299:131;:::i;:::-;32291:139;;32018:419;;;:::o;32443:::-;32609:4;32647:2;32636:9;32632:18;32624:26;;32696:9;32690:4;32686:20;32682:1;32671:9;32667:17;32660:47;32724:131;32850:4;32724:131;:::i;:::-;32716:139;;32443:419;;;:::o;32868:::-;33034:4;33072:2;33061:9;33057:18;33049:26;;33121:9;33115:4;33111:20;33107:1;33096:9;33092:17;33085:47;33149:131;33275:4;33149:131;:::i;:::-;33141:139;;32868:419;;;:::o;33293:::-;33459:4;33497:2;33486:9;33482:18;33474:26;;33546:9;33540:4;33536:20;33532:1;33521:9;33517:17;33510:47;33574:131;33700:4;33574:131;:::i;:::-;33566:139;;33293:419;;;:::o;33718:::-;33884:4;33922:2;33911:9;33907:18;33899:26;;33971:9;33965:4;33961:20;33957:1;33946:9;33942:17;33935:47;33999:131;34125:4;33999:131;:::i;:::-;33991:139;;33718:419;;;:::o;34143:222::-;34236:4;34274:2;34263:9;34259:18;34251:26;;34287:71;34355:1;34344:9;34340:17;34331:6;34287:71;:::i;:::-;34143:222;;;;:::o;34371:129::-;34405:6;34432:20;;:::i;:::-;34422:30;;34461:33;34489:4;34481:6;34461:33;:::i;:::-;34371:129;;;:::o;34506:75::-;34539:6;34572:2;34566:9;34556:19;;34506:75;:::o;34587:307::-;34648:4;34738:18;34730:6;34727:30;34724:56;;;34760:18;;:::i;:::-;34724:56;34798:29;34820:6;34798:29;:::i;:::-;34790:37;;34882:4;34876;34872:15;34864:23;;34587:307;;;:::o;34900:308::-;34962:4;35052:18;35044:6;35041:30;35038:56;;;35074:18;;:::i;:::-;35038:56;35112:29;35134:6;35112:29;:::i;:::-;35104:37;;35196:4;35190;35186:15;35178:23;;34900:308;;;:::o;35214:132::-;35281:4;35304:3;35296:11;;35334:4;35329:3;35325:14;35317:22;;35214:132;;;:::o;35352:114::-;35419:6;35453:5;35447:12;35437:22;;35352:114;;;:::o;35472:98::-;35523:6;35557:5;35551:12;35541:22;;35472:98;;;:::o;35576:99::-;35628:6;35662:5;35656:12;35646:22;;35576:99;;;:::o;35681:113::-;35751:4;35783;35778:3;35774:14;35766:22;;35681:113;;;:::o;35800:184::-;35899:11;35933:6;35928:3;35921:19;35973:4;35968:3;35964:14;35949:29;;35800:184;;;;:::o;35990:168::-;36073:11;36107:6;36102:3;36095:19;36147:4;36142:3;36138:14;36123:29;;35990:168;;;;:::o;36164:169::-;36248:11;36282:6;36277:3;36270:19;36322:4;36317:3;36313:14;36298:29;;36164:169;;;;:::o;36339:148::-;36441:11;36478:3;36463:18;;36339:148;;;;:::o;36493:305::-;36533:3;36552:20;36570:1;36552:20;:::i;:::-;36547:25;;36586:20;36604:1;36586:20;:::i;:::-;36581:25;;36740:1;36672:66;36668:74;36665:1;36662:81;36659:107;;;36746:18;;:::i;:::-;36659:107;36790:1;36787;36783:9;36776:16;;36493:305;;;;:::o;36804:185::-;36844:1;36861:20;36879:1;36861:20;:::i;:::-;36856:25;;36895:20;36913:1;36895:20;:::i;:::-;36890:25;;36934:1;36924:35;;36939:18;;:::i;:::-;36924:35;36981:1;36978;36974:9;36969:14;;36804:185;;;;:::o;36995:348::-;37035:7;37058:20;37076:1;37058:20;:::i;:::-;37053:25;;37092:20;37110:1;37092:20;:::i;:::-;37087:25;;37280:1;37212:66;37208:74;37205:1;37202:81;37197:1;37190:9;37183:17;37179:105;37176:131;;;37287:18;;:::i;:::-;37176:131;37335:1;37332;37328:9;37317:20;;36995:348;;;;:::o;37349:191::-;37389:4;37409:20;37427:1;37409:20;:::i;:::-;37404:25;;37443:20;37461:1;37443:20;:::i;:::-;37438:25;;37482:1;37479;37476:8;37473:34;;;37487:18;;:::i;:::-;37473:34;37532:1;37529;37525:9;37517:17;;37349:191;;;;:::o;37546:96::-;37583:7;37612:24;37630:5;37612:24;:::i;:::-;37601:35;;37546:96;;;:::o;37648:90::-;37682:7;37725:5;37718:13;37711:21;37700:32;;37648:90;;;:::o;37744:149::-;37780:7;37820:66;37813:5;37809:78;37798:89;;37744:149;;;:::o;37899:126::-;37936:7;37976:42;37969:5;37965:54;37954:65;;37899:126;;;:::o;38031:77::-;38068:7;38097:5;38086:16;;38031:77;;;:::o;38114:154::-;38198:6;38193:3;38188;38175:30;38260:1;38251:6;38246:3;38242:16;38235:27;38114:154;;;:::o;38274:307::-;38342:1;38352:113;38366:6;38363:1;38360:13;38352:113;;;38451:1;38446:3;38442:11;38436:18;38432:1;38427:3;38423:11;38416:39;38388:2;38385:1;38381:10;38376:15;;38352:113;;;38483:6;38480:1;38477:13;38474:101;;;38563:1;38554:6;38549:3;38545:16;38538:27;38474:101;38323:258;38274:307;;;:::o;38587:320::-;38631:6;38668:1;38662:4;38658:12;38648:22;;38715:1;38709:4;38705:12;38736:18;38726:81;;38792:4;38784:6;38780:17;38770:27;;38726:81;38854:2;38846:6;38843:14;38823:18;38820:38;38817:84;;;38873:18;;:::i;:::-;38817:84;38638:269;38587:320;;;:::o;38913:281::-;38996:27;39018:4;38996:27;:::i;:::-;38988:6;38984:40;39126:6;39114:10;39111:22;39090:18;39078:10;39075:34;39072:62;39069:88;;;39137:18;;:::i;:::-;39069:88;39177:10;39173:2;39166:22;38956:238;38913:281;;:::o;39200:233::-;39239:3;39262:24;39280:5;39262:24;:::i;:::-;39253:33;;39308:66;39301:5;39298:77;39295:103;;;39378:18;;:::i;:::-;39295:103;39425:1;39418:5;39414:13;39407:20;;39200:233;;;:::o;39439:176::-;39471:1;39488:20;39506:1;39488:20;:::i;:::-;39483:25;;39522:20;39540:1;39522:20;:::i;:::-;39517:25;;39561:1;39551:35;;39566:18;;:::i;:::-;39551:35;39607:1;39604;39600:9;39595:14;;39439:176;;;;:::o;39621:180::-;39669:77;39666:1;39659:88;39766:4;39763:1;39756:15;39790:4;39787:1;39780:15;39807:180;39855:77;39852:1;39845:88;39952:4;39949:1;39942:15;39976:4;39973:1;39966:15;39993:180;40041:77;40038:1;40031:88;40138:4;40135:1;40128:15;40162:4;40159:1;40152:15;40179:180;40227:77;40224:1;40217:88;40324:4;40321:1;40314:15;40348:4;40345:1;40338:15;40365:180;40413:77;40410:1;40403:88;40510:4;40507:1;40500:15;40534:4;40531:1;40524:15;40551:180;40599:77;40596:1;40589:88;40696:4;40693:1;40686:15;40720:4;40717:1;40710:15;40737:117;40846:1;40843;40836:12;40860:117;40969:1;40966;40959:12;40983:117;41092:1;41089;41082:12;41106:117;41215:1;41212;41205:12;41229:117;41338:1;41335;41328:12;41352:117;41461:1;41458;41451:12;41475:102;41516:6;41567:2;41563:7;41558:2;41551:5;41547:14;41543:28;41533:38;;41475:102;;;:::o;41583:230::-;41723:34;41719:1;41711:6;41707:14;41700:58;41792:13;41787:2;41779:6;41775:15;41768:38;41583:230;:::o;41819:237::-;41959:34;41955:1;41947:6;41943:14;41936:58;42028:20;42023:2;42015:6;42011:15;42004:45;41819:237;:::o;42062:225::-;42202:34;42198:1;42190:6;42186:14;42179:58;42271:8;42266:2;42258:6;42254:15;42247:33;42062:225;:::o;42293:178::-;42433:30;42429:1;42421:6;42417:14;42410:54;42293:178;:::o;42477:222::-;42617:34;42613:1;42605:6;42601:14;42594:58;42686:5;42681:2;42673:6;42669:15;42662:30;42477:222;:::o;42705:223::-;42845:34;42841:1;42833:6;42829:14;42822:58;42914:6;42909:2;42901:6;42897:15;42890:31;42705:223;:::o;42934:175::-;43074:27;43070:1;43062:6;43058:14;43051:51;42934:175;:::o;43115:178::-;43255:30;43251:1;43243:6;43239:14;43232:54;43115:178;:::o;43299:231::-;43439:34;43435:1;43427:6;43423:14;43416:58;43508:14;43503:2;43495:6;43491:15;43484:39;43299:231;:::o;43536:243::-;43676:34;43672:1;43664:6;43660:14;43653:58;43745:26;43740:2;43732:6;43728:15;43721:51;43536:243;:::o;43785:229::-;43925:34;43921:1;43913:6;43909:14;43902:58;43994:12;43989:2;43981:6;43977:15;43970:37;43785:229;:::o;44020:228::-;44160:34;44156:1;44148:6;44144:14;44137:58;44229:11;44224:2;44216:6;44212:15;44205:36;44020:228;:::o;44254:182::-;44394:34;44390:1;44382:6;44378:14;44371:58;44254:182;:::o;44442:231::-;44582:34;44578:1;44570:6;44566:14;44559:58;44651:14;44646:2;44638:6;44634:15;44627:39;44442:231;:::o;44679:182::-;44819:34;44815:1;44807:6;44803:14;44796:58;44679:182;:::o;44867:228::-;45007:34;45003:1;44995:6;44991:14;44984:58;45076:11;45071:2;45063:6;45059:15;45052:36;44867:228;:::o;45101:224::-;45241:34;45237:1;45229:6;45225:14;45218:58;45310:7;45305:2;45297:6;45293:15;45286:32;45101:224;:::o;45331:234::-;45471:34;45467:1;45459:6;45455:14;45448:58;45540:17;45535:2;45527:6;45523:15;45516:42;45331:234;:::o;45571:220::-;45711:34;45707:1;45699:6;45695:14;45688:58;45780:3;45775:2;45767:6;45763:15;45756:28;45571:220;:::o;45797:239::-;45937:34;45933:1;45925:6;45921:14;45914:58;46006:22;46001:2;45993:6;45989:15;45982:47;45797:239;:::o;46042:181::-;46182:33;46178:1;46170:6;46166:14;46159:57;46042:181;:::o;46229:236::-;46369:34;46365:1;46357:6;46353:14;46346:58;46438:19;46433:2;46425:6;46421:15;46414:44;46229:236;:::o;46471:169::-;46611:21;46607:1;46599:6;46595:14;46588:45;46471:169;:::o;46646:231::-;46786:34;46782:1;46774:6;46770:14;46763:58;46855:14;46850:2;46842:6;46838:15;46831:39;46646:231;:::o;46883:223::-;47023:34;47019:1;47011:6;47007:14;47000:58;47092:6;47087:2;47079:6;47075:15;47068:31;46883:223;:::o;47112:174::-;47252:26;47248:1;47240:6;47236:14;47229:50;47112:174;:::o;47292:122::-;47365:24;47383:5;47365:24;:::i;:::-;47358:5;47355:35;47345:63;;47404:1;47401;47394:12;47345:63;47292:122;:::o;47420:116::-;47490:21;47505:5;47490:21;:::i;:::-;47483:5;47480:32;47470:60;;47526:1;47523;47516:12;47470:60;47420:116;:::o;47542:120::-;47614:23;47631:5;47614:23;:::i;:::-;47607:5;47604:34;47594:62;;47652:1;47649;47642:12;47594:62;47542:120;:::o;47668:122::-;47741:24;47759:5;47741:24;:::i;:::-;47734:5;47731:35;47721:63;;47780:1;47777;47770:12;47721:63;47668:122;:::o

Swarm Source

ipfs://1b5284ae3351d17ff00af2e0a6f6e0849e674a797e632a82871856a4be821abc
Loading...
Loading
Loading...
Loading
[ 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.