ETH Price: $3,258.19 (+2.29%)
Gas: 1 Gwei

Token

Campfire Bear Club (CBC)
 

Overview

Max Total Supply

814 CBC

Holders

355

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
jbondwagon.eth
Balance
1 CBC
0x9dfd400201b905dc343cf0eaae5f68f4da342b60
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CampfireBearClub

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-27
*/

// Sources flattened with hardhat v2.4.3 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/math/[email protected]

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// File contracts/CBC.sol

pragma solidity ^0.8.0;

/**
 *
_________                        _____.__                 __________                      _________ .__       ___.    
\_   ___ \_____    _____ _______/ ____\__|______   ____   \______   \ ____ _____ _______  \_   ___ \|  |  __ _\_ |__  
/    \  \/\__  \  /     \\____ \   __\|  \_  __ \_/ __ \   |    |  _// __ \\__  \\_  __ \ /    \  \/|  | |  |  \ __ \ 
\     \____/ __ \|  Y Y  \  |_> >  |  |  ||  | \/\  ___/   |    |   \  ___/ / __ \|  | \/ \     \___|  |_|  |  / \_\ \
 \______  (____  /__|_|  /   __/|__|  |__||__|    \___  >  |______  /\___  >____  /__|     \______  /____/____/|___  /
        \/     \/      \/|__|                         \/          \/     \/     \/                \/               \/ 
 *
 * @author Smokey Bear
 * Mint a campfire bear.
 *
 */
contract CampfireBearClub is ERC721Enumerable, Ownable {
  using SafeMath for uint256;

  // Each bear costs 0.08 ETH to mint.
  uint256 public constant price = 0.08 ether;

  // Only 10 bears can be purchased in a single transaction.
  uint256 public constant maxPurchase = 10;

  // There will only be 10000 bears available.
  uint256 public constant maxBears = 10000;

  // 2000 bears are available during presale.
  uint256 public constant bearPresale = 2000;

  // Presale price is 0.04 ETH to mint.
  uint256 public constant presalePrice = 0.04 ether;

  // Flag to make the sale active or disabled.
  bool public saleIsActive = false;

  // Flag to make the presale active or disabled.
  bool public presaleIsActive = false;

  // Base URI for the metadata.
  string public uri = "";

  constructor() ERC721("Campfire Bear Club", "CBC") {}

  function flipSaleState() public onlyOwner {
    saleIsActive = !saleIsActive;
  }

  function flipPresaleState() public onlyOwner {
    presaleIsActive = !presaleIsActive;
  }

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

  function setBaseURI(string memory _uri) public onlyOwner {
    uri = _uri;
  }

  function withdraw() public onlyOwner {
    uint balance = address(this).balance;
    payable(msg.sender).transfer(balance);
  }

  function reserveBears() public onlyOwner {
    uint supply = totalSupply();
    uint i;
    for (i = 0; i < 35; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }

  function mint(uint numberOfBears) public payable {
    require(presaleIsActive || saleIsActive, "One of the sales must be active");
    require(numberOfBears <= maxPurchase, "Can only mint up to 10 bears at once");

    if (presaleIsActive) {
      require(totalSupply().add(numberOfBears) <= bearPresale, "Purchase would exceed max supply of bears");
      require(presalePrice.mul(numberOfBears) <= msg.value, "Ether value sent is not correct");

      for(uint i = 0; i < numberOfBears; i++) {
        uint mintIndex = totalSupply();
        if (totalSupply() < bearPresale) {
          _safeMint(msg.sender, mintIndex);
        }
      }
    } else {
      require(totalSupply().add(numberOfBears) <= maxBears, "Purchase would exceed max supply of bears");
      require(price.mul(numberOfBears) <= msg.value, "Ether value sent is not correct");

      for(uint i = 0; i < numberOfBears; i++) {
        uint mintIndex = totalSupply();
        if (totalSupply() < maxBears) {
          _safeMint(msg.sender, mintIndex);
        }
      }
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bearPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBears","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfBears","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveBears","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","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":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60146101000a81548160ff0219169083151502179055506000600a60156101000a81548160ff02191690831515021790555060405180602001604052806000815250600b90805190602001906200006192919062000204565b503480156200006f57600080fd5b506040518060400160405280601281526020017f43616d7066697265204265617220436c756200000000000000000000000000008152506040518060400160405280600381526020017f43424300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f492919062000204565b5080600190805190602001906200010d92919062000204565b50505062000130620001246200013660201b60201c565b6200013e60201b60201c565b62000319565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021290620002b4565b90600052602060002090601f01602090048101928262000236576000855562000282565b82601f106200025157805160ff191683800117855562000282565b8280016001018555821562000282579182015b828111156200028157825182559160200191906001019062000264565b5b50905062000291919062000295565b5090565b5b80821115620002b057600081600090555060010162000296565b5090565b60006002820490506001821680620002cd57607f821691505b60208210811415620002e457620002e3620002ea565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61420980620003296000396000f3fe6080604052600436106101ed5760003560e01c806370a082311161010d578063a2b3f330116100a0578063e985e9c51161006f578063e985e9c5146106b9578063eac989f8146106f6578063eb8d244414610721578063f2fde38b1461074c578063f81227d414610775576101ed565b8063a2b3f33014610611578063b88d4fde1461063c578063bdc7ebc714610665578063c87b56dd1461067c576101ed565b8063977b055b116100dc578063977b055b14610576578063a035b1fe146105a1578063a0712d68146105cc578063a22cb465146105e8576101ed565b806370a08231146104cc578063715018a6146105095780638da5cb5b1461052057806395d89b411461054b576101ed565b806330f72cd41161018557806342842e0e1161015457806342842e0e146104005780634f6ccce71461042957806355f804b3146104665780636352211e1461048f576101ed565b806330f72cd41461037c57806334918dfd146103a75780633b224832146103be5780633ccfd60b146103e9576101ed565b8063095ea7b3116101c1578063095ea7b3146102c257806318160ddd146102eb57806323b872dd146103165780632f745c591461033f576101ed565b80620e7fa8146101f257806301ffc9a71461021d57806306fdde031461025a578063081812fc14610285575b600080fd5b3480156101fe57600080fd5b5061020761078c565b6040516102149190613737565b60405180910390f35b34801561022957600080fd5b50610244600480360381019061023f9190612f21565b610797565b604051610251919061343a565b60405180910390f35b34801561026657600080fd5b5061026f610811565b60405161027c9190613455565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a79190612fb4565b6108a3565b6040516102b991906133d3565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e49190612ee5565b610928565b005b3480156102f757600080fd5b50610300610a40565b60405161030d9190613737565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190612ddf565b610a4d565b005b34801561034b57600080fd5b5061036660048036038101906103619190612ee5565b610aad565b6040516103739190613737565b60405180910390f35b34801561038857600080fd5b50610391610b52565b60405161039e919061343a565b60405180910390f35b3480156103b357600080fd5b506103bc610b65565b005b3480156103ca57600080fd5b506103d3610c0d565b6040516103e09190613737565b60405180910390f35b3480156103f557600080fd5b506103fe610c13565b005b34801561040c57600080fd5b5061042760048036038101906104229190612ddf565b610cde565b005b34801561043557600080fd5b50610450600480360381019061044b9190612fb4565b610cfe565b60405161045d9190613737565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190612f73565b610d95565b005b34801561049b57600080fd5b506104b660048036038101906104b19190612fb4565b610e2b565b6040516104c391906133d3565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190612d7a565b610edd565b6040516105009190613737565b60405180910390f35b34801561051557600080fd5b5061051e610f95565b005b34801561052c57600080fd5b5061053561101d565b60405161054291906133d3565b60405180910390f35b34801561055757600080fd5b50610560611047565b60405161056d9190613455565b60405180910390f35b34801561058257600080fd5b5061058b6110d9565b6040516105989190613737565b60405180910390f35b3480156105ad57600080fd5b506105b66110de565b6040516105c39190613737565b60405180910390f35b6105e660048036038101906105e19190612fb4565b6110ea565b005b3480156105f457600080fd5b5061060f600480360381019061060a9190612ea9565b6113b7565b005b34801561061d57600080fd5b50610626611538565b6040516106339190613737565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190612e2e565b61153e565b005b34801561067157600080fd5b5061067a6115a0565b005b34801561068857600080fd5b506106a3600480360381019061069e9190612fb4565b611660565b6040516106b09190613455565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db9190612da3565b611707565b6040516106ed919061343a565b60405180910390f35b34801561070257600080fd5b5061070b61179b565b6040516107189190613455565b60405180910390f35b34801561072d57600080fd5b50610736611829565b604051610743919061343a565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e9190612d7a565b61183c565b005b34801561078157600080fd5b5061078a611934565b005b668e1bc9bf04000081565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080a5750610809826119dc565b5b9050919050565b606060008054610820906139e7565b80601f016020809104026020016040519081016040528092919081815260200182805461084c906139e7565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b5050505050905090565b60006108ae82611abe565b6108ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e490613617565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093382610e2b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099b906136b7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109c3611b2a565b73ffffffffffffffffffffffffffffffffffffffff1614806109f257506109f1816109ec611b2a565b611707565b5b610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2890613597565b60405180910390fd5b610a3b8383611b32565b505050565b6000600880549050905090565b610a5e610a58611b2a565b82611beb565b610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a94906136d7565b60405180910390fd5b610aa8838383611cc9565b505050565b6000610ab883610edd565b8210610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090613477565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600a60159054906101000a900460ff1681565b610b6d611b2a565b73ffffffffffffffffffffffffffffffffffffffff16610b8b61101d565b73ffffffffffffffffffffffffffffffffffffffff1614610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890613637565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b6107d081565b610c1b611b2a565b73ffffffffffffffffffffffffffffffffffffffff16610c3961101d565b73ffffffffffffffffffffffffffffffffffffffff1614610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8690613637565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cda573d6000803e3d6000fd5b5050565b610cf98383836040518060200160405280600081525061153e565b505050565b6000610d08610a40565b8210610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613717565b60405180910390fd5b60088281548110610d83577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610d9d611b2a565b73ffffffffffffffffffffffffffffffffffffffff16610dbb61101d565b73ffffffffffffffffffffffffffffffffffffffff1614610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613637565b60405180910390fd5b80600b9080519060200190610e27929190612b9e565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb906135d7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f45906135b7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f9d611b2a565b73ffffffffffffffffffffffffffffffffffffffff16610fbb61101d565b73ffffffffffffffffffffffffffffffffffffffff1614611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100890613637565b60405180910390fd5b61101b6000611f25565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611056906139e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611082906139e7565b80156110cf5780601f106110a4576101008083540402835291602001916110cf565b820191906000526020600020905b8154815290600101906020018083116110b257829003601f168201915b5050505050905090565b600a81565b67011c37937e08000081565b600a60159054906101000a900460ff16806111115750600a60149054906101000a900460ff165b611150576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611147906136f7565b60405180910390fd5b600a811115611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b90613697565b60405180910390fd5b600a60159054906101000a900460ff16156112b0576107d06111c6826111b8610a40565b611feb90919063ffffffff16565b1115611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe906134d7565b60405180910390fd5b3461122282668e1bc9bf04000061200190919063ffffffff16565b1115611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90613557565b60405180910390fd5b60005b818110156112aa576000611278610a40565b90506107d0611285610a40565b1015611296576112953382612017565b5b5080806112a290613a4a565b915050611266565b506113b4565b6127106112cd826112bf610a40565b611feb90919063ffffffff16565b111561130e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611305906134d7565b60405180910390fd5b3461132a8267011c37937e08000061200190919063ffffffff16565b111561136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290613557565b60405180910390fd5b60005b818110156113b2576000611380610a40565b905061271061138d610a40565b101561139e5761139d3382612017565b5b5080806113aa90613a4a565b91505061136e565b505b50565b6113bf611b2a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142490613537565b60405180910390fd5b806005600061143a611b2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114e7611b2a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161152c919061343a565b60405180910390a35050565b61271081565b61154f611549611b2a565b83611beb565b61158e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611585906136d7565b60405180910390fd5b61159a84848484612035565b50505050565b6115a8611b2a565b73ffffffffffffffffffffffffffffffffffffffff166115c661101d565b73ffffffffffffffffffffffffffffffffffffffff161461161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613637565b60405180910390fd5b6000611626610a40565b905060005b602381101561165c57611649338284611644919061381c565b612017565b808061165490613a4a565b91505061162b565b5050565b606061166b82611abe565b6116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613677565b60405180910390fd5b60006116b4612091565b905060008151116116d457604051806020016040528060008152506116ff565b806116de84612123565b6040516020016116ef9291906133af565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b80546117a8906139e7565b80601f01602080910402602001604051908101604052809291908181526020018280546117d4906139e7565b80156118215780601f106117f657610100808354040283529160200191611821565b820191906000526020600020905b81548152906001019060200180831161180457829003601f168201915b505050505081565b600a60149054906101000a900460ff1681565b611844611b2a565b73ffffffffffffffffffffffffffffffffffffffff1661186261101d565b73ffffffffffffffffffffffffffffffffffffffff16146118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90613637565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f906134b7565b60405180910390fd5b61193181611f25565b50565b61193c611b2a565b73ffffffffffffffffffffffffffffffffffffffff1661195a61101d565b73ffffffffffffffffffffffffffffffffffffffff16146119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a790613637565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611aa757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ab75750611ab6826122d0565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ba583610e2b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bf682611abe565b611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90613577565b60405180910390fd5b6000611c4083610e2b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611caf57508373ffffffffffffffffffffffffffffffffffffffff16611c97846108a3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cc05750611cbf8185611707565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ce982610e2b565b73ffffffffffffffffffffffffffffffffffffffff1614611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690613657565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690613517565b60405180910390fd5b611dba83838361233a565b611dc5600082611b32565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e1591906138fd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e6c919061381c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611ff9919061381c565b905092915050565b6000818361200f91906138a3565b905092915050565b61203182826040518060200160405280600081525061244e565b5050565b612040848484611cc9565b61204c848484846124a9565b61208b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208290613497565b60405180910390fd5b50505050565b6060600b80546120a0906139e7565b80601f01602080910402602001604051908101604052809291908181526020018280546120cc906139e7565b80156121195780601f106120ee57610100808354040283529160200191612119565b820191906000526020600020905b8154815290600101906020018083116120fc57829003601f168201915b5050505050905090565b6060600082141561216b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122cb565b600082905060005b6000821461219d57808061218690613a4a565b915050600a826121969190613872565b9150612173565b60008167ffffffffffffffff8111156121df577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122115781602001600182028036833780820191505090505b5090505b600085146122c45760018261222a91906138fd565b9150600a856122399190613a93565b6030612245919061381c565b60f81b818381518110612281577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122bd9190613872565b9450612215565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612345838383612640565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123885761238381612645565b6123c7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123c6576123c5838261268e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561240a57612405816127fb565b612449565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461244857612447828261293e565b5b5b505050565b61245883836129bd565b61246560008484846124a9565b6124a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249b90613497565b60405180910390fd5b505050565b60006124ca8473ffffffffffffffffffffffffffffffffffffffff16612b8b565b15612633578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124f3611b2a565b8786866040518563ffffffff1660e01b815260040161251594939291906133ee565b602060405180830381600087803b15801561252f57600080fd5b505af192505050801561256057506040513d601f19601f8201168201806040525081019061255d9190612f4a565b60015b6125e3573d8060008114612590576040519150601f19603f3d011682016040523d82523d6000602084013e612595565b606091505b506000815114156125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d290613497565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612638565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161269b84610edd565b6126a591906138fd565b905060006007600084815260200190815260200160002054905081811461278a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061280f91906138fd565b9050600060096000848152602001908152602001600020549050600060088381548110612865577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106128ad577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612922577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061294983610edd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a24906135f7565b60405180910390fd5b612a3681611abe565b15612a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6d906134f7565b60405180910390fd5b612a826000838361233a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ad2919061381c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612baa906139e7565b90600052602060002090601f016020900481019282612bcc5760008555612c13565b82601f10612be557805160ff1916838001178555612c13565b82800160010185558215612c13579182015b82811115612c12578251825591602001919060010190612bf7565b5b509050612c209190612c24565b5090565b5b80821115612c3d576000816000905550600101612c25565b5090565b6000612c54612c4f84613777565b613752565b905082815260208101848484011115612c6c57600080fd5b612c778482856139a5565b509392505050565b6000612c92612c8d846137a8565b613752565b905082815260208101848484011115612caa57600080fd5b612cb58482856139a5565b509392505050565b600081359050612ccc81614177565b92915050565b600081359050612ce18161418e565b92915050565b600081359050612cf6816141a5565b92915050565b600081519050612d0b816141a5565b92915050565b600082601f830112612d2257600080fd5b8135612d32848260208601612c41565b91505092915050565b600082601f830112612d4c57600080fd5b8135612d5c848260208601612c7f565b91505092915050565b600081359050612d74816141bc565b92915050565b600060208284031215612d8c57600080fd5b6000612d9a84828501612cbd565b91505092915050565b60008060408385031215612db657600080fd5b6000612dc485828601612cbd565b9250506020612dd585828601612cbd565b9150509250929050565b600080600060608486031215612df457600080fd5b6000612e0286828701612cbd565b9350506020612e1386828701612cbd565b9250506040612e2486828701612d65565b9150509250925092565b60008060008060808587031215612e4457600080fd5b6000612e5287828801612cbd565b9450506020612e6387828801612cbd565b9350506040612e7487828801612d65565b925050606085013567ffffffffffffffff811115612e9157600080fd5b612e9d87828801612d11565b91505092959194509250565b60008060408385031215612ebc57600080fd5b6000612eca85828601612cbd565b9250506020612edb85828601612cd2565b9150509250929050565b60008060408385031215612ef857600080fd5b6000612f0685828601612cbd565b9250506020612f1785828601612d65565b9150509250929050565b600060208284031215612f3357600080fd5b6000612f4184828501612ce7565b91505092915050565b600060208284031215612f5c57600080fd5b6000612f6a84828501612cfc565b91505092915050565b600060208284031215612f8557600080fd5b600082013567ffffffffffffffff811115612f9f57600080fd5b612fab84828501612d3b565b91505092915050565b600060208284031215612fc657600080fd5b6000612fd484828501612d65565b91505092915050565b612fe681613931565b82525050565b612ff581613943565b82525050565b6000613006826137d9565b61301081856137ef565b93506130208185602086016139b4565b61302981613b80565b840191505092915050565b600061303f826137e4565b6130498185613800565b93506130598185602086016139b4565b61306281613b80565b840191505092915050565b6000613078826137e4565b6130828185613811565b93506130928185602086016139b4565b80840191505092915050565b60006130ab602b83613800565b91506130b682613b91565b604082019050919050565b60006130ce603283613800565b91506130d982613be0565b604082019050919050565b60006130f1602683613800565b91506130fc82613c2f565b604082019050919050565b6000613114602983613800565b915061311f82613c7e565b604082019050919050565b6000613137601c83613800565b915061314282613ccd565b602082019050919050565b600061315a602483613800565b915061316582613cf6565b604082019050919050565b600061317d601983613800565b915061318882613d45565b602082019050919050565b60006131a0601f83613800565b91506131ab82613d6e565b602082019050919050565b60006131c3602c83613800565b91506131ce82613d97565b604082019050919050565b60006131e6603883613800565b91506131f182613de6565b604082019050919050565b6000613209602a83613800565b915061321482613e35565b604082019050919050565b600061322c602983613800565b915061323782613e84565b604082019050919050565b600061324f602083613800565b915061325a82613ed3565b602082019050919050565b6000613272602c83613800565b915061327d82613efc565b604082019050919050565b6000613295602083613800565b91506132a082613f4b565b602082019050919050565b60006132b8602983613800565b91506132c382613f74565b604082019050919050565b60006132db602f83613800565b91506132e682613fc3565b604082019050919050565b60006132fe602483613800565b915061330982614012565b604082019050919050565b6000613321602183613800565b915061332c82614061565b604082019050919050565b6000613344603183613800565b915061334f826140b0565b604082019050919050565b6000613367601f83613800565b9150613372826140ff565b602082019050919050565b600061338a602c83613800565b915061339582614128565b604082019050919050565b6133a98161399b565b82525050565b60006133bb828561306d565b91506133c7828461306d565b91508190509392505050565b60006020820190506133e86000830184612fdd565b92915050565b60006080820190506134036000830187612fdd565b6134106020830186612fdd565b61341d60408301856133a0565b818103606083015261342f8184612ffb565b905095945050505050565b600060208201905061344f6000830184612fec565b92915050565b6000602082019050818103600083015261346f8184613034565b905092915050565b600060208201905081810360008301526134908161309e565b9050919050565b600060208201905081810360008301526134b0816130c1565b9050919050565b600060208201905081810360008301526134d0816130e4565b9050919050565b600060208201905081810360008301526134f081613107565b9050919050565b600060208201905081810360008301526135108161312a565b9050919050565b600060208201905081810360008301526135308161314d565b9050919050565b6000602082019050818103600083015261355081613170565b9050919050565b6000602082019050818103600083015261357081613193565b9050919050565b60006020820190508181036000830152613590816131b6565b9050919050565b600060208201905081810360008301526135b0816131d9565b9050919050565b600060208201905081810360008301526135d0816131fc565b9050919050565b600060208201905081810360008301526135f08161321f565b9050919050565b6000602082019050818103600083015261361081613242565b9050919050565b6000602082019050818103600083015261363081613265565b9050919050565b6000602082019050818103600083015261365081613288565b9050919050565b60006020820190508181036000830152613670816132ab565b9050919050565b60006020820190508181036000830152613690816132ce565b9050919050565b600060208201905081810360008301526136b0816132f1565b9050919050565b600060208201905081810360008301526136d081613314565b9050919050565b600060208201905081810360008301526136f081613337565b9050919050565b600060208201905081810360008301526137108161335a565b9050919050565b600060208201905081810360008301526137308161337d565b9050919050565b600060208201905061374c60008301846133a0565b92915050565b600061375c61376d565b90506137688282613a19565b919050565b6000604051905090565b600067ffffffffffffffff82111561379257613791613b51565b5b61379b82613b80565b9050602081019050919050565b600067ffffffffffffffff8211156137c3576137c2613b51565b5b6137cc82613b80565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138278261399b565b91506138328361399b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561386757613866613ac4565b5b828201905092915050565b600061387d8261399b565b91506138888361399b565b92508261389857613897613af3565b5b828204905092915050565b60006138ae8261399b565b91506138b98361399b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138f2576138f1613ac4565b5b828202905092915050565b60006139088261399b565b91506139138361399b565b92508282101561392657613925613ac4565b5b828203905092915050565b600061393c8261397b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139d25780820151818401526020810190506139b7565b838111156139e1576000848401525b50505050565b600060028204905060018216806139ff57607f821691505b60208210811415613a1357613a12613b22565b5b50919050565b613a2282613b80565b810181811067ffffffffffffffff82111715613a4157613a40613b51565b5b80604052505050565b6000613a558261399b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a8857613a87613ac4565b5b600182019050919050565b6000613a9e8261399b565b9150613aa98361399b565b925082613ab957613ab8613af3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662062656172730000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420757020746f2031302062656172732061742060008201527f6f6e636500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4f6e65206f66207468652073616c6573206d7573742062652061637469766500600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61418081613931565b811461418b57600080fd5b50565b61419781613943565b81146141a257600080fd5b50565b6141ae8161394f565b81146141b957600080fd5b50565b6141c58161399b565b81146141d057600080fd5b5056fea2646970667358221220768d701dfa2173b5d543baea96004cf92604b5870b63242828db6b6ac5d510c564736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101ed5760003560e01c806370a082311161010d578063a2b3f330116100a0578063e985e9c51161006f578063e985e9c5146106b9578063eac989f8146106f6578063eb8d244414610721578063f2fde38b1461074c578063f81227d414610775576101ed565b8063a2b3f33014610611578063b88d4fde1461063c578063bdc7ebc714610665578063c87b56dd1461067c576101ed565b8063977b055b116100dc578063977b055b14610576578063a035b1fe146105a1578063a0712d68146105cc578063a22cb465146105e8576101ed565b806370a08231146104cc578063715018a6146105095780638da5cb5b1461052057806395d89b411461054b576101ed565b806330f72cd41161018557806342842e0e1161015457806342842e0e146104005780634f6ccce71461042957806355f804b3146104665780636352211e1461048f576101ed565b806330f72cd41461037c57806334918dfd146103a75780633b224832146103be5780633ccfd60b146103e9576101ed565b8063095ea7b3116101c1578063095ea7b3146102c257806318160ddd146102eb57806323b872dd146103165780632f745c591461033f576101ed565b80620e7fa8146101f257806301ffc9a71461021d57806306fdde031461025a578063081812fc14610285575b600080fd5b3480156101fe57600080fd5b5061020761078c565b6040516102149190613737565b60405180910390f35b34801561022957600080fd5b50610244600480360381019061023f9190612f21565b610797565b604051610251919061343a565b60405180910390f35b34801561026657600080fd5b5061026f610811565b60405161027c9190613455565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a79190612fb4565b6108a3565b6040516102b991906133d3565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e49190612ee5565b610928565b005b3480156102f757600080fd5b50610300610a40565b60405161030d9190613737565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190612ddf565b610a4d565b005b34801561034b57600080fd5b5061036660048036038101906103619190612ee5565b610aad565b6040516103739190613737565b60405180910390f35b34801561038857600080fd5b50610391610b52565b60405161039e919061343a565b60405180910390f35b3480156103b357600080fd5b506103bc610b65565b005b3480156103ca57600080fd5b506103d3610c0d565b6040516103e09190613737565b60405180910390f35b3480156103f557600080fd5b506103fe610c13565b005b34801561040c57600080fd5b5061042760048036038101906104229190612ddf565b610cde565b005b34801561043557600080fd5b50610450600480360381019061044b9190612fb4565b610cfe565b60405161045d9190613737565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190612f73565b610d95565b005b34801561049b57600080fd5b506104b660048036038101906104b19190612fb4565b610e2b565b6040516104c391906133d3565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190612d7a565b610edd565b6040516105009190613737565b60405180910390f35b34801561051557600080fd5b5061051e610f95565b005b34801561052c57600080fd5b5061053561101d565b60405161054291906133d3565b60405180910390f35b34801561055757600080fd5b50610560611047565b60405161056d9190613455565b60405180910390f35b34801561058257600080fd5b5061058b6110d9565b6040516105989190613737565b60405180910390f35b3480156105ad57600080fd5b506105b66110de565b6040516105c39190613737565b60405180910390f35b6105e660048036038101906105e19190612fb4565b6110ea565b005b3480156105f457600080fd5b5061060f600480360381019061060a9190612ea9565b6113b7565b005b34801561061d57600080fd5b50610626611538565b6040516106339190613737565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190612e2e565b61153e565b005b34801561067157600080fd5b5061067a6115a0565b005b34801561068857600080fd5b506106a3600480360381019061069e9190612fb4565b611660565b6040516106b09190613455565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db9190612da3565b611707565b6040516106ed919061343a565b60405180910390f35b34801561070257600080fd5b5061070b61179b565b6040516107189190613455565b60405180910390f35b34801561072d57600080fd5b50610736611829565b604051610743919061343a565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e9190612d7a565b61183c565b005b34801561078157600080fd5b5061078a611934565b005b668e1bc9bf04000081565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080a5750610809826119dc565b5b9050919050565b606060008054610820906139e7565b80601f016020809104026020016040519081016040528092919081815260200182805461084c906139e7565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b5050505050905090565b60006108ae82611abe565b6108ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e490613617565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093382610e2b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099b906136b7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109c3611b2a565b73ffffffffffffffffffffffffffffffffffffffff1614806109f257506109f1816109ec611b2a565b611707565b5b610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2890613597565b60405180910390fd5b610a3b8383611b32565b505050565b6000600880549050905090565b610a5e610a58611b2a565b82611beb565b610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a94906136d7565b60405180910390fd5b610aa8838383611cc9565b505050565b6000610ab883610edd565b8210610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090613477565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600a60159054906101000a900460ff1681565b610b6d611b2a565b73ffffffffffffffffffffffffffffffffffffffff16610b8b61101d565b73ffffffffffffffffffffffffffffffffffffffff1614610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890613637565b60405180910390fd5b600a60149054906101000a900460ff1615600a60146101000a81548160ff021916908315150217905550565b6107d081565b610c1b611b2a565b73ffffffffffffffffffffffffffffffffffffffff16610c3961101d565b73ffffffffffffffffffffffffffffffffffffffff1614610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8690613637565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610cda573d6000803e3d6000fd5b5050565b610cf98383836040518060200160405280600081525061153e565b505050565b6000610d08610a40565b8210610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613717565b60405180910390fd5b60088281548110610d83577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610d9d611b2a565b73ffffffffffffffffffffffffffffffffffffffff16610dbb61101d565b73ffffffffffffffffffffffffffffffffffffffff1614610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613637565b60405180910390fd5b80600b9080519060200190610e27929190612b9e565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb906135d7565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f45906135b7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f9d611b2a565b73ffffffffffffffffffffffffffffffffffffffff16610fbb61101d565b73ffffffffffffffffffffffffffffffffffffffff1614611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100890613637565b60405180910390fd5b61101b6000611f25565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611056906139e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611082906139e7565b80156110cf5780601f106110a4576101008083540402835291602001916110cf565b820191906000526020600020905b8154815290600101906020018083116110b257829003601f168201915b5050505050905090565b600a81565b67011c37937e08000081565b600a60159054906101000a900460ff16806111115750600a60149054906101000a900460ff165b611150576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611147906136f7565b60405180910390fd5b600a811115611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b90613697565b60405180910390fd5b600a60159054906101000a900460ff16156112b0576107d06111c6826111b8610a40565b611feb90919063ffffffff16565b1115611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe906134d7565b60405180910390fd5b3461122282668e1bc9bf04000061200190919063ffffffff16565b1115611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90613557565b60405180910390fd5b60005b818110156112aa576000611278610a40565b90506107d0611285610a40565b1015611296576112953382612017565b5b5080806112a290613a4a565b915050611266565b506113b4565b6127106112cd826112bf610a40565b611feb90919063ffffffff16565b111561130e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611305906134d7565b60405180910390fd5b3461132a8267011c37937e08000061200190919063ffffffff16565b111561136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290613557565b60405180910390fd5b60005b818110156113b2576000611380610a40565b905061271061138d610a40565b101561139e5761139d3382612017565b5b5080806113aa90613a4a565b91505061136e565b505b50565b6113bf611b2a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561142d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142490613537565b60405180910390fd5b806005600061143a611b2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114e7611b2a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161152c919061343a565b60405180910390a35050565b61271081565b61154f611549611b2a565b83611beb565b61158e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611585906136d7565b60405180910390fd5b61159a84848484612035565b50505050565b6115a8611b2a565b73ffffffffffffffffffffffffffffffffffffffff166115c661101d565b73ffffffffffffffffffffffffffffffffffffffff161461161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613637565b60405180910390fd5b6000611626610a40565b905060005b602381101561165c57611649338284611644919061381c565b612017565b808061165490613a4a565b91505061162b565b5050565b606061166b82611abe565b6116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613677565b60405180910390fd5b60006116b4612091565b905060008151116116d457604051806020016040528060008152506116ff565b806116de84612123565b6040516020016116ef9291906133af565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b80546117a8906139e7565b80601f01602080910402602001604051908101604052809291908181526020018280546117d4906139e7565b80156118215780601f106117f657610100808354040283529160200191611821565b820191906000526020600020905b81548152906001019060200180831161180457829003601f168201915b505050505081565b600a60149054906101000a900460ff1681565b611844611b2a565b73ffffffffffffffffffffffffffffffffffffffff1661186261101d565b73ffffffffffffffffffffffffffffffffffffffff16146118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90613637565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f906134b7565b60405180910390fd5b61193181611f25565b50565b61193c611b2a565b73ffffffffffffffffffffffffffffffffffffffff1661195a61101d565b73ffffffffffffffffffffffffffffffffffffffff16146119b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a790613637565b60405180910390fd5b600a60159054906101000a900460ff1615600a60156101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611aa757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ab75750611ab6826122d0565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ba583610e2b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611bf682611abe565b611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c90613577565b60405180910390fd5b6000611c4083610e2b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611caf57508373ffffffffffffffffffffffffffffffffffffffff16611c97846108a3565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cc05750611cbf8185611707565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ce982610e2b565b73ffffffffffffffffffffffffffffffffffffffff1614611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690613657565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690613517565b60405180910390fd5b611dba83838361233a565b611dc5600082611b32565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e1591906138fd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e6c919061381c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611ff9919061381c565b905092915050565b6000818361200f91906138a3565b905092915050565b61203182826040518060200160405280600081525061244e565b5050565b612040848484611cc9565b61204c848484846124a9565b61208b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208290613497565b60405180910390fd5b50505050565b6060600b80546120a0906139e7565b80601f01602080910402602001604051908101604052809291908181526020018280546120cc906139e7565b80156121195780601f106120ee57610100808354040283529160200191612119565b820191906000526020600020905b8154815290600101906020018083116120fc57829003601f168201915b5050505050905090565b6060600082141561216b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122cb565b600082905060005b6000821461219d57808061218690613a4a565b915050600a826121969190613872565b9150612173565b60008167ffffffffffffffff8111156121df577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122115781602001600182028036833780820191505090505b5090505b600085146122c45760018261222a91906138fd565b9150600a856122399190613a93565b6030612245919061381c565b60f81b818381518110612281577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122bd9190613872565b9450612215565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612345838383612640565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123885761238381612645565b6123c7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123c6576123c5838261268e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561240a57612405816127fb565b612449565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461244857612447828261293e565b5b5b505050565b61245883836129bd565b61246560008484846124a9565b6124a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249b90613497565b60405180910390fd5b505050565b60006124ca8473ffffffffffffffffffffffffffffffffffffffff16612b8b565b15612633578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124f3611b2a565b8786866040518563ffffffff1660e01b815260040161251594939291906133ee565b602060405180830381600087803b15801561252f57600080fd5b505af192505050801561256057506040513d601f19601f8201168201806040525081019061255d9190612f4a565b60015b6125e3573d8060008114612590576040519150601f19603f3d011682016040523d82523d6000602084013e612595565b606091505b506000815114156125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d290613497565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612638565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161269b84610edd565b6126a591906138fd565b905060006007600084815260200190815260200160002054905081811461278a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061280f91906138fd565b9050600060096000848152602001908152602001600020549050600060088381548110612865577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106128ad577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612922577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061294983610edd565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a24906135f7565b60405180910390fd5b612a3681611abe565b15612a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6d906134f7565b60405180910390fd5b612a826000838361233a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ad2919061381c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612baa906139e7565b90600052602060002090601f016020900481019282612bcc5760008555612c13565b82601f10612be557805160ff1916838001178555612c13565b82800160010185558215612c13579182015b82811115612c12578251825591602001919060010190612bf7565b5b509050612c209190612c24565b5090565b5b80821115612c3d576000816000905550600101612c25565b5090565b6000612c54612c4f84613777565b613752565b905082815260208101848484011115612c6c57600080fd5b612c778482856139a5565b509392505050565b6000612c92612c8d846137a8565b613752565b905082815260208101848484011115612caa57600080fd5b612cb58482856139a5565b509392505050565b600081359050612ccc81614177565b92915050565b600081359050612ce18161418e565b92915050565b600081359050612cf6816141a5565b92915050565b600081519050612d0b816141a5565b92915050565b600082601f830112612d2257600080fd5b8135612d32848260208601612c41565b91505092915050565b600082601f830112612d4c57600080fd5b8135612d5c848260208601612c7f565b91505092915050565b600081359050612d74816141bc565b92915050565b600060208284031215612d8c57600080fd5b6000612d9a84828501612cbd565b91505092915050565b60008060408385031215612db657600080fd5b6000612dc485828601612cbd565b9250506020612dd585828601612cbd565b9150509250929050565b600080600060608486031215612df457600080fd5b6000612e0286828701612cbd565b9350506020612e1386828701612cbd565b9250506040612e2486828701612d65565b9150509250925092565b60008060008060808587031215612e4457600080fd5b6000612e5287828801612cbd565b9450506020612e6387828801612cbd565b9350506040612e7487828801612d65565b925050606085013567ffffffffffffffff811115612e9157600080fd5b612e9d87828801612d11565b91505092959194509250565b60008060408385031215612ebc57600080fd5b6000612eca85828601612cbd565b9250506020612edb85828601612cd2565b9150509250929050565b60008060408385031215612ef857600080fd5b6000612f0685828601612cbd565b9250506020612f1785828601612d65565b9150509250929050565b600060208284031215612f3357600080fd5b6000612f4184828501612ce7565b91505092915050565b600060208284031215612f5c57600080fd5b6000612f6a84828501612cfc565b91505092915050565b600060208284031215612f8557600080fd5b600082013567ffffffffffffffff811115612f9f57600080fd5b612fab84828501612d3b565b91505092915050565b600060208284031215612fc657600080fd5b6000612fd484828501612d65565b91505092915050565b612fe681613931565b82525050565b612ff581613943565b82525050565b6000613006826137d9565b61301081856137ef565b93506130208185602086016139b4565b61302981613b80565b840191505092915050565b600061303f826137e4565b6130498185613800565b93506130598185602086016139b4565b61306281613b80565b840191505092915050565b6000613078826137e4565b6130828185613811565b93506130928185602086016139b4565b80840191505092915050565b60006130ab602b83613800565b91506130b682613b91565b604082019050919050565b60006130ce603283613800565b91506130d982613be0565b604082019050919050565b60006130f1602683613800565b91506130fc82613c2f565b604082019050919050565b6000613114602983613800565b915061311f82613c7e565b604082019050919050565b6000613137601c83613800565b915061314282613ccd565b602082019050919050565b600061315a602483613800565b915061316582613cf6565b604082019050919050565b600061317d601983613800565b915061318882613d45565b602082019050919050565b60006131a0601f83613800565b91506131ab82613d6e565b602082019050919050565b60006131c3602c83613800565b91506131ce82613d97565b604082019050919050565b60006131e6603883613800565b91506131f182613de6565b604082019050919050565b6000613209602a83613800565b915061321482613e35565b604082019050919050565b600061322c602983613800565b915061323782613e84565b604082019050919050565b600061324f602083613800565b915061325a82613ed3565b602082019050919050565b6000613272602c83613800565b915061327d82613efc565b604082019050919050565b6000613295602083613800565b91506132a082613f4b565b602082019050919050565b60006132b8602983613800565b91506132c382613f74565b604082019050919050565b60006132db602f83613800565b91506132e682613fc3565b604082019050919050565b60006132fe602483613800565b915061330982614012565b604082019050919050565b6000613321602183613800565b915061332c82614061565b604082019050919050565b6000613344603183613800565b915061334f826140b0565b604082019050919050565b6000613367601f83613800565b9150613372826140ff565b602082019050919050565b600061338a602c83613800565b915061339582614128565b604082019050919050565b6133a98161399b565b82525050565b60006133bb828561306d565b91506133c7828461306d565b91508190509392505050565b60006020820190506133e86000830184612fdd565b92915050565b60006080820190506134036000830187612fdd565b6134106020830186612fdd565b61341d60408301856133a0565b818103606083015261342f8184612ffb565b905095945050505050565b600060208201905061344f6000830184612fec565b92915050565b6000602082019050818103600083015261346f8184613034565b905092915050565b600060208201905081810360008301526134908161309e565b9050919050565b600060208201905081810360008301526134b0816130c1565b9050919050565b600060208201905081810360008301526134d0816130e4565b9050919050565b600060208201905081810360008301526134f081613107565b9050919050565b600060208201905081810360008301526135108161312a565b9050919050565b600060208201905081810360008301526135308161314d565b9050919050565b6000602082019050818103600083015261355081613170565b9050919050565b6000602082019050818103600083015261357081613193565b9050919050565b60006020820190508181036000830152613590816131b6565b9050919050565b600060208201905081810360008301526135b0816131d9565b9050919050565b600060208201905081810360008301526135d0816131fc565b9050919050565b600060208201905081810360008301526135f08161321f565b9050919050565b6000602082019050818103600083015261361081613242565b9050919050565b6000602082019050818103600083015261363081613265565b9050919050565b6000602082019050818103600083015261365081613288565b9050919050565b60006020820190508181036000830152613670816132ab565b9050919050565b60006020820190508181036000830152613690816132ce565b9050919050565b600060208201905081810360008301526136b0816132f1565b9050919050565b600060208201905081810360008301526136d081613314565b9050919050565b600060208201905081810360008301526136f081613337565b9050919050565b600060208201905081810360008301526137108161335a565b9050919050565b600060208201905081810360008301526137308161337d565b9050919050565b600060208201905061374c60008301846133a0565b92915050565b600061375c61376d565b90506137688282613a19565b919050565b6000604051905090565b600067ffffffffffffffff82111561379257613791613b51565b5b61379b82613b80565b9050602081019050919050565b600067ffffffffffffffff8211156137c3576137c2613b51565b5b6137cc82613b80565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138278261399b565b91506138328361399b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561386757613866613ac4565b5b828201905092915050565b600061387d8261399b565b91506138888361399b565b92508261389857613897613af3565b5b828204905092915050565b60006138ae8261399b565b91506138b98361399b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138f2576138f1613ac4565b5b828202905092915050565b60006139088261399b565b91506139138361399b565b92508282101561392657613925613ac4565b5b828203905092915050565b600061393c8261397b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139d25780820151818401526020810190506139b7565b838111156139e1576000848401525b50505050565b600060028204905060018216806139ff57607f821691505b60208210811415613a1357613a12613b22565b5b50919050565b613a2282613b80565b810181811067ffffffffffffffff82111715613a4157613a40613b51565b5b80604052505050565b6000613a558261399b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a8857613a87613ac4565b5b600182019050919050565b6000613a9e8261399b565b9150613aa98361399b565b925082613ab957613ab8613af3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662062656172730000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e7420757020746f2031302062656172732061742060008201527f6f6e636500000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4f6e65206f66207468652073616c6573206d7573742062652061637469766500600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61418081613931565b811461418b57600080fd5b50565b61419781613943565b81146141a257600080fd5b50565b6141ae8161394f565b81146141b957600080fd5b50565b6141c58161399b565b81146141d057600080fd5b5056fea2646970667358221220768d701dfa2173b5d543baea96004cf92604b5870b63242828db6b6ac5d510c564736f6c63430008040033

Deployed Bytecode Sourcemap

50808:2651:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51331:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36849:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23742:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25301:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24824:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37489:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26191:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37157:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51525:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51687:83;;;;;;;;;;;;;:::i;:::-;;51241:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52064:130;;;;;;;;;;;;;:::i;:::-;;26601:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37679:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51978:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23436:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23166:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2555:94;;;;;;;;;;;;;:::i;:::-;;1904:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23911:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51052:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50941:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52381:1075;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25594:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51147:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26857:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52200:175;;;;;;;;;;;;;:::i;:::-;;24086:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25960:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51600:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51435:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2804:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51776:92;;;;;;;;;;;;;:::i;:::-;;51331:49;51370:10;51331:49;:::o;36849:224::-;36951:4;36990:35;36975:50;;;:11;:50;;;;:90;;;;37029:36;37053:11;37029:23;:36::i;:::-;36975:90;36968:97;;36849:224;;;:::o;23742:100::-;23796:13;23829:5;23822:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23742:100;:::o;25301:221::-;25377:7;25405:16;25413:7;25405;:16::i;:::-;25397:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25490:15;:24;25506:7;25490:24;;;;;;;;;;;;;;;;;;;;;25483:31;;25301:221;;;:::o;24824:411::-;24905:13;24921:23;24936:7;24921:14;:23::i;:::-;24905:39;;24969:5;24963:11;;:2;:11;;;;24955:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25063:5;25047:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25072:37;25089:5;25096:12;:10;:12::i;:::-;25072:16;:37::i;:::-;25047:62;25025:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;25206:21;25215:2;25219:7;25206:8;:21::i;:::-;24824:411;;;:::o;37489:113::-;37550:7;37577:10;:17;;;;37570:24;;37489:113;:::o;26191:339::-;26386:41;26405:12;:10;:12::i;:::-;26419:7;26386:18;:41::i;:::-;26378:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26494:28;26504:4;26510:2;26514:7;26494:9;:28::i;:::-;26191:339;;;:::o;37157:256::-;37254:7;37290:23;37307:5;37290:16;:23::i;:::-;37282:5;:31;37274:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37379:12;:19;37392:5;37379:19;;;;;;;;;;;;;;;:26;37399:5;37379:26;;;;;;;;;;;;37372:33;;37157:256;;;;:::o;51525:35::-;;;;;;;;;;;;;:::o;51687:83::-;2135:12;:10;:12::i;:::-;2124:23;;:7;:5;:7::i;:::-;:23;;;2116:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51752:12:::1;;;;;;;;;;;51751:13;51736:12;;:28;;;;;;;;;;;;;;;;;;51687:83::o:0;51241:42::-;51279:4;51241:42;:::o;52064:130::-;2135:12;:10;:12::i;:::-;2124:23;;:7;:5;:7::i;:::-;:23;;;2116:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52108:12:::1;52123:21;52108:36;;52159:10;52151:28;;:37;52180:7;52151:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2195:1;52064:130::o:0;26601:185::-;26739:39;26756:4;26762:2;26766:7;26739:39;;;;;;;;;;;;:16;:39::i;:::-;26601:185;;;:::o;37679:233::-;37754:7;37790:30;:28;:30::i;:::-;37782:5;:38;37774:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;37887:10;37898:5;37887:17;;;;;;;;;;;;;;;;;;;;;;;;37880:24;;37679:233;;;:::o;51978:80::-;2135:12;:10;:12::i;:::-;2124:23;;:7;:5;:7::i;:::-;:23;;;2116:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52048:4:::1;52042:3;:10;;;;;;;;;;;;:::i;:::-;;51978:80:::0;:::o;23436:239::-;23508:7;23528:13;23544:7;:16;23552:7;23544:16;;;;;;;;;;;;;;;;;;;;;23528:32;;23596:1;23579:19;;:5;:19;;;;23571:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23662:5;23655:12;;;23436:239;;;:::o;23166:208::-;23238:7;23283:1;23266:19;;:5;:19;;;;23258:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23350:9;:16;23360:5;23350:16;;;;;;;;;;;;;;;;23343:23;;23166:208;;;:::o;2555:94::-;2135:12;:10;:12::i;:::-;2124:23;;:7;:5;:7::i;:::-;:23;;;2116:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2620:21:::1;2638:1;2620:9;:21::i;:::-;2555:94::o:0;1904:87::-;1950:7;1977:6;;;;;;;;;;;1970:13;;1904:87;:::o;23911:104::-;23967:13;24000:7;23993:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23911:104;:::o;51052:40::-;51090:2;51052:40;:::o;50941:42::-;50973:10;50941:42;:::o;52381:1075::-;52445:15;;;;;;;;;;;:31;;;;52464:12;;;;;;;;;;;52445:31;52437:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;51090:2;52527:13;:28;;52519:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;52609:15;;;;;;;;;;;52605:846;;;51279:4;52643:32;52661:13;52643;:11;:13::i;:::-;:17;;:32;;;;:::i;:::-;:47;;52635:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;52788:9;52753:31;52770:13;51370:10;52753:16;;:31;;;;:::i;:::-;:44;;52745:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;52848:6;52844:191;52864:13;52860:1;:17;52844:191;;;52895:14;52912:13;:11;:13::i;:::-;52895:30;;51279:4;52940:13;:11;:13::i;:::-;:27;52936:90;;;52982:32;52992:10;53004:9;52982;:32::i;:::-;52936:90;52844:191;52879:3;;;;;:::i;:::-;;;;52844:191;;;;52605:846;;;51182:5;53065:32;53083:13;53065;:11;:13::i;:::-;:17;;:32;;;;:::i;:::-;:44;;53057:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;53200:9;53172:24;53182:13;50973:10;53172:9;;:24;;;;:::i;:::-;:37;;53164:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;53260:6;53256:188;53276:13;53272:1;:17;53256:188;;;53307:14;53324:13;:11;:13::i;:::-;53307:30;;51182:5;53352:13;:11;:13::i;:::-;:24;53348:87;;;53391:32;53401:10;53413:9;53391;:32::i;:::-;53348:87;53256:188;53291:3;;;;;:::i;:::-;;;;53256:188;;;;52605:846;52381:1075;:::o;25594:295::-;25709:12;:10;:12::i;:::-;25697:24;;:8;:24;;;;25689:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25809:8;25764:18;:32;25783:12;:10;:12::i;:::-;25764:32;;;;;;;;;;;;;;;:42;25797:8;25764:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;25862:8;25833:48;;25848:12;:10;:12::i;:::-;25833:48;;;25872:8;25833:48;;;;;;:::i;:::-;;;;;;;;25594:295;;:::o;51147:40::-;51182:5;51147:40;:::o;26857:328::-;27032:41;27051:12;:10;:12::i;:::-;27065:7;27032:18;:41::i;:::-;27024:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27138:39;27152:4;27158:2;27162:7;27171:5;27138:13;:39::i;:::-;26857:328;;;;:::o;52200:175::-;2135:12;:10;:12::i;:::-;2124:23;;:7;:5;:7::i;:::-;:23;;;2116:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52248:11:::1;52262:13;:11;:13::i;:::-;52248:27;;52282:6;52295:75;52311:2;52307:1;:6;52295:75;;;52329:33;52339:10;52360:1;52351:6;:10;;;;:::i;:::-;52329:9;:33::i;:::-;52315:3;;;;;:::i;:::-;;;;52295:75;;;2195:1;;52200:175::o:0;24086:334::-;24159:13;24193:16;24201:7;24193;:16::i;:::-;24185:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24274:21;24298:10;:8;:10::i;:::-;24274:34;;24350:1;24332:7;24326:21;:25;:86;;;;;;;;;;;;;;;;;24378:7;24387:18;:7;:16;:18::i;:::-;24361:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24326:86;24319:93;;;24086:334;;;:::o;25960:164::-;26057:4;26081:18;:25;26100:5;26081:25;;;;;;;;;;;;;;;:35;26107:8;26081:35;;;;;;;;;;;;;;;;;;;;;;;;;26074:42;;25960:164;;;;:::o;51600:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51435:32::-;;;;;;;;;;;;;:::o;2804:192::-;2135:12;:10;:12::i;:::-;2124:23;;:7;:5;:7::i;:::-;:23;;;2116:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2913:1:::1;2893:22;;:8;:22;;;;2885:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2969:19;2979:8;2969:9;:19::i;:::-;2804:192:::0;:::o;51776:92::-;2135:12;:10;:12::i;:::-;2124:23;;:7;:5;:7::i;:::-;:23;;;2116:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51847:15:::1;;;;;;;;;;;51846:16;51828:15;;:34;;;;;;;;;;;;;;;;;;51776:92::o:0;22797:305::-;22899:4;22951:25;22936:40;;;:11;:40;;;;:105;;;;23008:33;22993:48;;;:11;:48;;;;22936:105;:158;;;;23058:36;23082:11;23058:23;:36::i;:::-;22936:158;22916:178;;22797:305;;;:::o;28695:127::-;28760:4;28812:1;28784:30;;:7;:16;28792:7;28784:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28777:37;;28695:127;;;:::o;690:98::-;743:7;770:10;763:17;;690:98;:::o;32677:174::-;32779:2;32752:15;:24;32768:7;32752:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32835:7;32831:2;32797:46;;32806:23;32821:7;32806:14;:23::i;:::-;32797:46;;;;;;;;;;;;32677:174;;:::o;28989:348::-;29082:4;29107:16;29115:7;29107;:16::i;:::-;29099:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29183:13;29199:23;29214:7;29199:14;:23::i;:::-;29183:39;;29252:5;29241:16;;:7;:16;;;:51;;;;29285:7;29261:31;;:20;29273:7;29261:11;:20::i;:::-;:31;;;29241:51;:87;;;;29296:32;29313:5;29320:7;29296:16;:32::i;:::-;29241:87;29233:96;;;28989:348;;;;:::o;31981:578::-;32140:4;32113:31;;:23;32128:7;32113:14;:23::i;:::-;:31;;;32105:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32223:1;32209:16;;:2;:16;;;;32201:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32279:39;32300:4;32306:2;32310:7;32279:20;:39::i;:::-;32383:29;32400:1;32404:7;32383:8;:29::i;:::-;32444:1;32425:9;:15;32435:4;32425:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32473:1;32456:9;:13;32466:2;32456:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32504:2;32485:7;:16;32493:7;32485:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32543:7;32539:2;32524:27;;32533:4;32524:27;;;;;;;;;;;;31981:578;;;:::o;3004:173::-;3060:16;3079:6;;;;;;;;;;;3060:25;;3105:8;3096:6;;:17;;;;;;;;;;;;;;;;;;3160:8;3129:40;;3150:8;3129:40;;;;;;;;;;;;3004:173;;:::o;45793:98::-;45851:7;45882:1;45878;:5;;;;:::i;:::-;45871:12;;45793:98;;;;:::o;46531:::-;46589:7;46620:1;46616;:5;;;;:::i;:::-;46609:12;;46531:98;;;;:::o;29679:110::-;29755:26;29765:2;29769:7;29755:26;;;;;;;;;;;;:9;:26::i;:::-;29679:110;;:::o;28067:315::-;28224:28;28234:4;28240:2;28244:7;28224:9;:28::i;:::-;28271:48;28294:4;28300:2;28304:7;28313:5;28271:22;:48::i;:::-;28263:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;28067:315;;;;:::o;51874:98::-;51934:13;51963:3;51956:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51874:98;:::o;18740:723::-;18796:13;19026:1;19017:5;:10;19013:53;;;19044:10;;;;;;;;;;;;;;;;;;;;;19013:53;19076:12;19091:5;19076:20;;19107:14;19132:78;19147:1;19139:4;:9;19132:78;;19165:8;;;;;:::i;:::-;;;;19196:2;19188:10;;;;;:::i;:::-;;;19132:78;;;19220:19;19252:6;19242:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19220:39;;19270:154;19286:1;19277:5;:10;19270:154;;19314:1;19304:11;;;;;:::i;:::-;;;19381:2;19373:5;:10;;;;:::i;:::-;19360:2;:24;;;;:::i;:::-;19347:39;;19330:6;19337;19330:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;19410:2;19401:11;;;;;:::i;:::-;;;19270:154;;;19448:6;19434:21;;;;;18740:723;;;;:::o;21299:157::-;21384:4;21423:25;21408:40;;;:11;:40;;;;21401:47;;21299:157;;;:::o;38525:589::-;38669:45;38696:4;38702:2;38706:7;38669:26;:45::i;:::-;38747:1;38731:18;;:4;:18;;;38727:187;;;38766:40;38798:7;38766:31;:40::i;:::-;38727:187;;;38836:2;38828:10;;:4;:10;;;38824:90;;38855:47;38888:4;38894:7;38855:32;:47::i;:::-;38824:90;38727:187;38942:1;38928:16;;:2;:16;;;38924:183;;;38961:45;38998:7;38961:36;:45::i;:::-;38924:183;;;39034:4;39028:10;;:2;:10;;;39024:83;;39055:40;39083:2;39087:7;39055:27;:40::i;:::-;39024:83;38924:183;38525:589;;;:::o;30016:321::-;30146:18;30152:2;30156:7;30146:5;:18::i;:::-;30197:54;30228:1;30232:2;30236:7;30245:5;30197:22;:54::i;:::-;30175:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;30016:321;;;:::o;33416:803::-;33571:4;33592:15;:2;:13;;;:15::i;:::-;33588:624;;;33644:2;33628:36;;;33665:12;:10;:12::i;:::-;33679:4;33685:7;33694:5;33628:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33624:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33891:1;33874:6;:13;:18;33870:272;;;33917:60;;;;;;;;;;:::i;:::-;;;;;;;;33870:272;34092:6;34086:13;34077:6;34073:2;34069:15;34062:38;33624:533;33761:45;;;33751:55;;;:6;:55;;;;33744:62;;;;;33588:624;34196:4;34189:11;;33416:803;;;;;;;:::o;34791:126::-;;;;:::o;39837:164::-;39941:10;:17;;;;39914:15;:24;39930:7;39914:24;;;;;;;;;;;:44;;;;39969:10;39985:7;39969:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39837:164;:::o;40628:988::-;40894:22;40944:1;40919:22;40936:4;40919:16;:22::i;:::-;:26;;;;:::i;:::-;40894:51;;40956:18;40977:17;:26;40995:7;40977:26;;;;;;;;;;;;40956:47;;41124:14;41110:10;:28;41106:328;;41155:19;41177:12;:18;41190:4;41177:18;;;;;;;;;;;;;;;:34;41196:14;41177:34;;;;;;;;;;;;41155:56;;41261:11;41228:12;:18;41241:4;41228:18;;;;;;;;;;;;;;;:30;41247:10;41228:30;;;;;;;;;;;:44;;;;41378:10;41345:17;:30;41363:11;41345:30;;;;;;;;;;;:43;;;;41106:328;;41530:17;:26;41548:7;41530:26;;;;;;;;;;;41523:33;;;41574:12;:18;41587:4;41574:18;;;;;;;;;;;;;;;:34;41593:14;41574:34;;;;;;;;;;;41567:41;;;40628:988;;;;:::o;41911:1079::-;42164:22;42209:1;42189:10;:17;;;;:21;;;;:::i;:::-;42164:46;;42221:18;42242:15;:24;42258:7;42242:24;;;;;;;;;;;;42221:45;;42593:19;42615:10;42626:14;42615:26;;;;;;;;;;;;;;;;;;;;;;;;42593:48;;42679:11;42654:10;42665;42654:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;42790:10;42759:15;:28;42775:11;42759:28;;;;;;;;;;;:41;;;;42931:15;:24;42947:7;42931:24;;;;;;;;;;;42924:31;;;42966:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41911:1079;;;;:::o;39415:221::-;39500:14;39517:20;39534:2;39517:16;:20::i;:::-;39500:37;;39575:7;39548:12;:16;39561:2;39548:16;;;;;;;;;;;;;;;:24;39565:6;39548:24;;;;;;;;;;;:34;;;;39622:6;39593:17;:26;39611:7;39593:26;;;;;;;;;;;:35;;;;39415:221;;;:::o;30673:382::-;30767:1;30753:16;;:2;:16;;;;30745:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30826:16;30834:7;30826;:16::i;:::-;30825:17;30817:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30888:45;30917:1;30921:2;30925:7;30888:20;:45::i;:::-;30963:1;30946:9;:13;30956:2;30946:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30994:2;30975:7;:16;30983:7;30975:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31039:7;31035:2;31014:33;;31031:1;31014:33;;;;;;;;;;;;30673:382;;:::o;11311:387::-;11371:4;11579:12;11646:7;11634:20;11626:28;;11689:1;11682:4;:8;11675:15;;;11311:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343: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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:360::-;6411:3;6439:38;6471:5;6439:38;:::i;:::-;6493:70;6556:6;6551:3;6493:70;:::i;:::-;6486:77;;6572:52;6617:6;6612:3;6605:4;6598:5;6594:16;6572:52;:::i;:::-;6649:29;6671:6;6649:29;:::i;:::-;6644:3;6640:39;6633:46;;6415:270;;;;;:::o;6691:364::-;6779:3;6807:39;6840:5;6807:39;:::i;:::-;6862:71;6926:6;6921:3;6862:71;:::i;:::-;6855:78;;6942:52;6987:6;6982:3;6975:4;6968:5;6964:16;6942:52;:::i;:::-;7019:29;7041:6;7019:29;:::i;:::-;7014:3;7010:39;7003:46;;6783:272;;;;;:::o;7061:377::-;7167:3;7195:39;7228:5;7195:39;:::i;:::-;7250:89;7332:6;7327:3;7250:89;:::i;:::-;7243:96;;7348:52;7393:6;7388:3;7381:4;7374:5;7370:16;7348:52;:::i;:::-;7425:6;7420:3;7416:16;7409:23;;7171:267;;;;;:::o;7444:366::-;7586:3;7607:67;7671:2;7666:3;7607:67;:::i;:::-;7600:74;;7683:93;7772:3;7683:93;:::i;:::-;7801:2;7796:3;7792:12;7785:19;;7590:220;;;:::o;7816:366::-;7958:3;7979:67;8043:2;8038:3;7979:67;:::i;:::-;7972:74;;8055:93;8144:3;8055:93;:::i;:::-;8173:2;8168:3;8164:12;8157:19;;7962:220;;;:::o;8188:366::-;8330:3;8351:67;8415:2;8410:3;8351:67;:::i;:::-;8344:74;;8427:93;8516:3;8427:93;:::i;:::-;8545:2;8540:3;8536:12;8529:19;;8334:220;;;:::o;8560:366::-;8702:3;8723:67;8787:2;8782:3;8723:67;:::i;:::-;8716:74;;8799:93;8888:3;8799:93;:::i;:::-;8917:2;8912:3;8908:12;8901:19;;8706:220;;;:::o;8932:366::-;9074:3;9095:67;9159:2;9154:3;9095:67;:::i;:::-;9088:74;;9171:93;9260:3;9171:93;:::i;:::-;9289:2;9284:3;9280:12;9273:19;;9078:220;;;:::o;9304:366::-;9446:3;9467:67;9531:2;9526:3;9467:67;:::i;:::-;9460:74;;9543:93;9632:3;9543:93;:::i;:::-;9661:2;9656:3;9652:12;9645:19;;9450:220;;;:::o;9676:366::-;9818:3;9839:67;9903:2;9898:3;9839:67;:::i;:::-;9832:74;;9915:93;10004:3;9915:93;:::i;:::-;10033:2;10028:3;10024:12;10017:19;;9822:220;;;:::o;10048:366::-;10190:3;10211:67;10275:2;10270:3;10211:67;:::i;:::-;10204:74;;10287:93;10376:3;10287:93;:::i;:::-;10405:2;10400:3;10396:12;10389:19;;10194:220;;;:::o;10420:366::-;10562:3;10583:67;10647:2;10642:3;10583:67;:::i;:::-;10576:74;;10659:93;10748:3;10659:93;:::i;:::-;10777:2;10772:3;10768:12;10761:19;;10566:220;;;:::o;10792:366::-;10934:3;10955:67;11019:2;11014:3;10955:67;:::i;:::-;10948:74;;11031:93;11120:3;11031:93;:::i;:::-;11149:2;11144:3;11140:12;11133:19;;10938:220;;;:::o;11164:366::-;11306:3;11327:67;11391:2;11386:3;11327:67;:::i;:::-;11320:74;;11403:93;11492:3;11403:93;:::i;:::-;11521:2;11516:3;11512:12;11505:19;;11310:220;;;:::o;11536:366::-;11678:3;11699:67;11763:2;11758:3;11699:67;:::i;:::-;11692:74;;11775:93;11864:3;11775:93;:::i;:::-;11893:2;11888:3;11884:12;11877:19;;11682:220;;;:::o;11908:366::-;12050:3;12071:67;12135:2;12130:3;12071:67;:::i;:::-;12064:74;;12147:93;12236:3;12147:93;:::i;:::-;12265:2;12260:3;12256:12;12249:19;;12054:220;;;:::o;12280:366::-;12422:3;12443:67;12507:2;12502:3;12443:67;:::i;:::-;12436:74;;12519:93;12608:3;12519:93;:::i;:::-;12637:2;12632:3;12628:12;12621:19;;12426:220;;;:::o;12652:366::-;12794:3;12815:67;12879:2;12874:3;12815:67;:::i;:::-;12808:74;;12891:93;12980:3;12891:93;:::i;:::-;13009:2;13004:3;13000:12;12993:19;;12798:220;;;:::o;13024:366::-;13166:3;13187:67;13251:2;13246:3;13187:67;:::i;:::-;13180:74;;13263:93;13352:3;13263:93;:::i;:::-;13381:2;13376:3;13372:12;13365:19;;13170:220;;;:::o;13396:366::-;13538:3;13559:67;13623:2;13618:3;13559:67;:::i;:::-;13552:74;;13635:93;13724:3;13635:93;:::i;:::-;13753:2;13748:3;13744:12;13737:19;;13542:220;;;:::o;13768:366::-;13910:3;13931:67;13995:2;13990:3;13931:67;:::i;:::-;13924:74;;14007:93;14096:3;14007:93;:::i;:::-;14125:2;14120:3;14116:12;14109:19;;13914:220;;;:::o;14140:366::-;14282:3;14303:67;14367:2;14362:3;14303:67;:::i;:::-;14296:74;;14379:93;14468:3;14379:93;:::i;:::-;14497:2;14492:3;14488:12;14481:19;;14286:220;;;:::o;14512:366::-;14654:3;14675:67;14739:2;14734:3;14675:67;:::i;:::-;14668:74;;14751:93;14840:3;14751:93;:::i;:::-;14869:2;14864:3;14860:12;14853:19;;14658:220;;;:::o;14884:366::-;15026:3;15047:67;15111:2;15106:3;15047:67;:::i;:::-;15040:74;;15123:93;15212:3;15123:93;:::i;:::-;15241:2;15236:3;15232:12;15225:19;;15030:220;;;:::o;15256:366::-;15398:3;15419:67;15483:2;15478:3;15419:67;:::i;:::-;15412:74;;15495:93;15584:3;15495:93;:::i;:::-;15613:2;15608:3;15604:12;15597:19;;15402:220;;;:::o;15628:118::-;15715:24;15733:5;15715:24;:::i;:::-;15710:3;15703:37;15693:53;;:::o;15752:435::-;15932:3;15954:95;16045:3;16036:6;15954:95;:::i;:::-;15947:102;;16066:95;16157:3;16148:6;16066:95;:::i;:::-;16059:102;;16178:3;16171:10;;15936:251;;;;;:::o;16193:222::-;16286:4;16324:2;16313:9;16309:18;16301:26;;16337:71;16405:1;16394:9;16390:17;16381:6;16337:71;:::i;:::-;16291:124;;;;:::o;16421:640::-;16616:4;16654:3;16643:9;16639:19;16631:27;;16668:71;16736:1;16725:9;16721:17;16712:6;16668:71;:::i;:::-;16749:72;16817:2;16806:9;16802:18;16793:6;16749:72;:::i;:::-;16831;16899:2;16888:9;16884:18;16875:6;16831:72;:::i;:::-;16950:9;16944:4;16940:20;16935:2;16924:9;16920:18;16913:48;16978:76;17049:4;17040:6;16978:76;:::i;:::-;16970:84;;16621:440;;;;;;;:::o;17067:210::-;17154:4;17192:2;17181:9;17177:18;17169:26;;17205:65;17267:1;17256:9;17252:17;17243:6;17205:65;:::i;:::-;17159:118;;;;:::o;17283:313::-;17396:4;17434:2;17423:9;17419:18;17411:26;;17483:9;17477:4;17473:20;17469:1;17458:9;17454:17;17447:47;17511:78;17584:4;17575:6;17511:78;:::i;:::-;17503:86;;17401:195;;;;:::o;17602:419::-;17768:4;17806:2;17795:9;17791:18;17783:26;;17855:9;17849:4;17845:20;17841:1;17830:9;17826:17;17819:47;17883:131;18009:4;17883:131;:::i;:::-;17875:139;;17773:248;;;:::o;18027:419::-;18193:4;18231:2;18220:9;18216:18;18208:26;;18280:9;18274:4;18270:20;18266:1;18255:9;18251:17;18244:47;18308:131;18434:4;18308:131;:::i;:::-;18300:139;;18198:248;;;:::o;18452:419::-;18618:4;18656:2;18645:9;18641:18;18633:26;;18705:9;18699:4;18695:20;18691:1;18680:9;18676:17;18669:47;18733:131;18859:4;18733:131;:::i;:::-;18725:139;;18623:248;;;:::o;18877:419::-;19043:4;19081:2;19070:9;19066:18;19058:26;;19130:9;19124:4;19120:20;19116:1;19105:9;19101:17;19094:47;19158:131;19284:4;19158:131;:::i;:::-;19150:139;;19048:248;;;:::o;19302:419::-;19468:4;19506:2;19495:9;19491:18;19483:26;;19555:9;19549:4;19545:20;19541:1;19530:9;19526:17;19519:47;19583:131;19709:4;19583:131;:::i;:::-;19575:139;;19473:248;;;:::o;19727:419::-;19893:4;19931:2;19920:9;19916:18;19908:26;;19980:9;19974:4;19970:20;19966:1;19955:9;19951:17;19944:47;20008:131;20134:4;20008:131;:::i;:::-;20000:139;;19898:248;;;:::o;20152:419::-;20318:4;20356:2;20345:9;20341:18;20333:26;;20405:9;20399:4;20395:20;20391:1;20380:9;20376:17;20369:47;20433:131;20559:4;20433:131;:::i;:::-;20425:139;;20323:248;;;:::o;20577:419::-;20743:4;20781:2;20770:9;20766:18;20758:26;;20830:9;20824:4;20820:20;20816:1;20805:9;20801:17;20794:47;20858:131;20984:4;20858:131;:::i;:::-;20850:139;;20748:248;;;:::o;21002:419::-;21168:4;21206:2;21195:9;21191:18;21183:26;;21255:9;21249:4;21245:20;21241:1;21230:9;21226:17;21219:47;21283:131;21409:4;21283:131;:::i;:::-;21275:139;;21173:248;;;:::o;21427:419::-;21593:4;21631:2;21620:9;21616:18;21608:26;;21680:9;21674:4;21670:20;21666:1;21655:9;21651:17;21644:47;21708:131;21834:4;21708:131;:::i;:::-;21700:139;;21598:248;;;:::o;21852:419::-;22018:4;22056:2;22045:9;22041:18;22033:26;;22105:9;22099:4;22095:20;22091:1;22080:9;22076:17;22069:47;22133:131;22259:4;22133:131;:::i;:::-;22125:139;;22023:248;;;:::o;22277:419::-;22443:4;22481:2;22470:9;22466:18;22458:26;;22530:9;22524:4;22520:20;22516:1;22505:9;22501:17;22494:47;22558:131;22684:4;22558:131;:::i;:::-;22550:139;;22448:248;;;:::o;22702:419::-;22868:4;22906:2;22895:9;22891:18;22883:26;;22955:9;22949:4;22945:20;22941:1;22930:9;22926:17;22919:47;22983:131;23109:4;22983:131;:::i;:::-;22975:139;;22873:248;;;:::o;23127:419::-;23293:4;23331:2;23320:9;23316:18;23308:26;;23380:9;23374:4;23370:20;23366:1;23355:9;23351:17;23344:47;23408:131;23534:4;23408:131;:::i;:::-;23400:139;;23298:248;;;:::o;23552:419::-;23718:4;23756:2;23745:9;23741:18;23733:26;;23805:9;23799:4;23795:20;23791:1;23780:9;23776:17;23769:47;23833:131;23959:4;23833:131;:::i;:::-;23825:139;;23723:248;;;:::o;23977:419::-;24143:4;24181:2;24170:9;24166:18;24158:26;;24230:9;24224:4;24220:20;24216:1;24205:9;24201:17;24194:47;24258:131;24384:4;24258:131;:::i;:::-;24250:139;;24148:248;;;:::o;24402:419::-;24568:4;24606:2;24595:9;24591:18;24583:26;;24655:9;24649:4;24645:20;24641:1;24630:9;24626:17;24619:47;24683:131;24809:4;24683:131;:::i;:::-;24675:139;;24573:248;;;:::o;24827:419::-;24993:4;25031:2;25020:9;25016:18;25008:26;;25080:9;25074:4;25070:20;25066:1;25055:9;25051:17;25044:47;25108:131;25234:4;25108:131;:::i;:::-;25100:139;;24998:248;;;:::o;25252:419::-;25418:4;25456:2;25445:9;25441:18;25433:26;;25505:9;25499:4;25495:20;25491:1;25480:9;25476:17;25469:47;25533:131;25659:4;25533:131;:::i;:::-;25525:139;;25423:248;;;:::o;25677:419::-;25843:4;25881:2;25870:9;25866:18;25858:26;;25930:9;25924:4;25920:20;25916:1;25905:9;25901:17;25894:47;25958:131;26084:4;25958:131;:::i;:::-;25950:139;;25848:248;;;:::o;26102:419::-;26268:4;26306:2;26295:9;26291:18;26283:26;;26355:9;26349:4;26345:20;26341:1;26330:9;26326:17;26319:47;26383:131;26509:4;26383:131;:::i;:::-;26375:139;;26273:248;;;:::o;26527:419::-;26693:4;26731:2;26720:9;26716:18;26708:26;;26780:9;26774:4;26770:20;26766:1;26755:9;26751:17;26744:47;26808:131;26934:4;26808:131;:::i;:::-;26800:139;;26698:248;;;:::o;26952:222::-;27045:4;27083:2;27072:9;27068:18;27060:26;;27096:71;27164:1;27153:9;27149:17;27140:6;27096:71;:::i;:::-;27050:124;;;;:::o;27180:129::-;27214:6;27241:20;;:::i;:::-;27231:30;;27270:33;27298:4;27290:6;27270:33;:::i;:::-;27221:88;;;:::o;27315:75::-;27348:6;27381:2;27375:9;27365:19;;27355:35;:::o;27396:307::-;27457:4;27547:18;27539:6;27536:30;27533:2;;;27569:18;;:::i;:::-;27533:2;27607:29;27629:6;27607:29;:::i;:::-;27599:37;;27691:4;27685;27681:15;27673:23;;27462:241;;;:::o;27709:308::-;27771:4;27861:18;27853:6;27850:30;27847:2;;;27883:18;;:::i;:::-;27847:2;27921:29;27943:6;27921:29;:::i;:::-;27913:37;;28005:4;27999;27995:15;27987:23;;27776:241;;;:::o;28023:98::-;28074:6;28108:5;28102:12;28092:22;;28081:40;;;:::o;28127:99::-;28179:6;28213:5;28207:12;28197:22;;28186:40;;;:::o;28232:168::-;28315:11;28349:6;28344:3;28337:19;28389:4;28384:3;28380:14;28365:29;;28327:73;;;;:::o;28406:169::-;28490:11;28524:6;28519:3;28512:19;28564:4;28559:3;28555:14;28540:29;;28502:73;;;;:::o;28581:148::-;28683:11;28720:3;28705:18;;28695:34;;;;:::o;28735:305::-;28775:3;28794:20;28812:1;28794:20;:::i;:::-;28789:25;;28828:20;28846:1;28828:20;:::i;:::-;28823:25;;28982:1;28914:66;28910:74;28907:1;28904:81;28901:2;;;28988:18;;:::i;:::-;28901:2;29032:1;29029;29025:9;29018:16;;28779:261;;;;:::o;29046:185::-;29086:1;29103:20;29121:1;29103:20;:::i;:::-;29098:25;;29137:20;29155:1;29137:20;:::i;:::-;29132:25;;29176:1;29166:2;;29181:18;;:::i;:::-;29166:2;29223:1;29220;29216:9;29211:14;;29088:143;;;;:::o;29237:348::-;29277:7;29300:20;29318:1;29300:20;:::i;:::-;29295:25;;29334:20;29352:1;29334:20;:::i;:::-;29329:25;;29522:1;29454:66;29450:74;29447:1;29444:81;29439:1;29432:9;29425:17;29421:105;29418:2;;;29529:18;;:::i;:::-;29418:2;29577:1;29574;29570:9;29559:20;;29285:300;;;;:::o;29591:191::-;29631:4;29651:20;29669:1;29651:20;:::i;:::-;29646:25;;29685:20;29703:1;29685:20;:::i;:::-;29680:25;;29724:1;29721;29718:8;29715:2;;;29729:18;;:::i;:::-;29715:2;29774:1;29771;29767:9;29759:17;;29636:146;;;;:::o;29788:96::-;29825:7;29854:24;29872:5;29854:24;:::i;:::-;29843:35;;29833:51;;;:::o;29890:90::-;29924:7;29967:5;29960:13;29953:21;29942:32;;29932:48;;;:::o;29986:149::-;30022:7;30062:66;30055:5;30051:78;30040:89;;30030:105;;;:::o;30141:126::-;30178:7;30218:42;30211:5;30207:54;30196:65;;30186:81;;;:::o;30273:77::-;30310:7;30339:5;30328:16;;30318:32;;;:::o;30356:154::-;30440:6;30435:3;30430;30417:30;30502:1;30493:6;30488:3;30484:16;30477:27;30407:103;;;:::o;30516:307::-;30584:1;30594:113;30608:6;30605:1;30602:13;30594:113;;;30693:1;30688:3;30684:11;30678:18;30674:1;30669:3;30665:11;30658:39;30630:2;30627:1;30623:10;30618:15;;30594:113;;;30725:6;30722:1;30719:13;30716:2;;;30805:1;30796:6;30791:3;30787:16;30780:27;30716:2;30565:258;;;;:::o;30829:320::-;30873:6;30910:1;30904:4;30900:12;30890:22;;30957:1;30951:4;30947:12;30978:18;30968:2;;31034:4;31026:6;31022:17;31012:27;;30968:2;31096;31088:6;31085:14;31065:18;31062:38;31059:2;;;31115:18;;:::i;:::-;31059:2;30880:269;;;;:::o;31155:281::-;31238:27;31260:4;31238:27;:::i;:::-;31230:6;31226:40;31368:6;31356:10;31353:22;31332:18;31320:10;31317:34;31314:62;31311:2;;;31379:18;;:::i;:::-;31311:2;31419:10;31415:2;31408:22;31198:238;;;:::o;31442:233::-;31481:3;31504:24;31522:5;31504:24;:::i;:::-;31495:33;;31550:66;31543:5;31540:77;31537:2;;;31620:18;;:::i;:::-;31537:2;31667:1;31660:5;31656:13;31649:20;;31485:190;;;:::o;31681:176::-;31713:1;31730:20;31748:1;31730:20;:::i;:::-;31725:25;;31764:20;31782:1;31764:20;:::i;:::-;31759:25;;31803:1;31793:2;;31808:18;;:::i;:::-;31793:2;31849:1;31846;31842:9;31837:14;;31715:142;;;;:::o;31863:180::-;31911:77;31908:1;31901:88;32008:4;32005:1;31998:15;32032:4;32029:1;32022:15;32049:180;32097:77;32094:1;32087:88;32194:4;32191:1;32184:15;32218:4;32215:1;32208:15;32235:180;32283:77;32280:1;32273:88;32380:4;32377:1;32370:15;32404:4;32401:1;32394:15;32421:180;32469:77;32466:1;32459:88;32566:4;32563:1;32556:15;32590:4;32587:1;32580:15;32607:102;32648:6;32699:2;32695:7;32690:2;32683:5;32679:14;32675:28;32665:38;;32655:54;;;:::o;32715:230::-;32855:34;32851:1;32843:6;32839:14;32832:58;32924:13;32919:2;32911:6;32907:15;32900:38;32821:124;:::o;32951:237::-;33091:34;33087:1;33079:6;33075:14;33068:58;33160:20;33155:2;33147:6;33143:15;33136:45;33057:131;:::o;33194:225::-;33334:34;33330:1;33322:6;33318:14;33311:58;33403:8;33398:2;33390:6;33386:15;33379:33;33300:119;:::o;33425:228::-;33565:34;33561:1;33553:6;33549:14;33542:58;33634:11;33629:2;33621:6;33617:15;33610:36;33531:122;:::o;33659:178::-;33799:30;33795:1;33787:6;33783:14;33776:54;33765:72;:::o;33843:223::-;33983:34;33979:1;33971:6;33967:14;33960:58;34052:6;34047:2;34039:6;34035:15;34028:31;33949:117;:::o;34072:175::-;34212:27;34208:1;34200:6;34196:14;34189:51;34178:69;:::o;34253:181::-;34393:33;34389:1;34381:6;34377:14;34370:57;34359:75;:::o;34440:231::-;34580:34;34576:1;34568:6;34564:14;34557:58;34649:14;34644:2;34636:6;34632:15;34625:39;34546:125;:::o;34677:243::-;34817:34;34813:1;34805:6;34801:14;34794:58;34886:26;34881:2;34873:6;34869:15;34862:51;34783:137;:::o;34926:229::-;35066:34;35062:1;35054:6;35050:14;35043:58;35135:12;35130:2;35122:6;35118:15;35111:37;35032:123;:::o;35161:228::-;35301:34;35297:1;35289:6;35285:14;35278:58;35370:11;35365:2;35357:6;35353:15;35346:36;35267:122;:::o;35395:182::-;35535:34;35531:1;35523:6;35519:14;35512:58;35501:76;:::o;35583:231::-;35723:34;35719:1;35711:6;35707:14;35700:58;35792:14;35787:2;35779:6;35775:15;35768:39;35689:125;:::o;35820:182::-;35960:34;35956:1;35948:6;35944:14;35937:58;35926:76;:::o;36008:228::-;36148:34;36144:1;36136:6;36132:14;36125:58;36217:11;36212:2;36204:6;36200:15;36193:36;36114:122;:::o;36242:234::-;36382:34;36378:1;36370:6;36366:14;36359:58;36451:17;36446:2;36438:6;36434:15;36427:42;36348:128;:::o;36482:223::-;36622:34;36618:1;36610:6;36606:14;36599:58;36691:6;36686:2;36678:6;36674:15;36667:31;36588:117;:::o;36711:220::-;36851:34;36847:1;36839:6;36835:14;36828:58;36920:3;36915:2;36907:6;36903:15;36896:28;36817:114;:::o;36937:236::-;37077:34;37073:1;37065:6;37061:14;37054:58;37146:19;37141:2;37133:6;37129:15;37122:44;37043:130;:::o;37179:181::-;37319:33;37315:1;37307:6;37303:14;37296:57;37285:75;:::o;37366:231::-;37506:34;37502:1;37494:6;37490:14;37483:58;37575:14;37570:2;37562:6;37558:15;37551:39;37472:125;:::o;37603:122::-;37676:24;37694:5;37676:24;:::i;:::-;37669:5;37666:35;37656:2;;37715:1;37712;37705:12;37656:2;37646:79;:::o;37731:116::-;37801:21;37816:5;37801:21;:::i;:::-;37794:5;37791:32;37781:2;;37837:1;37834;37827:12;37781:2;37771:76;:::o;37853:120::-;37925:23;37942:5;37925:23;:::i;:::-;37918:5;37915:34;37905:2;;37963:1;37960;37953:12;37905:2;37895:78;:::o;37979:122::-;38052:24;38070:5;38052:24;:::i;:::-;38045:5;38042:35;38032:2;;38091:1;38088;38081:12;38032:2;38022:79;:::o

Swarm Source

ipfs://768d701dfa2173b5d543baea96004cf92604b5870b63242828db6b6ac5d510c5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.