ETH Price: $2,858.02 (-10.12%)
Gas: 14 Gwei

Token

Bulls.Inc (BINC)
 

Overview

Max Total Supply

4,444 BINC

Holders

1,462

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 BINC
0x9c347f6919bdd277660002760352529e589fb5c2
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:
BullsIncNFT

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at BscScan.com on 2022-02-15
*/

// SPDX-License-Identifier: MIT

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

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


// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
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.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/ERC721Enumerable.sol



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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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/ReentrancyGuard.sol

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

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

    uint256 private _status;

    constructor () {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


pragma solidity >=0.7.0 <0.9.0;

contract BullsIncNFT is ERC721Enumerable, Ownable, ReentrancyGuard {
  using Strings for uint256;

  modifier onlyTeam() {
        bool team = false;
        for (uint x = 0; x<teamAddresses.length;x++){
            if (teamAddresses[x]==msg.sender){
                team = true;
            }
        }
        require(team, "Only Team");
    _;
    }

  address [] public teamAddresses;

  string baseURI;
  string basePromoURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.1 ether;
  uint256 public baseSupply = 0;
  uint256 public maxBaseSupply = 4344;
  uint256 public promoSupply = 0;
  uint256 public maxPromoSupply = 100;
  uint256 public maxMintAmount = 10;

  bool public whitelistPhase = true;
  mapping (address=>uint256) public addressToMintedAmount;

  bool public paused = false;
  bool public revealed = false;
  string public notRevealedUri;

  constructor(
    string memory _initBaseURI,
    string memory _initNotRevealedUri,
    string memory _initBasePromoURI
  ) ERC721("Bulls.Inc", "BINC") {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
    setBasePromoURI(_initBasePromoURI);
    teamAddresses.push(msg.sender);
  }

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

  function _basePromoURI() internal view virtual returns (string memory) {
    return basePromoURI;
  }

  // public
  function mint(uint256 _mintAmount) public payable nonReentrant {
   
    require(!paused , "Minting paused.");
    require(_mintAmount > 0, "Can't mint 0");
    require(_mintAmount <= maxMintAmount, "Exceeds mint limit." );
    require(baseSupply + _mintAmount <= maxBaseSupply , "Cannot exceed max supply.");

    if (msg.sender != owner()) {
      require(msg.value == cost * _mintAmount, "Incorrect value sent");
      if (whitelistPhase){
        require(addressToMintedAmount[msg.sender]+_mintAmount<=maxMintAmount, "Exceeds address limit.");
      }
    }

    addressToMintedAmount[msg.sender]+=_mintAmount;
    
    uint256 initialBaseSupply = baseSupply;
    baseSupply+=_mintAmount;

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

  }

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

  // alias for compatibility
  function tokensOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    return walletOfOwner(_owner);
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

    if (tokenId<=maxBaseSupply){
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
            : "";
    }else{
         string memory currentBaseURI = _basePromoURI();
         return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
            : "";
    }

  }

  //only team
  function mint_promo(uint256 _mintAmount, address _recipient) public onlyTeam nonReentrant {
    require(_mintAmount > 0, "Can't mint 0");
    require(promoSupply + _mintAmount <= maxPromoSupply, "Promos exhausted.");

    uint256 initialSupply = promoSupply;
    promoSupply+=_mintAmount;
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_recipient, maxBaseSupply + initialSupply +i);
    }

  }

  // only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

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

  function setBasePromoURI(string memory _newBasePromoURI) public onlyOwner {
    basePromoURI = _newBasePromoURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function setTeamAddresses(address[] memory _team) public onlyOwner {
    teamAddresses = _team;
  }

  function setWhitelistPhase(bool _state) public onlyOwner {
    whitelistPhase = _state;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"string","name":"_initBasePromoURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBaseSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPromoSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"mint_promo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"promoSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBasePromoURI","type":"string"}],"name":"setBasePromoURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_team","type":"address[]"}],"name":"setTeamAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistPhase","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":"","type":"uint256"}],"name":"teamAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f9080519060200190620000519291906200055c565b5067016345785d8a000060105560006011556110f860125560006013556064601455600a6015556001601660006101000a81548160ff0219169083151502179055506000601860006101000a81548160ff0219169083151502179055506000601860016101000a81548160ff021916908315150217905550348015620000d657600080fd5b5060405162005d7338038062005d738339818101604052810190620000fc91906200068a565b6040518060400160405280600981526020017f42756c6c732e496e6300000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f42494e43000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001809291906200055c565b508060019080519060200190620001999291906200055c565b505050620001bc620001b06200026360201b60201c565b6200026b60201b60201c565b6001600b81905550620001d5836200033160201b60201c565b620001e682620003dc60201b60201c565b620001f7816200048760201b60201c565b600c339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506200094a565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003416200026360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003676200053260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b7906200076a565b60405180910390fd5b80600d9080519060200190620003d89291906200055c565b5050565b620003ec6200026360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004126200053260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200046b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000462906200076a565b60405180910390fd5b8060199080519060200190620004839291906200055c565b5050565b620004976200026360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004bd6200053260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000516576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200050d906200076a565b60405180910390fd5b80600e90805190602001906200052e9291906200055c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200056a9062000832565b90600052602060002090601f0160209004810192826200058e5760008555620005da565b82601f10620005a957805160ff1916838001178555620005da565b82800160010185558215620005da579182015b82811115620005d9578251825591602001919060010190620005bc565b5b509050620005e99190620005ed565b5090565b5b8082111562000608576000816000905550600101620005ee565b5090565b6000620006236200061d84620007b5565b6200078c565b90508281526020810184848401111562000642576200064162000901565b5b6200064f848285620007fc565b509392505050565b600082601f8301126200066f576200066e620008fc565b5b8151620006818482602086016200060c565b91505092915050565b600080600060608486031215620006a657620006a56200090b565b5b600084015167ffffffffffffffff811115620006c757620006c662000906565b5b620006d58682870162000657565b935050602084015167ffffffffffffffff811115620006f957620006f862000906565b5b620007078682870162000657565b925050604084015167ffffffffffffffff8111156200072b576200072a62000906565b5b620007398682870162000657565b9150509250925092565b600062000752602083620007eb565b91506200075f8262000921565b602082019050919050565b60006020820190508181036000830152620007858162000743565b9050919050565b600062000798620007ab565b9050620007a6828262000868565b919050565b6000604051905090565b600067ffffffffffffffff821115620007d357620007d2620008cd565b5b620007de8262000910565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200081c578082015181840152602081019050620007ff565b838111156200082c576000848401525b50505050565b600060028204905060018216806200084b57607f821691505b602082108114156200086257620008616200089e565b5b50919050565b620008738262000910565b810181811067ffffffffffffffff82111715620008955762000894620008cd565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b615419806200095a6000396000f3fe6080604052600436106102885760003560e01c80636352211e1161015a578063b557bbee116100c1578063da3ef23f1161007a578063da3ef23f146109d5578063e985e9c5146109fe578063f2c4ce1e14610a3b578063f2fde38b14610a64578063fb6195df14610a8d578063fe625fb614610ab657610288565b8063b557bbee146108c5578063b88d4fde146108ee578063c668286214610917578063c87b56dd14610942578063d1b7bda31461097f578063d1b7ee37146109aa57610288565b8063860f504811610113578063860f5048146107e85780638da5cb5b1461081357806395d89b411461083e578063a0712d6814610869578063a22cb46514610885578063a475b5dd146108ae57610288565b80636352211e146106c45780636e63ce621461070157806370a082311461072c578063715018a614610769578063815d544c146107805780638462151c146107ab57610288565b806323b872dd116101fe57806344a0d68a116101b757806344a0d68a146105a25780634f6ccce7146105cb578063518302271461060857806355f804b3146106335780635c975abb1461065c57806361790a671461068757610288565b806323b872dd146104825780632419217e146104ab5780632f745c59146104e85780633ccfd60b1461052557806342842e0e1461053c578063438b63001461056557610288565b8063081c8c4411610250578063081c8c4414610384578063088a4ed0146103af578063095ea7b3146103d857806313faede61461040157806318160ddd1461042c578063239c70ae1461045757610288565b806301ffc9a71461028d57806302329a29146102ca57806302bdd755146102f357806306fdde031461031c578063081812fc14610347575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613ca3565b610adf565b6040516102c1919061442a565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190613c76565b610b59565b005b3480156102ff57600080fd5b5061031a60048036038101906103159190613c76565b610bf2565b005b34801561032857600080fd5b50610331610c8b565b60405161033e9190614445565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190613d46565b610d1d565b60405161037b91906143a1565b60405180910390f35b34801561039057600080fd5b50610399610da2565b6040516103a69190614445565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613d46565b610e30565b005b3480156103e457600080fd5b506103ff60048036038101906103fa9190613bed565b610eb6565b005b34801561040d57600080fd5b50610416610fce565b60405161042391906147c7565b60405180910390f35b34801561043857600080fd5b50610441610fd4565b60405161044e91906147c7565b60405180910390f35b34801561046357600080fd5b5061046c610fe1565b60405161047991906147c7565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190613ad7565b610fe7565b005b3480156104b757600080fd5b506104d260048036038101906104cd9190613d46565b611047565b6040516104df91906143a1565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190613bed565b611086565b60405161051c91906147c7565b60405180910390f35b34801561053157600080fd5b5061053a61112b565b005b34801561054857600080fd5b50610563600480360381019061055e9190613ad7565b611227565b005b34801561057157600080fd5b5061058c60048036038101906105879190613a6a565b611247565b6040516105999190614408565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190613d46565b6112f5565b005b3480156105d757600080fd5b506105f260048036038101906105ed9190613d46565b61137b565b6040516105ff91906147c7565b60405180910390f35b34801561061457600080fd5b5061061d6113ec565b60405161062a919061442a565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190613cfd565b6113ff565b005b34801561066857600080fd5b50610671611495565b60405161067e919061442a565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190613a6a565b6114a8565b6040516106bb91906147c7565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190613d46565b6114c0565b6040516106f891906143a1565b60405180910390f35b34801561070d57600080fd5b50610716611572565b60405161072391906147c7565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190613a6a565b611578565b60405161076091906147c7565b60405180910390f35b34801561077557600080fd5b5061077e611630565b005b34801561078c57600080fd5b506107956116b8565b6040516107a2919061442a565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd9190613a6a565b6116cb565b6040516107df9190614408565b60405180910390f35b3480156107f457600080fd5b506107fd6116dd565b60405161080a91906147c7565b60405180910390f35b34801561081f57600080fd5b506108286116e3565b60405161083591906143a1565b60405180910390f35b34801561084a57600080fd5b5061085361170d565b6040516108609190614445565b60405180910390f35b610883600480360381019061087e9190613d46565b61179f565b005b34801561089157600080fd5b506108ac60048036038101906108a79190613bad565b611aff565b005b3480156108ba57600080fd5b506108c3611c80565b005b3480156108d157600080fd5b506108ec60048036038101906108e79190613cfd565b611d19565b005b3480156108fa57600080fd5b5061091560048036038101906109109190613b2a565b611daf565b005b34801561092357600080fd5b5061092c611e11565b6040516109399190614445565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613d46565b611e9f565b6040516109769190614445565b60405180910390f35b34801561098b57600080fd5b50610994612061565b6040516109a191906147c7565b60405180910390f35b3480156109b657600080fd5b506109bf612067565b6040516109cc91906147c7565b60405180910390f35b3480156109e157600080fd5b506109fc60048036038101906109f79190613cfd565b61206d565b005b348015610a0a57600080fd5b50610a256004803603810190610a209190613a97565b612103565b604051610a32919061442a565b60405180910390f35b348015610a4757600080fd5b50610a626004803603810190610a5d9190613cfd565b612197565b005b348015610a7057600080fd5b50610a8b6004803603810190610a869190613a6a565b61222d565b005b348015610a9957600080fd5b50610ab46004803603810190610aaf9190613d73565b612325565b005b348015610ac257600080fd5b50610add6004803603810190610ad89190613c2d565b612556565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b525750610b51826125ec565b5b9050919050565b610b616126ce565b73ffffffffffffffffffffffffffffffffffffffff16610b7f6116e3565b73ffffffffffffffffffffffffffffffffffffffff1614610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc906146a7565b60405180910390fd5b80601860006101000a81548160ff02191690831515021790555050565b610bfa6126ce565b73ffffffffffffffffffffffffffffffffffffffff16610c186116e3565b73ffffffffffffffffffffffffffffffffffffffff1614610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c65906146a7565b60405180910390fd5b80601660006101000a81548160ff02191690831515021790555050565b606060008054610c9a90614afc565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc690614afc565b8015610d135780601f10610ce857610100808354040283529160200191610d13565b820191906000526020600020905b815481529060010190602001808311610cf657829003601f168201915b5050505050905090565b6000610d28826126d6565b610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e90614667565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60198054610daf90614afc565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddb90614afc565b8015610e285780601f10610dfd57610100808354040283529160200191610e28565b820191906000526020600020905b815481529060010190602001808311610e0b57829003601f168201915b505050505081565b610e386126ce565b73ffffffffffffffffffffffffffffffffffffffff16610e566116e3565b73ffffffffffffffffffffffffffffffffffffffff1614610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea3906146a7565b60405180910390fd5b8060158190555050565b6000610ec1826114c0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990614707565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f516126ce565b73ffffffffffffffffffffffffffffffffffffffff161480610f805750610f7f81610f7a6126ce565b612103565b5b610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb6906145e7565b60405180910390fd5b610fc98383612742565b505050565b60105481565b6000600880549050905090565b60155481565b610ff8610ff26126ce565b826127fb565b611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90614747565b60405180910390fd5b6110428383836128d9565b505050565b600c818154811061105757600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061109183611578565b82106110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990614467565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111336126ce565b73ffffffffffffffffffffffffffffffffffffffff166111516116e3565b73ffffffffffffffffffffffffffffffffffffffff16146111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e906146a7565b60405180910390fd5b60006111b16116e3565b73ffffffffffffffffffffffffffffffffffffffff16476040516111d49061438c565b60006040518083038185875af1925050503d8060008114611211576040519150601f19603f3d011682016040523d82523d6000602084013e611216565b606091505b505090508061122457600080fd5b50565b61124283838360405180602001604052806000815250611daf565b505050565b6060600061125483611578565b905060008167ffffffffffffffff81111561127257611271614cc4565b5b6040519080825280602002602001820160405280156112a05781602001602082028036833780820191505090505b50905060005b828110156112ea576112b88582611086565b8282815181106112cb576112ca614c95565b5b60200260200101818152505080806112e290614b5f565b9150506112a6565b508092505050919050565b6112fd6126ce565b73ffffffffffffffffffffffffffffffffffffffff1661131b6116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611371576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611368906146a7565b60405180910390fd5b8060108190555050565b6000611385610fd4565b82106113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd90614787565b60405180910390fd5b600882815481106113da576113d9614c95565b5b90600052602060002001549050919050565b601860019054906101000a900460ff1681565b6114076126ce565b73ffffffffffffffffffffffffffffffffffffffff166114256116e3565b73ffffffffffffffffffffffffffffffffffffffff161461147b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611472906146a7565b60405180910390fd5b80600d9080519060200190611491929190613756565b5050565b601860009054906101000a900460ff1681565b60176020528060005260406000206000915090505481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090614627565b60405180910390fd5b80915050919050565b60145481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090614607565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116386126ce565b73ffffffffffffffffffffffffffffffffffffffff166116566116e3565b73ffffffffffffffffffffffffffffffffffffffff16146116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a3906146a7565b60405180910390fd5b6116b66000612b35565b565b601660009054906101000a900460ff1681565b60606116d682611247565b9050919050565b60115481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461171c90614afc565b80601f016020809104026020016040519081016040528092919081815260200182805461174890614afc565b80156117955780601f1061176a57610100808354040283529160200191611795565b820191906000526020600020905b81548152906001019060200180831161177857829003601f168201915b5050505050905090565b6002600b5414156117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc906147a7565b60405180910390fd5b6002600b81905550601860009054906101000a900460ff161561183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183490614687565b60405180910390fd5b60008111611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790614567565b60405180910390fd5b6015548111156118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90614767565b60405180910390fd5b601254816011546118d69190614931565b1115611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90614727565b60405180910390fd5b61191f6116e3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a46578060105461195f91906149b8565b34146119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790614587565b60405180910390fd5b601660009054906101000a900460ff1615611a455760155481601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a039190614931565b1115611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b906144c7565b60405180910390fd5b5b5b80601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a959190614931565b92505081905550600060115490508160116000828254611ab59190614931565b925050819055506000600190505b828111611af257611adf338284611ada9190614931565b612bfb565b8080611aea90614b5f565b915050611ac3565b50506001600b8190555050565b611b076126ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90614547565b60405180910390fd5b8060056000611b826126ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c2f6126ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c74919061442a565b60405180910390a35050565b611c886126ce565b73ffffffffffffffffffffffffffffffffffffffff16611ca66116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf3906146a7565b60405180910390fd5b6001601860016101000a81548160ff021916908315150217905550565b611d216126ce565b73ffffffffffffffffffffffffffffffffffffffff16611d3f6116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8c906146a7565b60405180910390fd5b80600e9080519060200190611dab929190613756565b5050565b611dc0611dba6126ce565b836127fb565b611dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df690614747565b60405180910390fd5b611e0b84848484612c19565b50505050565b600f8054611e1e90614afc565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4a90614afc565b8015611e975780601f10611e6c57610100808354040283529160200191611e97565b820191906000526020600020905b815481529060010190602001808311611e7a57829003601f168201915b505050505081565b6060611eaa826126d6565b611ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee0906146e7565b60405180910390fd5b60001515601860019054906101000a900460ff1615151415611f975760198054611f1290614afc565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3e90614afc565b8015611f8b5780601f10611f6057610100808354040283529160200191611f8b565b820191906000526020600020905b815481529060010190602001808311611f6e57829003601f168201915b5050505050905061205c565b6012548211612000576000611faa612c75565b90506000815111611fca5760405180602001604052806000815250611ff8565b80611fd484612d07565b600f604051602001611fe89392919061435b565b6040516020818303038152906040525b91505061205c565b600061200a612e68565b9050600081511161202a5760405180602001604052806000815250612058565b8061203484612d07565b600f6040516020016120489392919061435b565b6040516020818303038152906040525b9150505b919050565b60135481565b60125481565b6120756126ce565b73ffffffffffffffffffffffffffffffffffffffff166120936116e3565b73ffffffffffffffffffffffffffffffffffffffff16146120e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e0906146a7565b60405180910390fd5b80600f90805190602001906120ff929190613756565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61219f6126ce565b73ffffffffffffffffffffffffffffffffffffffff166121bd6116e3565b73ffffffffffffffffffffffffffffffffffffffff1614612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a906146a7565b60405180910390fd5b8060199080519060200190612229929190613756565b5050565b6122356126ce565b73ffffffffffffffffffffffffffffffffffffffff166122536116e3565b73ffffffffffffffffffffffffffffffffffffffff16146122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a0906146a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612319576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612310906144a7565b60405180910390fd5b61232281612b35565b50565b6000805b600c805490508110156123c0573373ffffffffffffffffffffffffffffffffffffffff16600c828154811061236157612360614c95565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123ad57600191505b80806123b890614b5f565b915050612329565b5080612401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f8906145a7565b60405180910390fd5b6002600b541415612447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243e906147a7565b60405180910390fd5b6002600b8190555060008311612492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248990614567565b60405180910390fd5b601454836013546124a39190614931565b11156124e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124db90614507565b60405180910390fd5b6000601354905083601360008282546124fd9190614931565b925050819055506000600190505b848111612547576125348482846012546125259190614931565b61252f9190614931565b612bfb565b808061253f90614b5f565b91505061250b565b50506001600b81905550505050565b61255e6126ce565b73ffffffffffffffffffffffffffffffffffffffff1661257c6116e3565b73ffffffffffffffffffffffffffffffffffffffff16146125d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c9906146a7565b60405180910390fd5b80600c90805190602001906125e89291906137dc565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126b757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126c757506126c682612efa565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127b5836114c0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612806826126d6565b612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c906145c7565b60405180910390fd5b6000612850836114c0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128bf57508373ffffffffffffffffffffffffffffffffffffffff166128a784610d1d565b73ffffffffffffffffffffffffffffffffffffffff16145b806128d057506128cf8185612103565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128f9826114c0565b73ffffffffffffffffffffffffffffffffffffffff161461294f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612946906146c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b690614527565b60405180910390fd5b6129ca838383612f64565b6129d5600082612742565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a259190614a12565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a7c9190614931565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c15828260405180602001604052806000815250613078565b5050565b612c248484846128d9565b612c30848484846130d3565b612c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6690614487565b60405180910390fd5b50505050565b6060600d8054612c8490614afc565b80601f0160208091040260200160405190810160405280929190818152602001828054612cb090614afc565b8015612cfd5780601f10612cd257610100808354040283529160200191612cfd565b820191906000526020600020905b815481529060010190602001808311612ce057829003601f168201915b5050505050905090565b60606000821415612d4f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e63565b600082905060005b60008214612d81578080612d6a90614b5f565b915050600a82612d7a9190614987565b9150612d57565b60008167ffffffffffffffff811115612d9d57612d9c614cc4565b5b6040519080825280601f01601f191660200182016040528015612dcf5781602001600182028036833780820191505090505b5090505b60008514612e5c57600182612de89190614a12565b9150600a85612df79190614ba8565b6030612e039190614931565b60f81b818381518110612e1957612e18614c95565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e559190614987565b9450612dd3565b8093505050505b919050565b6060600e8054612e7790614afc565b80601f0160208091040260200160405190810160405280929190818152602001828054612ea390614afc565b8015612ef05780601f10612ec557610100808354040283529160200191612ef0565b820191906000526020600020905b815481529060010190602001808311612ed357829003601f168201915b5050505050905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f6f83838361326a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fb257612fad8161326f565b612ff1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ff057612fef83826132b8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130345761302f81613425565b613073565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130725761307182826134f6565b5b5b505050565b6130828383613575565b61308f60008484846130d3565b6130ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c590614487565b60405180910390fd5b505050565b60006130f48473ffffffffffffffffffffffffffffffffffffffff16613743565b1561325d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261311d6126ce565b8786866040518563ffffffff1660e01b815260040161313f94939291906143bc565b602060405180830381600087803b15801561315957600080fd5b505af192505050801561318a57506040513d601f19601f820116820180604052508101906131879190613cd0565b60015b61320d573d80600081146131ba576040519150601f19603f3d011682016040523d82523d6000602084013e6131bf565b606091505b50600081511415613205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fc90614487565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613262565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132c584611578565b6132cf9190614a12565b90506000600760008481526020019081526020016000205490508181146133b4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134399190614a12565b905060006009600084815260200190815260200160002054905060006008838154811061346957613468614c95565b5b90600052602060002001549050806008838154811061348b5761348a614c95565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806134da576134d9614c66565b5b6001900381819060005260206000200160009055905550505050565b600061350183611578565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135dc90614647565b60405180910390fd5b6135ee816126d6565b1561362e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613625906144e7565b60405180910390fd5b61363a60008383612f64565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461368a9190614931565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461376290614afc565b90600052602060002090601f01602090048101928261378457600085556137cb565b82601f1061379d57805160ff19168380011785556137cb565b828001600101855582156137cb579182015b828111156137ca5782518255916020019190600101906137af565b5b5090506137d89190613866565b5090565b828054828255906000526020600020908101928215613855579160200282015b828111156138545782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906137fc565b5b5090506138629190613866565b5090565b5b8082111561387f576000816000905550600101613867565b5090565b600061389661389184614807565b6147e2565b905080838252602082019050828560208602820111156138b9576138b8614cf8565b5b60005b858110156138e957816138cf8882613977565b8452602084019350602083019250506001810190506138bc565b5050509392505050565b600061390661390184614833565b6147e2565b90508281526020810184848401111561392257613921614cfd565b5b61392d848285614aba565b509392505050565b600061394861394384614864565b6147e2565b90508281526020810184848401111561396457613963614cfd565b5b61396f848285614aba565b509392505050565b60008135905061398681615387565b92915050565b600082601f8301126139a1576139a0614cf3565b5b81356139b1848260208601613883565b91505092915050565b6000813590506139c98161539e565b92915050565b6000813590506139de816153b5565b92915050565b6000815190506139f3816153b5565b92915050565b600082601f830112613a0e57613a0d614cf3565b5b8135613a1e8482602086016138f3565b91505092915050565b600082601f830112613a3c57613a3b614cf3565b5b8135613a4c848260208601613935565b91505092915050565b600081359050613a64816153cc565b92915050565b600060208284031215613a8057613a7f614d07565b5b6000613a8e84828501613977565b91505092915050565b60008060408385031215613aae57613aad614d07565b5b6000613abc85828601613977565b9250506020613acd85828601613977565b9150509250929050565b600080600060608486031215613af057613aef614d07565b5b6000613afe86828701613977565b9350506020613b0f86828701613977565b9250506040613b2086828701613a55565b9150509250925092565b60008060008060808587031215613b4457613b43614d07565b5b6000613b5287828801613977565b9450506020613b6387828801613977565b9350506040613b7487828801613a55565b925050606085013567ffffffffffffffff811115613b9557613b94614d02565b5b613ba1878288016139f9565b91505092959194509250565b60008060408385031215613bc457613bc3614d07565b5b6000613bd285828601613977565b9250506020613be3858286016139ba565b9150509250929050565b60008060408385031215613c0457613c03614d07565b5b6000613c1285828601613977565b9250506020613c2385828601613a55565b9150509250929050565b600060208284031215613c4357613c42614d07565b5b600082013567ffffffffffffffff811115613c6157613c60614d02565b5b613c6d8482850161398c565b91505092915050565b600060208284031215613c8c57613c8b614d07565b5b6000613c9a848285016139ba565b91505092915050565b600060208284031215613cb957613cb8614d07565b5b6000613cc7848285016139cf565b91505092915050565b600060208284031215613ce657613ce5614d07565b5b6000613cf4848285016139e4565b91505092915050565b600060208284031215613d1357613d12614d07565b5b600082013567ffffffffffffffff811115613d3157613d30614d02565b5b613d3d84828501613a27565b91505092915050565b600060208284031215613d5c57613d5b614d07565b5b6000613d6a84828501613a55565b91505092915050565b60008060408385031215613d8a57613d89614d07565b5b6000613d9885828601613a55565b9250506020613da985828601613977565b9150509250929050565b6000613dbf838361433d565b60208301905092915050565b613dd481614a46565b82525050565b6000613de5826148ba565b613def81856148e8565b9350613dfa83614895565b8060005b83811015613e2b578151613e128882613db3565b9750613e1d836148db565b925050600181019050613dfe565b5085935050505092915050565b613e4181614a58565b82525050565b6000613e52826148c5565b613e5c81856148f9565b9350613e6c818560208601614ac9565b613e7581614d0c565b840191505092915050565b6000613e8b826148d0565b613e958185614915565b9350613ea5818560208601614ac9565b613eae81614d0c565b840191505092915050565b6000613ec4826148d0565b613ece8185614926565b9350613ede818560208601614ac9565b80840191505092915050565b60008154613ef781614afc565b613f018186614926565b94506001821660008114613f1c5760018114613f2d57613f60565b60ff19831686528186019350613f60565b613f36856148a5565b60005b83811015613f5857815481890152600182019150602081019050613f39565b838801955050505b50505092915050565b6000613f76602b83614915565b9150613f8182614d1d565b604082019050919050565b6000613f99603283614915565b9150613fa482614d6c565b604082019050919050565b6000613fbc602683614915565b9150613fc782614dbb565b604082019050919050565b6000613fdf601683614915565b9150613fea82614e0a565b602082019050919050565b6000614002601c83614915565b915061400d82614e33565b602082019050919050565b6000614025601183614915565b915061403082614e5c565b602082019050919050565b6000614048602483614915565b915061405382614e85565b604082019050919050565b600061406b601983614915565b915061407682614ed4565b602082019050919050565b600061408e600c83614915565b915061409982614efd565b602082019050919050565b60006140b1601483614915565b91506140bc82614f26565b602082019050919050565b60006140d4600983614915565b91506140df82614f4f565b602082019050919050565b60006140f7602c83614915565b915061410282614f78565b604082019050919050565b600061411a603883614915565b915061412582614fc7565b604082019050919050565b600061413d602a83614915565b915061414882615016565b604082019050919050565b6000614160602983614915565b915061416b82615065565b604082019050919050565b6000614183602083614915565b915061418e826150b4565b602082019050919050565b60006141a6602c83614915565b91506141b1826150dd565b604082019050919050565b60006141c9600f83614915565b91506141d48261512c565b602082019050919050565b60006141ec602083614915565b91506141f782615155565b602082019050919050565b600061420f602983614915565b915061421a8261517e565b604082019050919050565b6000614232602f83614915565b915061423d826151cd565b604082019050919050565b6000614255602183614915565b91506142608261521c565b604082019050919050565b6000614278601983614915565b91506142838261526b565b602082019050919050565b600061429b60008361490a565b91506142a682615294565b600082019050919050565b60006142be603183614915565b91506142c982615297565b604082019050919050565b60006142e1601383614915565b91506142ec826152e6565b602082019050919050565b6000614304602c83614915565b915061430f8261530f565b604082019050919050565b6000614327601f83614915565b91506143328261535e565b602082019050919050565b61434681614ab0565b82525050565b61435581614ab0565b82525050565b60006143678286613eb9565b91506143738285613eb9565b915061437f8284613eea565b9150819050949350505050565b60006143978261428e565b9150819050919050565b60006020820190506143b66000830184613dcb565b92915050565b60006080820190506143d16000830187613dcb565b6143de6020830186613dcb565b6143eb604083018561434c565b81810360608301526143fd8184613e47565b905095945050505050565b600060208201905081810360008301526144228184613dda565b905092915050565b600060208201905061443f6000830184613e38565b92915050565b6000602082019050818103600083015261445f8184613e80565b905092915050565b6000602082019050818103600083015261448081613f69565b9050919050565b600060208201905081810360008301526144a081613f8c565b9050919050565b600060208201905081810360008301526144c081613faf565b9050919050565b600060208201905081810360008301526144e081613fd2565b9050919050565b6000602082019050818103600083015261450081613ff5565b9050919050565b6000602082019050818103600083015261452081614018565b9050919050565b600060208201905081810360008301526145408161403b565b9050919050565b600060208201905081810360008301526145608161405e565b9050919050565b6000602082019050818103600083015261458081614081565b9050919050565b600060208201905081810360008301526145a0816140a4565b9050919050565b600060208201905081810360008301526145c0816140c7565b9050919050565b600060208201905081810360008301526145e0816140ea565b9050919050565b600060208201905081810360008301526146008161410d565b9050919050565b6000602082019050818103600083015261462081614130565b9050919050565b6000602082019050818103600083015261464081614153565b9050919050565b6000602082019050818103600083015261466081614176565b9050919050565b6000602082019050818103600083015261468081614199565b9050919050565b600060208201905081810360008301526146a0816141bc565b9050919050565b600060208201905081810360008301526146c0816141df565b9050919050565b600060208201905081810360008301526146e081614202565b9050919050565b6000602082019050818103600083015261470081614225565b9050919050565b6000602082019050818103600083015261472081614248565b9050919050565b600060208201905081810360008301526147408161426b565b9050919050565b60006020820190508181036000830152614760816142b1565b9050919050565b60006020820190508181036000830152614780816142d4565b9050919050565b600060208201905081810360008301526147a0816142f7565b9050919050565b600060208201905081810360008301526147c08161431a565b9050919050565b60006020820190506147dc600083018461434c565b92915050565b60006147ec6147fd565b90506147f88282614b2e565b919050565b6000604051905090565b600067ffffffffffffffff82111561482257614821614cc4565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561484e5761484d614cc4565b5b61485782614d0c565b9050602081019050919050565b600067ffffffffffffffff82111561487f5761487e614cc4565b5b61488882614d0c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061493c82614ab0565b915061494783614ab0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561497c5761497b614bd9565b5b828201905092915050565b600061499282614ab0565b915061499d83614ab0565b9250826149ad576149ac614c08565b5b828204905092915050565b60006149c382614ab0565b91506149ce83614ab0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a0757614a06614bd9565b5b828202905092915050565b6000614a1d82614ab0565b9150614a2883614ab0565b925082821015614a3b57614a3a614bd9565b5b828203905092915050565b6000614a5182614a90565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ae7578082015181840152602081019050614acc565b83811115614af6576000848401525b50505050565b60006002820490506001821680614b1457607f821691505b60208210811415614b2857614b27614c37565b5b50919050565b614b3782614d0c565b810181811067ffffffffffffffff82111715614b5657614b55614cc4565b5b80604052505050565b6000614b6a82614ab0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b9d57614b9c614bd9565b5b600182019050919050565b6000614bb382614ab0565b9150614bbe83614ab0565b925082614bce57614bcd614c08565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564732061646472657373206c696d69742e00000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f50726f6d6f73206578686175737465642e000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43616e2774206d696e7420300000000000000000000000000000000000000000600082015250565b7f496e636f72726563742076616c75652073656e74000000000000000000000000600082015250565b7f4f6e6c79205465616d0000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d696e74696e67207061757365642e0000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f7420657863656564206d617820737570706c792e00000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473206d696e74206c696d69742e00000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61539081614a46565b811461539b57600080fd5b50565b6153a781614a58565b81146153b257600080fd5b50565b6153be81614a64565b81146153c957600080fd5b50565b6153d581614ab0565b81146153e057600080fd5b5056fea26469706673582212208a53d898314b0ace6f47b0d677fdab6a5ab9ed5966de63476e1405d328b8d04264736f6c63430008060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001a68747470733a2f2f6170692e6e66742e62756c6c732e696e632f000000000000000000000000000000000000000000000000000000000000000000000000005f68747470733a2f2f62756c6c73696e632e6d7970696e6174612e636c6f75642f697066732f516d4e525a416b435339454758344d7634715555435967763176326d5645696d55516864666d6f4c4155446b62512f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000001a68747470733a2f2f6170692e6e66742e62756c6c732e696e632f000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c80636352211e1161015a578063b557bbee116100c1578063da3ef23f1161007a578063da3ef23f146109d5578063e985e9c5146109fe578063f2c4ce1e14610a3b578063f2fde38b14610a64578063fb6195df14610a8d578063fe625fb614610ab657610288565b8063b557bbee146108c5578063b88d4fde146108ee578063c668286214610917578063c87b56dd14610942578063d1b7bda31461097f578063d1b7ee37146109aa57610288565b8063860f504811610113578063860f5048146107e85780638da5cb5b1461081357806395d89b411461083e578063a0712d6814610869578063a22cb46514610885578063a475b5dd146108ae57610288565b80636352211e146106c45780636e63ce621461070157806370a082311461072c578063715018a614610769578063815d544c146107805780638462151c146107ab57610288565b806323b872dd116101fe57806344a0d68a116101b757806344a0d68a146105a25780634f6ccce7146105cb578063518302271461060857806355f804b3146106335780635c975abb1461065c57806361790a671461068757610288565b806323b872dd146104825780632419217e146104ab5780632f745c59146104e85780633ccfd60b1461052557806342842e0e1461053c578063438b63001461056557610288565b8063081c8c4411610250578063081c8c4414610384578063088a4ed0146103af578063095ea7b3146103d857806313faede61461040157806318160ddd1461042c578063239c70ae1461045757610288565b806301ffc9a71461028d57806302329a29146102ca57806302bdd755146102f357806306fdde031461031c578063081812fc14610347575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613ca3565b610adf565b6040516102c1919061442a565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190613c76565b610b59565b005b3480156102ff57600080fd5b5061031a60048036038101906103159190613c76565b610bf2565b005b34801561032857600080fd5b50610331610c8b565b60405161033e9190614445565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190613d46565b610d1d565b60405161037b91906143a1565b60405180910390f35b34801561039057600080fd5b50610399610da2565b6040516103a69190614445565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613d46565b610e30565b005b3480156103e457600080fd5b506103ff60048036038101906103fa9190613bed565b610eb6565b005b34801561040d57600080fd5b50610416610fce565b60405161042391906147c7565b60405180910390f35b34801561043857600080fd5b50610441610fd4565b60405161044e91906147c7565b60405180910390f35b34801561046357600080fd5b5061046c610fe1565b60405161047991906147c7565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190613ad7565b610fe7565b005b3480156104b757600080fd5b506104d260048036038101906104cd9190613d46565b611047565b6040516104df91906143a1565b60405180910390f35b3480156104f457600080fd5b5061050f600480360381019061050a9190613bed565b611086565b60405161051c91906147c7565b60405180910390f35b34801561053157600080fd5b5061053a61112b565b005b34801561054857600080fd5b50610563600480360381019061055e9190613ad7565b611227565b005b34801561057157600080fd5b5061058c60048036038101906105879190613a6a565b611247565b6040516105999190614408565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c49190613d46565b6112f5565b005b3480156105d757600080fd5b506105f260048036038101906105ed9190613d46565b61137b565b6040516105ff91906147c7565b60405180910390f35b34801561061457600080fd5b5061061d6113ec565b60405161062a919061442a565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190613cfd565b6113ff565b005b34801561066857600080fd5b50610671611495565b60405161067e919061442a565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190613a6a565b6114a8565b6040516106bb91906147c7565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190613d46565b6114c0565b6040516106f891906143a1565b60405180910390f35b34801561070d57600080fd5b50610716611572565b60405161072391906147c7565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190613a6a565b611578565b60405161076091906147c7565b60405180910390f35b34801561077557600080fd5b5061077e611630565b005b34801561078c57600080fd5b506107956116b8565b6040516107a2919061442a565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd9190613a6a565b6116cb565b6040516107df9190614408565b60405180910390f35b3480156107f457600080fd5b506107fd6116dd565b60405161080a91906147c7565b60405180910390f35b34801561081f57600080fd5b506108286116e3565b60405161083591906143a1565b60405180910390f35b34801561084a57600080fd5b5061085361170d565b6040516108609190614445565b60405180910390f35b610883600480360381019061087e9190613d46565b61179f565b005b34801561089157600080fd5b506108ac60048036038101906108a79190613bad565b611aff565b005b3480156108ba57600080fd5b506108c3611c80565b005b3480156108d157600080fd5b506108ec60048036038101906108e79190613cfd565b611d19565b005b3480156108fa57600080fd5b5061091560048036038101906109109190613b2a565b611daf565b005b34801561092357600080fd5b5061092c611e11565b6040516109399190614445565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613d46565b611e9f565b6040516109769190614445565b60405180910390f35b34801561098b57600080fd5b50610994612061565b6040516109a191906147c7565b60405180910390f35b3480156109b657600080fd5b506109bf612067565b6040516109cc91906147c7565b60405180910390f35b3480156109e157600080fd5b506109fc60048036038101906109f79190613cfd565b61206d565b005b348015610a0a57600080fd5b50610a256004803603810190610a209190613a97565b612103565b604051610a32919061442a565b60405180910390f35b348015610a4757600080fd5b50610a626004803603810190610a5d9190613cfd565b612197565b005b348015610a7057600080fd5b50610a8b6004803603810190610a869190613a6a565b61222d565b005b348015610a9957600080fd5b50610ab46004803603810190610aaf9190613d73565b612325565b005b348015610ac257600080fd5b50610add6004803603810190610ad89190613c2d565b612556565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b525750610b51826125ec565b5b9050919050565b610b616126ce565b73ffffffffffffffffffffffffffffffffffffffff16610b7f6116e3565b73ffffffffffffffffffffffffffffffffffffffff1614610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc906146a7565b60405180910390fd5b80601860006101000a81548160ff02191690831515021790555050565b610bfa6126ce565b73ffffffffffffffffffffffffffffffffffffffff16610c186116e3565b73ffffffffffffffffffffffffffffffffffffffff1614610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c65906146a7565b60405180910390fd5b80601660006101000a81548160ff02191690831515021790555050565b606060008054610c9a90614afc565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc690614afc565b8015610d135780601f10610ce857610100808354040283529160200191610d13565b820191906000526020600020905b815481529060010190602001808311610cf657829003601f168201915b5050505050905090565b6000610d28826126d6565b610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e90614667565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60198054610daf90614afc565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddb90614afc565b8015610e285780601f10610dfd57610100808354040283529160200191610e28565b820191906000526020600020905b815481529060010190602001808311610e0b57829003601f168201915b505050505081565b610e386126ce565b73ffffffffffffffffffffffffffffffffffffffff16610e566116e3565b73ffffffffffffffffffffffffffffffffffffffff1614610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea3906146a7565b60405180910390fd5b8060158190555050565b6000610ec1826114c0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990614707565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f516126ce565b73ffffffffffffffffffffffffffffffffffffffff161480610f805750610f7f81610f7a6126ce565b612103565b5b610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb6906145e7565b60405180910390fd5b610fc98383612742565b505050565b60105481565b6000600880549050905090565b60155481565b610ff8610ff26126ce565b826127fb565b611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90614747565b60405180910390fd5b6110428383836128d9565b505050565b600c818154811061105757600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061109183611578565b82106110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990614467565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111336126ce565b73ffffffffffffffffffffffffffffffffffffffff166111516116e3565b73ffffffffffffffffffffffffffffffffffffffff16146111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e906146a7565b60405180910390fd5b60006111b16116e3565b73ffffffffffffffffffffffffffffffffffffffff16476040516111d49061438c565b60006040518083038185875af1925050503d8060008114611211576040519150601f19603f3d011682016040523d82523d6000602084013e611216565b606091505b505090508061122457600080fd5b50565b61124283838360405180602001604052806000815250611daf565b505050565b6060600061125483611578565b905060008167ffffffffffffffff81111561127257611271614cc4565b5b6040519080825280602002602001820160405280156112a05781602001602082028036833780820191505090505b50905060005b828110156112ea576112b88582611086565b8282815181106112cb576112ca614c95565b5b60200260200101818152505080806112e290614b5f565b9150506112a6565b508092505050919050565b6112fd6126ce565b73ffffffffffffffffffffffffffffffffffffffff1661131b6116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611371576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611368906146a7565b60405180910390fd5b8060108190555050565b6000611385610fd4565b82106113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd90614787565b60405180910390fd5b600882815481106113da576113d9614c95565b5b90600052602060002001549050919050565b601860019054906101000a900460ff1681565b6114076126ce565b73ffffffffffffffffffffffffffffffffffffffff166114256116e3565b73ffffffffffffffffffffffffffffffffffffffff161461147b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611472906146a7565b60405180910390fd5b80600d9080519060200190611491929190613756565b5050565b601860009054906101000a900460ff1681565b60176020528060005260406000206000915090505481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090614627565b60405180910390fd5b80915050919050565b60145481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e090614607565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116386126ce565b73ffffffffffffffffffffffffffffffffffffffff166116566116e3565b73ffffffffffffffffffffffffffffffffffffffff16146116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a3906146a7565b60405180910390fd5b6116b66000612b35565b565b601660009054906101000a900460ff1681565b60606116d682611247565b9050919050565b60115481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461171c90614afc565b80601f016020809104026020016040519081016040528092919081815260200182805461174890614afc565b80156117955780601f1061176a57610100808354040283529160200191611795565b820191906000526020600020905b81548152906001019060200180831161177857829003601f168201915b5050505050905090565b6002600b5414156117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc906147a7565b60405180910390fd5b6002600b81905550601860009054906101000a900460ff161561183d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183490614687565b60405180910390fd5b60008111611880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187790614567565b60405180910390fd5b6015548111156118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90614767565b60405180910390fd5b601254816011546118d69190614931565b1115611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90614727565b60405180910390fd5b61191f6116e3565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a46578060105461195f91906149b8565b34146119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790614587565b60405180910390fd5b601660009054906101000a900460ff1615611a455760155481601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a039190614931565b1115611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b906144c7565b60405180910390fd5b5b5b80601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a959190614931565b92505081905550600060115490508160116000828254611ab59190614931565b925050819055506000600190505b828111611af257611adf338284611ada9190614931565b612bfb565b8080611aea90614b5f565b915050611ac3565b50506001600b8190555050565b611b076126ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90614547565b60405180910390fd5b8060056000611b826126ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c2f6126ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c74919061442a565b60405180910390a35050565b611c886126ce565b73ffffffffffffffffffffffffffffffffffffffff16611ca66116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf3906146a7565b60405180910390fd5b6001601860016101000a81548160ff021916908315150217905550565b611d216126ce565b73ffffffffffffffffffffffffffffffffffffffff16611d3f6116e3565b73ffffffffffffffffffffffffffffffffffffffff1614611d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8c906146a7565b60405180910390fd5b80600e9080519060200190611dab929190613756565b5050565b611dc0611dba6126ce565b836127fb565b611dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df690614747565b60405180910390fd5b611e0b84848484612c19565b50505050565b600f8054611e1e90614afc565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4a90614afc565b8015611e975780601f10611e6c57610100808354040283529160200191611e97565b820191906000526020600020905b815481529060010190602001808311611e7a57829003601f168201915b505050505081565b6060611eaa826126d6565b611ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee0906146e7565b60405180910390fd5b60001515601860019054906101000a900460ff1615151415611f975760198054611f1290614afc565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3e90614afc565b8015611f8b5780601f10611f6057610100808354040283529160200191611f8b565b820191906000526020600020905b815481529060010190602001808311611f6e57829003601f168201915b5050505050905061205c565b6012548211612000576000611faa612c75565b90506000815111611fca5760405180602001604052806000815250611ff8565b80611fd484612d07565b600f604051602001611fe89392919061435b565b6040516020818303038152906040525b91505061205c565b600061200a612e68565b9050600081511161202a5760405180602001604052806000815250612058565b8061203484612d07565b600f6040516020016120489392919061435b565b6040516020818303038152906040525b9150505b919050565b60135481565b60125481565b6120756126ce565b73ffffffffffffffffffffffffffffffffffffffff166120936116e3565b73ffffffffffffffffffffffffffffffffffffffff16146120e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e0906146a7565b60405180910390fd5b80600f90805190602001906120ff929190613756565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61219f6126ce565b73ffffffffffffffffffffffffffffffffffffffff166121bd6116e3565b73ffffffffffffffffffffffffffffffffffffffff1614612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a906146a7565b60405180910390fd5b8060199080519060200190612229929190613756565b5050565b6122356126ce565b73ffffffffffffffffffffffffffffffffffffffff166122536116e3565b73ffffffffffffffffffffffffffffffffffffffff16146122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a0906146a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612319576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612310906144a7565b60405180910390fd5b61232281612b35565b50565b6000805b600c805490508110156123c0573373ffffffffffffffffffffffffffffffffffffffff16600c828154811061236157612360614c95565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123ad57600191505b80806123b890614b5f565b915050612329565b5080612401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f8906145a7565b60405180910390fd5b6002600b541415612447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243e906147a7565b60405180910390fd5b6002600b8190555060008311612492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248990614567565b60405180910390fd5b601454836013546124a39190614931565b11156124e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124db90614507565b60405180910390fd5b6000601354905083601360008282546124fd9190614931565b925050819055506000600190505b848111612547576125348482846012546125259190614931565b61252f9190614931565b612bfb565b808061253f90614b5f565b91505061250b565b50506001600b81905550505050565b61255e6126ce565b73ffffffffffffffffffffffffffffffffffffffff1661257c6116e3565b73ffffffffffffffffffffffffffffffffffffffff16146125d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c9906146a7565b60405180910390fd5b80600c90805190602001906125e89291906137dc565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126b757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126c757506126c682612efa565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127b5836114c0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612806826126d6565b612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c906145c7565b60405180910390fd5b6000612850836114c0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128bf57508373ffffffffffffffffffffffffffffffffffffffff166128a784610d1d565b73ffffffffffffffffffffffffffffffffffffffff16145b806128d057506128cf8185612103565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128f9826114c0565b73ffffffffffffffffffffffffffffffffffffffff161461294f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612946906146c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b690614527565b60405180910390fd5b6129ca838383612f64565b6129d5600082612742565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a259190614a12565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a7c9190614931565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c15828260405180602001604052806000815250613078565b5050565b612c248484846128d9565b612c30848484846130d3565b612c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6690614487565b60405180910390fd5b50505050565b6060600d8054612c8490614afc565b80601f0160208091040260200160405190810160405280929190818152602001828054612cb090614afc565b8015612cfd5780601f10612cd257610100808354040283529160200191612cfd565b820191906000526020600020905b815481529060010190602001808311612ce057829003601f168201915b5050505050905090565b60606000821415612d4f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e63565b600082905060005b60008214612d81578080612d6a90614b5f565b915050600a82612d7a9190614987565b9150612d57565b60008167ffffffffffffffff811115612d9d57612d9c614cc4565b5b6040519080825280601f01601f191660200182016040528015612dcf5781602001600182028036833780820191505090505b5090505b60008514612e5c57600182612de89190614a12565b9150600a85612df79190614ba8565b6030612e039190614931565b60f81b818381518110612e1957612e18614c95565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e559190614987565b9450612dd3565b8093505050505b919050565b6060600e8054612e7790614afc565b80601f0160208091040260200160405190810160405280929190818152602001828054612ea390614afc565b8015612ef05780601f10612ec557610100808354040283529160200191612ef0565b820191906000526020600020905b815481529060010190602001808311612ed357829003601f168201915b5050505050905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f6f83838361326a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fb257612fad8161326f565b612ff1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ff057612fef83826132b8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130345761302f81613425565b613073565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130725761307182826134f6565b5b5b505050565b6130828383613575565b61308f60008484846130d3565b6130ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c590614487565b60405180910390fd5b505050565b60006130f48473ffffffffffffffffffffffffffffffffffffffff16613743565b1561325d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261311d6126ce565b8786866040518563ffffffff1660e01b815260040161313f94939291906143bc565b602060405180830381600087803b15801561315957600080fd5b505af192505050801561318a57506040513d601f19601f820116820180604052508101906131879190613cd0565b60015b61320d573d80600081146131ba576040519150601f19603f3d011682016040523d82523d6000602084013e6131bf565b606091505b50600081511415613205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fc90614487565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613262565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132c584611578565b6132cf9190614a12565b90506000600760008481526020019081526020016000205490508181146133b4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134399190614a12565b905060006009600084815260200190815260200160002054905060006008838154811061346957613468614c95565b5b90600052602060002001549050806008838154811061348b5761348a614c95565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806134da576134d9614c66565b5b6001900381819060005260206000200160009055905550505050565b600061350183611578565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135dc90614647565b60405180910390fd5b6135ee816126d6565b1561362e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613625906144e7565b60405180910390fd5b61363a60008383612f64565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461368a9190614931565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461376290614afc565b90600052602060002090601f01602090048101928261378457600085556137cb565b82601f1061379d57805160ff19168380011785556137cb565b828001600101855582156137cb579182015b828111156137ca5782518255916020019190600101906137af565b5b5090506137d89190613866565b5090565b828054828255906000526020600020908101928215613855579160200282015b828111156138545782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906137fc565b5b5090506138629190613866565b5090565b5b8082111561387f576000816000905550600101613867565b5090565b600061389661389184614807565b6147e2565b905080838252602082019050828560208602820111156138b9576138b8614cf8565b5b60005b858110156138e957816138cf8882613977565b8452602084019350602083019250506001810190506138bc565b5050509392505050565b600061390661390184614833565b6147e2565b90508281526020810184848401111561392257613921614cfd565b5b61392d848285614aba565b509392505050565b600061394861394384614864565b6147e2565b90508281526020810184848401111561396457613963614cfd565b5b61396f848285614aba565b509392505050565b60008135905061398681615387565b92915050565b600082601f8301126139a1576139a0614cf3565b5b81356139b1848260208601613883565b91505092915050565b6000813590506139c98161539e565b92915050565b6000813590506139de816153b5565b92915050565b6000815190506139f3816153b5565b92915050565b600082601f830112613a0e57613a0d614cf3565b5b8135613a1e8482602086016138f3565b91505092915050565b600082601f830112613a3c57613a3b614cf3565b5b8135613a4c848260208601613935565b91505092915050565b600081359050613a64816153cc565b92915050565b600060208284031215613a8057613a7f614d07565b5b6000613a8e84828501613977565b91505092915050565b60008060408385031215613aae57613aad614d07565b5b6000613abc85828601613977565b9250506020613acd85828601613977565b9150509250929050565b600080600060608486031215613af057613aef614d07565b5b6000613afe86828701613977565b9350506020613b0f86828701613977565b9250506040613b2086828701613a55565b9150509250925092565b60008060008060808587031215613b4457613b43614d07565b5b6000613b5287828801613977565b9450506020613b6387828801613977565b9350506040613b7487828801613a55565b925050606085013567ffffffffffffffff811115613b9557613b94614d02565b5b613ba1878288016139f9565b91505092959194509250565b60008060408385031215613bc457613bc3614d07565b5b6000613bd285828601613977565b9250506020613be3858286016139ba565b9150509250929050565b60008060408385031215613c0457613c03614d07565b5b6000613c1285828601613977565b9250506020613c2385828601613a55565b9150509250929050565b600060208284031215613c4357613c42614d07565b5b600082013567ffffffffffffffff811115613c6157613c60614d02565b5b613c6d8482850161398c565b91505092915050565b600060208284031215613c8c57613c8b614d07565b5b6000613c9a848285016139ba565b91505092915050565b600060208284031215613cb957613cb8614d07565b5b6000613cc7848285016139cf565b91505092915050565b600060208284031215613ce657613ce5614d07565b5b6000613cf4848285016139e4565b91505092915050565b600060208284031215613d1357613d12614d07565b5b600082013567ffffffffffffffff811115613d3157613d30614d02565b5b613d3d84828501613a27565b91505092915050565b600060208284031215613d5c57613d5b614d07565b5b6000613d6a84828501613a55565b91505092915050565b60008060408385031215613d8a57613d89614d07565b5b6000613d9885828601613a55565b9250506020613da985828601613977565b9150509250929050565b6000613dbf838361433d565b60208301905092915050565b613dd481614a46565b82525050565b6000613de5826148ba565b613def81856148e8565b9350613dfa83614895565b8060005b83811015613e2b578151613e128882613db3565b9750613e1d836148db565b925050600181019050613dfe565b5085935050505092915050565b613e4181614a58565b82525050565b6000613e52826148c5565b613e5c81856148f9565b9350613e6c818560208601614ac9565b613e7581614d0c565b840191505092915050565b6000613e8b826148d0565b613e958185614915565b9350613ea5818560208601614ac9565b613eae81614d0c565b840191505092915050565b6000613ec4826148d0565b613ece8185614926565b9350613ede818560208601614ac9565b80840191505092915050565b60008154613ef781614afc565b613f018186614926565b94506001821660008114613f1c5760018114613f2d57613f60565b60ff19831686528186019350613f60565b613f36856148a5565b60005b83811015613f5857815481890152600182019150602081019050613f39565b838801955050505b50505092915050565b6000613f76602b83614915565b9150613f8182614d1d565b604082019050919050565b6000613f99603283614915565b9150613fa482614d6c565b604082019050919050565b6000613fbc602683614915565b9150613fc782614dbb565b604082019050919050565b6000613fdf601683614915565b9150613fea82614e0a565b602082019050919050565b6000614002601c83614915565b915061400d82614e33565b602082019050919050565b6000614025601183614915565b915061403082614e5c565b602082019050919050565b6000614048602483614915565b915061405382614e85565b604082019050919050565b600061406b601983614915565b915061407682614ed4565b602082019050919050565b600061408e600c83614915565b915061409982614efd565b602082019050919050565b60006140b1601483614915565b91506140bc82614f26565b602082019050919050565b60006140d4600983614915565b91506140df82614f4f565b602082019050919050565b60006140f7602c83614915565b915061410282614f78565b604082019050919050565b600061411a603883614915565b915061412582614fc7565b604082019050919050565b600061413d602a83614915565b915061414882615016565b604082019050919050565b6000614160602983614915565b915061416b82615065565b604082019050919050565b6000614183602083614915565b915061418e826150b4565b602082019050919050565b60006141a6602c83614915565b91506141b1826150dd565b604082019050919050565b60006141c9600f83614915565b91506141d48261512c565b602082019050919050565b60006141ec602083614915565b91506141f782615155565b602082019050919050565b600061420f602983614915565b915061421a8261517e565b604082019050919050565b6000614232602f83614915565b915061423d826151cd565b604082019050919050565b6000614255602183614915565b91506142608261521c565b604082019050919050565b6000614278601983614915565b91506142838261526b565b602082019050919050565b600061429b60008361490a565b91506142a682615294565b600082019050919050565b60006142be603183614915565b91506142c982615297565b604082019050919050565b60006142e1601383614915565b91506142ec826152e6565b602082019050919050565b6000614304602c83614915565b915061430f8261530f565b604082019050919050565b6000614327601f83614915565b91506143328261535e565b602082019050919050565b61434681614ab0565b82525050565b61435581614ab0565b82525050565b60006143678286613eb9565b91506143738285613eb9565b915061437f8284613eea565b9150819050949350505050565b60006143978261428e565b9150819050919050565b60006020820190506143b66000830184613dcb565b92915050565b60006080820190506143d16000830187613dcb565b6143de6020830186613dcb565b6143eb604083018561434c565b81810360608301526143fd8184613e47565b905095945050505050565b600060208201905081810360008301526144228184613dda565b905092915050565b600060208201905061443f6000830184613e38565b92915050565b6000602082019050818103600083015261445f8184613e80565b905092915050565b6000602082019050818103600083015261448081613f69565b9050919050565b600060208201905081810360008301526144a081613f8c565b9050919050565b600060208201905081810360008301526144c081613faf565b9050919050565b600060208201905081810360008301526144e081613fd2565b9050919050565b6000602082019050818103600083015261450081613ff5565b9050919050565b6000602082019050818103600083015261452081614018565b9050919050565b600060208201905081810360008301526145408161403b565b9050919050565b600060208201905081810360008301526145608161405e565b9050919050565b6000602082019050818103600083015261458081614081565b9050919050565b600060208201905081810360008301526145a0816140a4565b9050919050565b600060208201905081810360008301526145c0816140c7565b9050919050565b600060208201905081810360008301526145e0816140ea565b9050919050565b600060208201905081810360008301526146008161410d565b9050919050565b6000602082019050818103600083015261462081614130565b9050919050565b6000602082019050818103600083015261464081614153565b9050919050565b6000602082019050818103600083015261466081614176565b9050919050565b6000602082019050818103600083015261468081614199565b9050919050565b600060208201905081810360008301526146a0816141bc565b9050919050565b600060208201905081810360008301526146c0816141df565b9050919050565b600060208201905081810360008301526146e081614202565b9050919050565b6000602082019050818103600083015261470081614225565b9050919050565b6000602082019050818103600083015261472081614248565b9050919050565b600060208201905081810360008301526147408161426b565b9050919050565b60006020820190508181036000830152614760816142b1565b9050919050565b60006020820190508181036000830152614780816142d4565b9050919050565b600060208201905081810360008301526147a0816142f7565b9050919050565b600060208201905081810360008301526147c08161431a565b9050919050565b60006020820190506147dc600083018461434c565b92915050565b60006147ec6147fd565b90506147f88282614b2e565b919050565b6000604051905090565b600067ffffffffffffffff82111561482257614821614cc4565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561484e5761484d614cc4565b5b61485782614d0c565b9050602081019050919050565b600067ffffffffffffffff82111561487f5761487e614cc4565b5b61488882614d0c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061493c82614ab0565b915061494783614ab0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561497c5761497b614bd9565b5b828201905092915050565b600061499282614ab0565b915061499d83614ab0565b9250826149ad576149ac614c08565b5b828204905092915050565b60006149c382614ab0565b91506149ce83614ab0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a0757614a06614bd9565b5b828202905092915050565b6000614a1d82614ab0565b9150614a2883614ab0565b925082821015614a3b57614a3a614bd9565b5b828203905092915050565b6000614a5182614a90565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614ae7578082015181840152602081019050614acc565b83811115614af6576000848401525b50505050565b60006002820490506001821680614b1457607f821691505b60208210811415614b2857614b27614c37565b5b50919050565b614b3782614d0c565b810181811067ffffffffffffffff82111715614b5657614b55614cc4565b5b80604052505050565b6000614b6a82614ab0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b9d57614b9c614bd9565b5b600182019050919050565b6000614bb382614ab0565b9150614bbe83614ab0565b925082614bce57614bcd614c08565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564732061646472657373206c696d69742e00000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f50726f6d6f73206578686175737465642e000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43616e2774206d696e7420300000000000000000000000000000000000000000600082015250565b7f496e636f72726563742076616c75652073656e74000000000000000000000000600082015250565b7f4f6e6c79205465616d0000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d696e74696e67207061757365642e0000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f7420657863656564206d617820737570706c792e00000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f45786365656473206d696e74206c696d69742e00000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61539081614a46565b811461539b57600080fd5b50565b6153a781614a58565b81146153b257600080fd5b50565b6153be81614a64565b81146153c957600080fd5b50565b6153d581614ab0565b81146153e057600080fd5b5056fea26469706673582212208a53d898314b0ace6f47b0d677fdab6a5ab9ed5966de63476e1405d328b8d04264736f6c63430008060033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001a68747470733a2f2f6170692e6e66742e62756c6c732e696e632f000000000000000000000000000000000000000000000000000000000000000000000000005f68747470733a2f2f62756c6c73696e632e6d7970696e6174612e636c6f75642f697066732f516d4e525a416b435339454758344d7634715555435967763176326d5645696d55516864666d6f4c4155446b62512f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000001a68747470733a2f2f6170692e6e66742e62756c6c732e696e632f000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://api.nft.bulls.inc/
Arg [1] : _initNotRevealedUri (string): https://bullsinc.mypinata.cloud/ipfs/QmNRZAkCS9EGX4Mv4qUUCYgv1v2mVEimUQhdfmoLAUDkbQ/hidden.json
Arg [2] : _initBasePromoURI (string): https://api.nft.bulls.inc/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [4] : 68747470733a2f2f6170692e6e66742e62756c6c732e696e632f000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000005f
Arg [6] : 68747470733a2f2f62756c6c73696e632e6d7970696e6174612e636c6f75642f
Arg [7] : 697066732f516d4e525a416b435339454758344d763471555543596776317632
Arg [8] : 6d5645696d55516864666d6f4c4155446b62512f68696464656e2e6a736f6e00
Arg [9] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [10] : 68747470733a2f2f6170692e6e66742e62756c6c732e696e632f000000000000


Deployed Bytecode Sourcemap

45846:5293:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34732:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50919:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50820:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22624:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24183:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46728:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50107:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23706:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46339:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35372:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46524:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25073:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46216:31;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35040:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50999:137;;;;;;;;;;;;;:::i;:::-;;25483:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48164:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50021:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35562:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46695:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50357:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46664:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46602:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22318:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46484:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22048:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42521:94;;;;;;;;;;;;;:::i;:::-;;46564:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48548:137;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46375:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41870:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22793:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47330:828;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24476:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49948:65;;;;;;;;;;;;;:::i;:::-;;50461:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25739:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46297:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48691:786;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46449:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46409:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50585:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24842:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50231:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42770:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49498:427;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50713:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34732:224;34834:4;34873:35;34858:50;;;:11;:50;;;;:90;;;;34912:36;34936:11;34912:23;:36::i;:::-;34858:90;34851:97;;34732:224;;;:::o;50919:73::-;42101:12;:10;:12::i;:::-;42090:23;;:7;:5;:7::i;:::-;:23;;;42082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50980:6:::1;50971;;:15;;;;;;;;;;;;;;;;;;50919:73:::0;:::o;50820:93::-;42101:12;:10;:12::i;:::-;42090:23;;:7;:5;:7::i;:::-;:23;;;42082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50901:6:::1;50884:14;;:23;;;;;;;;;;;;;;;;;;50820:93:::0;:::o;22624:100::-;22678:13;22711:5;22704:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22624:100;:::o;24183:221::-;24259:7;24287:16;24295:7;24287;:16::i;:::-;24279:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24372:15;:24;24388:7;24372:24;;;;;;;;;;;;;;;;;;;;;24365:31;;24183:221;;;:::o;46728:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50107:116::-;42101:12;:10;:12::i;:::-;42090:23;;:7;:5;:7::i;:::-;:23;;;42082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50200:17:::1;50184:13;:33;;;;50107:116:::0;:::o;23706:411::-;23787:13;23803:23;23818:7;23803:14;:23::i;:::-;23787:39;;23851:5;23845:11;;:2;:11;;;;23837:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23945:5;23929:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23954:37;23971:5;23978:12;:10;:12::i;:::-;23954:16;:37::i;:::-;23929:62;23907:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24088:21;24097:2;24101:7;24088:8;:21::i;:::-;23776:341;23706:411;;:::o;46339:31::-;;;;:::o;35372:113::-;35433:7;35460:10;:17;;;;35453:24;;35372:113;:::o;46524:33::-;;;;:::o;25073:339::-;25268:41;25287:12;:10;:12::i;:::-;25301:7;25268:18;:41::i;:::-;25260:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25376:28;25386:4;25392:2;25396:7;25376:9;:28::i;:::-;25073:339;;;:::o;46216:31::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35040:256::-;35137:7;35173:23;35190:5;35173:16;:23::i;:::-;35165:5;:31;35157:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35262:12;:19;35275:5;35262:19;;;;;;;;;;;;;;;:26;35282:5;35262:26;;;;;;;;;;;;35255:33;;35040:256;;;;:::o;50999:137::-;42101:12;:10;:12::i;:::-;42090:23;;:7;:5;:7::i;:::-;:23;;;42082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51044:7:::1;51065;:5;:7::i;:::-;51057:21;;51086;51057:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51043:69;;;51127:2;51119:11;;;::::0;::::1;;51036:100;50999:137::o:0;25483:185::-;25621:39;25638:4;25644:2;25648:7;25621:39;;;;;;;;;;;;:16;:39::i;:::-;25483:185;;;:::o;48164:348::-;48239:16;48267:23;48293:17;48303:6;48293:9;:17::i;:::-;48267:43;;48317:25;48359:15;48345:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48317:58;;48387:9;48382:103;48402:15;48398:1;:19;48382:103;;;48447:30;48467:6;48475:1;48447:19;:30::i;:::-;48433:8;48442:1;48433:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;48419:3;;;;;:::i;:::-;;;;48382:103;;;;48498:8;48491:15;;;;48164:348;;;:::o;50021:80::-;42101:12;:10;:12::i;:::-;42090:23;;:7;:5;:7::i;:::-;:23;;;42082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50087:8:::1;50080:4;:15;;;;50021:80:::0;:::o;35562:233::-;35637:7;35673:30;:28;:30::i;:::-;35665:5;:38;35657:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35770:10;35781:5;35770:17;;;;;;;;:::i;:::-;;;;;;;;;;35763:24;;35562:233;;;:::o;46695:28::-;;;;;;;;;;;;;:::o;50357:98::-;42101:12;:10;:12::i;:::-;42090:23;;:7;:5;:7::i;:::-;:23;;;42082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50438:11:::1;50428:7;:21;;;;;;;;;;;;:::i;:::-;;50357:98:::0;:::o;46664:26::-;;;;;;;;;;;;;:::o;46602:55::-;;;;;;;;;;;;;;;;;:::o;22318:239::-;22390:7;22410:13;22426:7;:16;22434:7;22426:16;;;;;;;;;;;;;;;;;;;;;22410:32;;22478:1;22461:19;;:5;:19;;;;22453:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22544:5;22537:12;;;22318:239;;;:::o;46484:35::-;;;;:::o;22048:208::-;22120:7;22165:1;22148:19;;:5;:19;;;;22140:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22232:9;:16;22242:5;22232:16;;;;;;;;;;;;;;;;22225:23;;22048:208;;;:::o;42521:94::-;42101:12;:10;:12::i;:::-;42090:23;;:7;:5;:7::i;:::-;:23;;;42082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42586:21:::1;42604:1;42586:9;:21::i;:::-;42521:94::o:0;46564:33::-;;;;;;;;;;;;;:::o;48548:137::-;48623:16;48658:21;48672:6;48658:13;:21::i;:::-;48651:28;;48548:137;;;:::o;46375:29::-;;;;:::o;41870:87::-;41916:7;41943:6;;;;;;;;;;;41936:13;;41870:87;:::o;22793:104::-;22849:13;22882:7;22875:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22793:104;:::o;47330:828::-;44863:1;45460:7;;:19;;45452:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44863:1;45593:7;:18;;;;47414:6:::1;;;;;;;;;;;47413:7;47405:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;47470:1;47456:11;:15;47448:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;47518:13;;47503:11;:28;;47495:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;47599:13;;47584:11;47571:10;;:24;;;;:::i;:::-;:41;;47563:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;47670:7;:5;:7::i;:::-;47656:21;;:10;:21;;;47652:251;;47716:11;47709:4;;:18;;;;:::i;:::-;47696:9;:31;47688:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47765:14;;;;;;;;;;;47761:135;;;47846:13;;47833:11;47799:21;:33;47821:10;47799:33;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;:60;;47791:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;47761:135;47652:251;47946:11;47911:21;:33;47933:10;47911:33;;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;;;;;;;47970:25;47998:10;;47970:38;;48027:11;48015:10;;:23;;;;;;;:::i;:::-;;;;;;;;48052:9;48064:1;48052:13;;48047:104;48072:11;48067:1;:16;48047:104;;48099:44;48109:10;48141:1;48121:17;:21;;;;:::i;:::-;48099:9;:44::i;:::-;48085:3;;;;;:::i;:::-;;;;48047:104;;;;47393:765;44819:1:::0;45772:7;:22;;;;47330:828;:::o;24476:295::-;24591:12;:10;:12::i;:::-;24579:24;;:8;:24;;;;24571:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;24691:8;24646:18;:32;24665:12;:10;:12::i;:::-;24646:32;;;;;;;;;;;;;;;:42;24679:8;24646:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24744:8;24715:48;;24730:12;:10;:12::i;:::-;24715:48;;;24754:8;24715:48;;;;;;:::i;:::-;;;;;;;;24476:295;;:::o;49948:65::-;42101:12;:10;:12::i;:::-;42090:23;;:7;:5;:7::i;:::-;:23;;;42082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50003:4:::1;49992:8;;:15;;;;;;;;;;;;;;;;;;49948:65::o:0;50461:118::-;42101:12;:10;:12::i;:::-;42090:23;;:7;:5;:7::i;:::-;:23;;;42082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50557:16:::1;50542:12;:31;;;;;;;;;;;;:::i;:::-;;50461:118:::0;:::o;25739:328::-;25914:41;25933:12;:10;:12::i;:::-;25947:7;25914:18;:41::i;:::-;25906:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26020:39;26034:4;26040:2;26044:7;26053:5;26020:13;:39::i;:::-;25739:328;;;;:::o;46297:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48691:786::-;48789:13;48830:16;48838:7;48830;:16::i;:::-;48814:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;48939:5;48927:17;;:8;;;;;;;;;;;:17;;;48924:62;;;48964:14;48957:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48924:62;49007:13;;48998:7;:22;48994:476;;49032:28;49063:10;:8;:10::i;:::-;49032:41;;49122:1;49097:14;49091:28;:32;:141;;;;;;;;;;;;;;;;;49163:14;49179:18;:7;:16;:18::i;:::-;49199:13;49146:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49091:141;49084:148;;;;;48994:476;49256:28;49287:15;:13;:15::i;:::-;49256:46;;49352:1;49327:14;49321:28;:32;:141;;;;;;;;;;;;;;;;;49393:14;49409:18;:7;:16;:18::i;:::-;49429:13;49376:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49321:141;49314:148;;;48691:786;;;;:::o;46449:30::-;;;;:::o;46409:35::-;;;;:::o;50585:122::-;42101:12;:10;:12::i;:::-;42090:23;;:7;:5;:7::i;:::-;:23;;;42082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50684:17:::1;50668:13;:33;;;;;;;;;;;;:::i;:::-;;50585:122:::0;:::o;24842:164::-;24939:4;24963:18;:25;24982:5;24963:25;;;;;;;;;;;;;;;:35;24989:8;24963:35;;;;;;;;;;;;;;;;;;;;;;;;;24956:42;;24842:164;;;;:::o;50231:120::-;42101:12;:10;:12::i;:::-;42090:23;;:7;:5;:7::i;:::-;:23;;;42082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50330:15:::1;50313:14;:32;;;;;;;;;;;;:::i;:::-;;50231:120:::0;:::o;42770:192::-;42101:12;:10;:12::i;:::-;42090:23;;:7;:5;:7::i;:::-;:23;;;42082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42879:1:::1;42859:22;;:8;:22;;;;42851:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42935:19;42945:8;42935:9;:19::i;:::-;42770:192:::0;:::o;49498:427::-;45981:9;46014:6;46009:149;46028:13;:20;;;;46026:1;:22;46009:149;;;46090:10;46072:28;;:13;46086:1;46072:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:28;;;46068:79;;;46127:4;46120:11;;46068:79;46049:3;;;;;:::i;:::-;;;;46009:149;;;;46176:4;46168:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;44863:1:::1;45460:7;;:19;;45452:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;44863:1;45593:7;:18;;;;49617:1:::2;49603:11;:15;49595:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;49679:14;;49664:11;49650;;:25;;;;:::i;:::-;:43;;49642:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49724:21;49748:11;;49724:35;;49779:11;49766;;:24;;;;;;;:::i;:::-;;;;;;;;49808:9;49820:1;49808:13;;49803:115;49828:11;49823:1;:16;49803:115;;49855:55;49865:10;49908:1;49893:13;49877;;:29;;;;:::i;:::-;:32;;;;:::i;:::-;49855:9;:55::i;:::-;49841:3;;;;;:::i;:::-;;;;49803:115;;;;49588:337;44819:1:::1;45772:7;:22;;;;45970:240:::0;49498:427;;:::o;50713:101::-;42101:12;:10;:12::i;:::-;42090:23;;:7;:5;:7::i;:::-;:23;;;42082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50803:5:::1;50787:13;:21;;;;;;;;;;;;:::i;:::-;;50713:101:::0;:::o;21679:305::-;21781:4;21833:25;21818:40;;;:11;:40;;;;:105;;;;21890:33;21875:48;;;:11;:48;;;;21818:105;:158;;;;21940:36;21964:11;21940:23;:36::i;:::-;21818:158;21798:178;;21679:305;;;:::o;20153:98::-;20206:7;20233:10;20226:17;;20153:98;:::o;27577:127::-;27642:4;27694:1;27666:30;;:7;:16;27674:7;27666:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27659:37;;27577:127;;;:::o;31559:174::-;31661:2;31634:15;:24;31650:7;31634:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31717:7;31713:2;31679:46;;31688:23;31703:7;31688:14;:23::i;:::-;31679:46;;;;;;;;;;;;31559:174;;:::o;27871:348::-;27964:4;27989:16;27997:7;27989;:16::i;:::-;27981:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28065:13;28081:23;28096:7;28081:14;:23::i;:::-;28065:39;;28134:5;28123:16;;:7;:16;;;:51;;;;28167:7;28143:31;;:20;28155:7;28143:11;:20::i;:::-;:31;;;28123:51;:87;;;;28178:32;28195:5;28202:7;28178:16;:32::i;:::-;28123:87;28115:96;;;27871:348;;;;:::o;30863:578::-;31022:4;30995:31;;:23;31010:7;30995:14;:23::i;:::-;:31;;;30987:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31105:1;31091:16;;:2;:16;;;;31083:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31161:39;31182:4;31188:2;31192:7;31161:20;:39::i;:::-;31265:29;31282:1;31286:7;31265:8;:29::i;:::-;31326:1;31307:9;:15;31317:4;31307:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31355:1;31338:9;:13;31348:2;31338:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31386:2;31367:7;:16;31375:7;31367:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31425:7;31421:2;31406:27;;31415:4;31406:27;;;;;;;;;;;;30863:578;;;:::o;42970:173::-;43026:16;43045:6;;;;;;;;;;;43026:25;;43071:8;43062:6;;:17;;;;;;;;;;;;;;;;;;43126:8;43095:40;;43116:8;43095:40;;;;;;;;;;;;43015:128;42970:173;:::o;28561:110::-;28637:26;28647:2;28651:7;28637:26;;;;;;;;;;;;:9;:26::i;:::-;28561:110;;:::o;26949:315::-;27106:28;27116:4;27122:2;27126:7;27106:9;:28::i;:::-;27153:48;27176:4;27182:2;27186:7;27195:5;27153:22;:48::i;:::-;27145:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26949:315;;;;:::o;47100:102::-;47160:13;47189:7;47182:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47100:102;:::o;7985:723::-;8041:13;8271:1;8262:5;:10;8258:53;;;8289:10;;;;;;;;;;;;;;;;;;;;;8258:53;8321:12;8336:5;8321:20;;8352:14;8377:78;8392:1;8384:4;:9;8377:78;;8410:8;;;;;:::i;:::-;;;;8441:2;8433:10;;;;;:::i;:::-;;;8377:78;;;8465:19;8497:6;8487:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8465:39;;8515:154;8531:1;8522:5;:10;8515:154;;8559:1;8549:11;;;;;:::i;:::-;;;8626:2;8618:5;:10;;;;:::i;:::-;8605:2;:24;;;;:::i;:::-;8592:39;;8575:6;8582;8575:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8655:2;8646:11;;;;;:::i;:::-;;;8515:154;;;8693:6;8679:21;;;;;7985:723;;;;:::o;47208:103::-;47264:13;47293:12;47286:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47208:103;:::o;7510:157::-;7595:4;7634:25;7619:40;;;:11;:40;;;;7612:47;;7510:157;;;:::o;36408:589::-;36552:45;36579:4;36585:2;36589:7;36552:26;:45::i;:::-;36630:1;36614:18;;:4;:18;;;36610:187;;;36649:40;36681:7;36649:31;:40::i;:::-;36610:187;;;36719:2;36711:10;;:4;:10;;;36707:90;;36738:47;36771:4;36777:7;36738:32;:47::i;:::-;36707:90;36610:187;36825:1;36811:16;;:2;:16;;;36807:183;;;36844:45;36881:7;36844:36;:45::i;:::-;36807:183;;;36917:4;36911:10;;:2;:10;;;36907:83;;36938:40;36966:2;36970:7;36938:27;:40::i;:::-;36907:83;36807:183;36408:589;;;:::o;28898:321::-;29028:18;29034:2;29038:7;29028:5;:18::i;:::-;29079:54;29110:1;29114:2;29118:7;29127:5;29079:22;:54::i;:::-;29057:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28898:321;;;:::o;32298:799::-;32453:4;32474:15;:2;:13;;;:15::i;:::-;32470:620;;;32526:2;32510:36;;;32547:12;:10;:12::i;:::-;32561:4;32567:7;32576:5;32510:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32506:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32769:1;32752:6;:13;:18;32748:272;;;32795:60;;;;;;;;;;:::i;:::-;;;;;;;;32748:272;32970:6;32964:13;32955:6;32951:2;32947:15;32940:38;32506:529;32643:41;;;32633:51;;;:6;:51;;;;32626:58;;;;;32470:620;33074:4;33067:11;;32298:799;;;;;;;:::o;33669:126::-;;;;:::o;37720:164::-;37824:10;:17;;;;37797:15;:24;37813:7;37797:24;;;;;;;;;;;:44;;;;37852:10;37868:7;37852:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37720:164;:::o;38511:988::-;38777:22;38827:1;38802:22;38819:4;38802:16;:22::i;:::-;:26;;;;:::i;:::-;38777:51;;38839:18;38860:17;:26;38878:7;38860:26;;;;;;;;;;;;38839:47;;39007:14;38993:10;:28;38989:328;;39038:19;39060:12;:18;39073:4;39060:18;;;;;;;;;;;;;;;:34;39079:14;39060:34;;;;;;;;;;;;39038:56;;39144:11;39111:12;:18;39124:4;39111:18;;;;;;;;;;;;;;;:30;39130:10;39111:30;;;;;;;;;;;:44;;;;39261:10;39228:17;:30;39246:11;39228:30;;;;;;;;;;;:43;;;;39023:294;38989:328;39413:17;:26;39431:7;39413:26;;;;;;;;;;;39406:33;;;39457:12;:18;39470:4;39457:18;;;;;;;;;;;;;;;:34;39476:14;39457:34;;;;;;;;;;;39450:41;;;38592:907;;38511:988;;:::o;39794:1079::-;40047:22;40092:1;40072:10;:17;;;;:21;;;;:::i;:::-;40047:46;;40104:18;40125:15;:24;40141:7;40125:24;;;;;;;;;;;;40104:45;;40476:19;40498:10;40509:14;40498:26;;;;;;;;:::i;:::-;;;;;;;;;;40476:48;;40562:11;40537:10;40548;40537:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40673:10;40642:15;:28;40658:11;40642:28;;;;;;;;;;;:41;;;;40814:15;:24;40830:7;40814:24;;;;;;;;;;;40807:31;;;40849:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39865:1008;;;39794:1079;:::o;37298:221::-;37383:14;37400:20;37417:2;37400:16;:20::i;:::-;37383:37;;37458:7;37431:12;:16;37444:2;37431:16;;;;;;;;;;;;;;;:24;37448:6;37431:24;;;;;;;;;;;:34;;;;37505:6;37476:17;:26;37494:7;37476:26;;;;;;;;;;;:35;;;;37372:147;37298:221;;:::o;29555:382::-;29649:1;29635:16;;:2;:16;;;;29627:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29708:16;29716:7;29708;:16::i;:::-;29707:17;29699:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29770:45;29799:1;29803:2;29807:7;29770:20;:45::i;:::-;29845:1;29828:9;:13;29838:2;29828:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29876:2;29857:7;:16;29865:7;29857:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29921:7;29917:2;29896:33;;29913:1;29896:33;;;;;;;;;;;;29555:382;;:::o;10510:387::-;10570:4;10778:12;10845:7;10833:20;10825:28;;10888:1;10881:4;:8;10874:15;;;10510:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;404:79;;:::i;:::-;350:2;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:2;;;1025:79;;:::i;:::-;994:2;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:2;;;1443:79;;:::i;:::-;1412:2;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1638:87;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:2;;1876:79;;:::i;:::-;1835:2;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2173:84;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2314:86;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2468:79;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:2;;2678:79;;:::i;:::-;2637:2;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:2;;3037:79;;:::i;:::-;2996:2;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3322:87;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:2;;;3529:79;;:::i;:::-;3491:2;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3481:263;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:2;;;3881:79;;:::i;:::-;3843:2;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3833:391;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:2;;;4378:79;;:::i;:::-;4340:2;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4330:519;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:2;;;5030:79;;:::i;:::-;4991:2;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:2;;;5614:79;;:::i;:::-;5578:2;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4981:817;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5932:79;;:::i;:::-;5894:2;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5884:388;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:2;;;6409:79;;:::i;:::-;6371:2;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6361:391;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:2;;;6897:79;;:::i;:::-;6859:2;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:2;;;7097:79;;:::i;:::-;7061:2;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6849:448;;;;:::o;7303:323::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:2;;;7414:79;;:::i;:::-;7376:2;7534:1;7559:50;7601:7;7592:6;7581:9;7577:22;7559:50;:::i;:::-;7549:60;;7505:114;7366:260;;;;:::o;7632:327::-;7690:6;7739:2;7727:9;7718:7;7714:23;7710:32;7707:2;;;7745:79;;:::i;:::-;7707:2;7865:1;7890:52;7934:7;7925:6;7914:9;7910:22;7890:52;:::i;:::-;7880:62;;7836:116;7697:262;;;;:::o;7965:349::-;8034:6;8083:2;8071:9;8062:7;8058:23;8054:32;8051:2;;;8089:79;;:::i;:::-;8051:2;8209:1;8234:63;8289:7;8280:6;8269:9;8265:22;8234:63;:::i;:::-;8224:73;;8180:127;8041:273;;;;:::o;8320:509::-;8389:6;8438:2;8426:9;8417:7;8413:23;8409:32;8406:2;;;8444:79;;:::i;:::-;8406:2;8592:1;8581:9;8577:17;8564:31;8622:18;8614:6;8611:30;8608:2;;;8644:79;;:::i;:::-;8608:2;8749:63;8804:7;8795:6;8784:9;8780:22;8749:63;:::i;:::-;8739:73;;8535:287;8396:433;;;;:::o;8835:329::-;8894:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:2;;;8949:79;;:::i;:::-;8911:2;9069:1;9094:53;9139:7;9130:6;9119:9;9115:22;9094:53;:::i;:::-;9084:63;;9040:117;8901:263;;;;:::o;9170:474::-;9238:6;9246;9295:2;9283:9;9274:7;9270:23;9266:32;9263:2;;;9301:79;;:::i;:::-;9263:2;9421:1;9446:53;9491:7;9482:6;9471:9;9467:22;9446:53;:::i;:::-;9436:63;;9392:117;9548:2;9574:53;9619:7;9610:6;9599:9;9595:22;9574:53;:::i;:::-;9564:63;;9519:118;9253:391;;;;;:::o;9650:179::-;9719:10;9740:46;9782:3;9774:6;9740:46;:::i;:::-;9818:4;9813:3;9809:14;9795:28;;9730:99;;;;:::o;9835:118::-;9922:24;9940:5;9922:24;:::i;:::-;9917:3;9910:37;9900:53;;:::o;9989:732::-;10108:3;10137:54;10185:5;10137:54;:::i;:::-;10207:86;10286:6;10281:3;10207:86;:::i;:::-;10200:93;;10317:56;10367:5;10317:56;:::i;:::-;10396:7;10427:1;10412:284;10437:6;10434:1;10431:13;10412:284;;;10513:6;10507:13;10540:63;10599:3;10584:13;10540:63;:::i;:::-;10533:70;;10626:60;10679:6;10626:60;:::i;:::-;10616:70;;10472:224;10459:1;10456;10452:9;10447:14;;10412:284;;;10416:14;10712:3;10705:10;;10113:608;;;;;;;:::o;10727:109::-;10808:21;10823:5;10808:21;:::i;:::-;10803:3;10796:34;10786:50;;:::o;10842:360::-;10928:3;10956:38;10988:5;10956:38;:::i;:::-;11010:70;11073:6;11068:3;11010:70;:::i;:::-;11003:77;;11089:52;11134:6;11129:3;11122:4;11115:5;11111:16;11089:52;:::i;:::-;11166:29;11188:6;11166:29;:::i;:::-;11161:3;11157:39;11150:46;;10932:270;;;;;:::o;11208:364::-;11296:3;11324:39;11357:5;11324:39;:::i;:::-;11379:71;11443:6;11438:3;11379:71;:::i;:::-;11372:78;;11459:52;11504:6;11499:3;11492:4;11485:5;11481:16;11459:52;:::i;:::-;11536:29;11558:6;11536:29;:::i;:::-;11531:3;11527:39;11520:46;;11300:272;;;;;:::o;11578:377::-;11684:3;11712:39;11745:5;11712:39;:::i;:::-;11767:89;11849:6;11844:3;11767:89;:::i;:::-;11760:96;;11865:52;11910:6;11905:3;11898:4;11891:5;11887:16;11865:52;:::i;:::-;11942:6;11937:3;11933:16;11926:23;;11688:267;;;;;:::o;11985:845::-;12088:3;12125:5;12119:12;12154:36;12180:9;12154:36;:::i;:::-;12206:89;12288:6;12283:3;12206:89;:::i;:::-;12199:96;;12326:1;12315:9;12311:17;12342:1;12337:137;;;;12488:1;12483:341;;;;12304:520;;12337:137;12421:4;12417:9;12406;12402:25;12397:3;12390:38;12457:6;12452:3;12448:16;12441:23;;12337:137;;12483:341;12550:38;12582:5;12550:38;:::i;:::-;12610:1;12624:154;12638:6;12635:1;12632:13;12624:154;;;12712:7;12706:14;12702:1;12697:3;12693:11;12686:35;12762:1;12753:7;12749:15;12738:26;;12660:4;12657:1;12653:12;12648:17;;12624:154;;;12807:6;12802:3;12798:16;12791:23;;12490:334;;12304:520;;12092:738;;;;;;:::o;12836:366::-;12978:3;12999:67;13063:2;13058:3;12999:67;:::i;:::-;12992:74;;13075:93;13164:3;13075:93;:::i;:::-;13193:2;13188:3;13184:12;13177:19;;12982:220;;;:::o;13208:366::-;13350:3;13371:67;13435:2;13430:3;13371:67;:::i;:::-;13364:74;;13447:93;13536:3;13447:93;:::i;:::-;13565:2;13560:3;13556:12;13549:19;;13354:220;;;:::o;13580:366::-;13722:3;13743:67;13807:2;13802:3;13743:67;:::i;:::-;13736:74;;13819:93;13908:3;13819:93;:::i;:::-;13937:2;13932:3;13928:12;13921:19;;13726:220;;;:::o;13952:366::-;14094:3;14115:67;14179:2;14174:3;14115:67;:::i;:::-;14108:74;;14191:93;14280:3;14191:93;:::i;:::-;14309:2;14304:3;14300:12;14293:19;;14098:220;;;:::o;14324:366::-;14466:3;14487:67;14551:2;14546:3;14487:67;:::i;:::-;14480:74;;14563:93;14652:3;14563:93;:::i;:::-;14681:2;14676:3;14672:12;14665:19;;14470:220;;;:::o;14696:366::-;14838:3;14859:67;14923:2;14918:3;14859:67;:::i;:::-;14852:74;;14935:93;15024:3;14935:93;:::i;:::-;15053:2;15048:3;15044:12;15037:19;;14842:220;;;:::o;15068:366::-;15210:3;15231:67;15295:2;15290:3;15231:67;:::i;:::-;15224:74;;15307:93;15396:3;15307:93;:::i;:::-;15425:2;15420:3;15416:12;15409:19;;15214:220;;;:::o;15440:366::-;15582:3;15603:67;15667:2;15662:3;15603:67;:::i;:::-;15596:74;;15679:93;15768:3;15679:93;:::i;:::-;15797:2;15792:3;15788:12;15781:19;;15586:220;;;:::o;15812:366::-;15954:3;15975:67;16039:2;16034:3;15975:67;:::i;:::-;15968:74;;16051:93;16140:3;16051:93;:::i;:::-;16169:2;16164:3;16160:12;16153:19;;15958:220;;;:::o;16184:366::-;16326:3;16347:67;16411:2;16406:3;16347:67;:::i;:::-;16340:74;;16423:93;16512:3;16423:93;:::i;:::-;16541:2;16536:3;16532:12;16525:19;;16330:220;;;:::o;16556:365::-;16698:3;16719:66;16783:1;16778:3;16719:66;:::i;:::-;16712:73;;16794:93;16883:3;16794:93;:::i;:::-;16912:2;16907:3;16903:12;16896:19;;16702:219;;;:::o;16927:366::-;17069:3;17090:67;17154:2;17149:3;17090:67;:::i;:::-;17083:74;;17166:93;17255:3;17166:93;:::i;:::-;17284:2;17279:3;17275:12;17268:19;;17073:220;;;:::o;17299:366::-;17441:3;17462:67;17526:2;17521:3;17462:67;:::i;:::-;17455:74;;17538:93;17627:3;17538:93;:::i;:::-;17656:2;17651:3;17647:12;17640:19;;17445:220;;;:::o;17671:366::-;17813:3;17834:67;17898:2;17893:3;17834:67;:::i;:::-;17827:74;;17910:93;17999:3;17910:93;:::i;:::-;18028:2;18023:3;18019:12;18012:19;;17817:220;;;:::o;18043:366::-;18185:3;18206:67;18270:2;18265:3;18206:67;:::i;:::-;18199:74;;18282:93;18371:3;18282:93;:::i;:::-;18400:2;18395:3;18391:12;18384:19;;18189:220;;;:::o;18415:366::-;18557:3;18578:67;18642:2;18637:3;18578:67;:::i;:::-;18571:74;;18654:93;18743:3;18654:93;:::i;:::-;18772:2;18767:3;18763:12;18756:19;;18561:220;;;:::o;18787:366::-;18929:3;18950:67;19014:2;19009:3;18950:67;:::i;:::-;18943:74;;19026:93;19115:3;19026:93;:::i;:::-;19144:2;19139:3;19135:12;19128:19;;18933:220;;;:::o;19159:366::-;19301:3;19322:67;19386:2;19381:3;19322:67;:::i;:::-;19315:74;;19398:93;19487:3;19398:93;:::i;:::-;19516:2;19511:3;19507:12;19500:19;;19305:220;;;:::o;19531:366::-;19673:3;19694:67;19758:2;19753:3;19694:67;:::i;:::-;19687:74;;19770:93;19859:3;19770:93;:::i;:::-;19888:2;19883:3;19879:12;19872:19;;19677:220;;;:::o;19903:366::-;20045:3;20066:67;20130:2;20125:3;20066:67;:::i;:::-;20059:74;;20142:93;20231:3;20142:93;:::i;:::-;20260:2;20255:3;20251:12;20244:19;;20049:220;;;:::o;20275:366::-;20417:3;20438:67;20502:2;20497:3;20438:67;:::i;:::-;20431:74;;20514:93;20603:3;20514:93;:::i;:::-;20632:2;20627:3;20623:12;20616:19;;20421:220;;;:::o;20647:366::-;20789:3;20810:67;20874:2;20869:3;20810:67;:::i;:::-;20803:74;;20886:93;20975:3;20886:93;:::i;:::-;21004:2;20999:3;20995:12;20988:19;;20793:220;;;:::o;21019:366::-;21161:3;21182:67;21246:2;21241:3;21182:67;:::i;:::-;21175:74;;21258:93;21347:3;21258:93;:::i;:::-;21376:2;21371:3;21367:12;21360:19;;21165:220;;;:::o;21391:398::-;21550:3;21571:83;21652:1;21647:3;21571:83;:::i;:::-;21564:90;;21663:93;21752:3;21663:93;:::i;:::-;21781:1;21776:3;21772:11;21765:18;;21554:235;;;:::o;21795:366::-;21937:3;21958:67;22022:2;22017:3;21958:67;:::i;:::-;21951:74;;22034:93;22123:3;22034:93;:::i;:::-;22152:2;22147:3;22143:12;22136:19;;21941:220;;;:::o;22167:366::-;22309:3;22330:67;22394:2;22389:3;22330:67;:::i;:::-;22323:74;;22406:93;22495:3;22406:93;:::i;:::-;22524:2;22519:3;22515:12;22508:19;;22313:220;;;:::o;22539:366::-;22681:3;22702:67;22766:2;22761:3;22702:67;:::i;:::-;22695:74;;22778:93;22867:3;22778:93;:::i;:::-;22896:2;22891:3;22887:12;22880:19;;22685:220;;;:::o;22911:366::-;23053:3;23074:67;23138:2;23133:3;23074:67;:::i;:::-;23067:74;;23150:93;23239:3;23150:93;:::i;:::-;23268:2;23263:3;23259:12;23252:19;;23057:220;;;:::o;23283:108::-;23360:24;23378:5;23360:24;:::i;:::-;23355:3;23348:37;23338:53;;:::o;23397:118::-;23484:24;23502:5;23484:24;:::i;:::-;23479:3;23472:37;23462:53;;:::o;23521:589::-;23746:3;23768:95;23859:3;23850:6;23768:95;:::i;:::-;23761:102;;23880:95;23971:3;23962:6;23880:95;:::i;:::-;23873:102;;23992:92;24080:3;24071:6;23992:92;:::i;:::-;23985:99;;24101:3;24094:10;;23750:360;;;;;;:::o;24116:379::-;24300:3;24322:147;24465:3;24322:147;:::i;:::-;24315:154;;24486:3;24479:10;;24304:191;;;:::o;24501:222::-;24594:4;24632:2;24621:9;24617:18;24609:26;;24645:71;24713:1;24702:9;24698:17;24689:6;24645:71;:::i;:::-;24599:124;;;;:::o;24729:640::-;24924:4;24962:3;24951:9;24947:19;24939:27;;24976:71;25044:1;25033:9;25029:17;25020:6;24976:71;:::i;:::-;25057:72;25125:2;25114:9;25110:18;25101:6;25057:72;:::i;:::-;25139;25207:2;25196:9;25192:18;25183:6;25139:72;:::i;:::-;25258:9;25252:4;25248:20;25243:2;25232:9;25228:18;25221:48;25286:76;25357:4;25348:6;25286:76;:::i;:::-;25278:84;;24929:440;;;;;;;:::o;25375:373::-;25518:4;25556:2;25545:9;25541:18;25533:26;;25605:9;25599:4;25595:20;25591:1;25580:9;25576:17;25569:47;25633:108;25736:4;25727:6;25633:108;:::i;:::-;25625:116;;25523:225;;;;:::o;25754:210::-;25841:4;25879:2;25868:9;25864:18;25856:26;;25892:65;25954:1;25943:9;25939:17;25930:6;25892:65;:::i;:::-;25846:118;;;;:::o;25970:313::-;26083:4;26121:2;26110:9;26106:18;26098:26;;26170:9;26164:4;26160:20;26156:1;26145:9;26141:17;26134:47;26198:78;26271:4;26262:6;26198:78;:::i;:::-;26190:86;;26088:195;;;;:::o;26289:419::-;26455:4;26493:2;26482:9;26478:18;26470:26;;26542:9;26536:4;26532:20;26528:1;26517:9;26513:17;26506:47;26570:131;26696:4;26570:131;:::i;:::-;26562:139;;26460:248;;;:::o;26714:419::-;26880:4;26918:2;26907:9;26903:18;26895:26;;26967:9;26961:4;26957:20;26953:1;26942:9;26938:17;26931:47;26995:131;27121:4;26995:131;:::i;:::-;26987:139;;26885:248;;;:::o;27139:419::-;27305:4;27343:2;27332:9;27328:18;27320:26;;27392:9;27386:4;27382:20;27378:1;27367:9;27363:17;27356:47;27420:131;27546:4;27420:131;:::i;:::-;27412:139;;27310:248;;;:::o;27564:419::-;27730:4;27768:2;27757:9;27753:18;27745:26;;27817:9;27811:4;27807:20;27803:1;27792:9;27788:17;27781:47;27845:131;27971:4;27845:131;:::i;:::-;27837:139;;27735:248;;;:::o;27989:419::-;28155:4;28193:2;28182:9;28178:18;28170:26;;28242:9;28236:4;28232:20;28228:1;28217:9;28213:17;28206:47;28270:131;28396:4;28270:131;:::i;:::-;28262:139;;28160:248;;;:::o;28414:419::-;28580:4;28618:2;28607:9;28603:18;28595:26;;28667:9;28661:4;28657:20;28653:1;28642:9;28638:17;28631:47;28695:131;28821:4;28695:131;:::i;:::-;28687:139;;28585:248;;;:::o;28839:419::-;29005:4;29043:2;29032:9;29028:18;29020:26;;29092:9;29086:4;29082:20;29078:1;29067:9;29063:17;29056:47;29120:131;29246:4;29120:131;:::i;:::-;29112:139;;29010:248;;;:::o;29264:419::-;29430:4;29468:2;29457:9;29453:18;29445:26;;29517:9;29511:4;29507:20;29503:1;29492:9;29488:17;29481:47;29545:131;29671:4;29545:131;:::i;:::-;29537:139;;29435:248;;;:::o;29689:419::-;29855:4;29893:2;29882:9;29878:18;29870:26;;29942:9;29936:4;29932:20;29928:1;29917:9;29913:17;29906:47;29970:131;30096:4;29970:131;:::i;:::-;29962:139;;29860:248;;;:::o;30114:419::-;30280:4;30318:2;30307:9;30303:18;30295:26;;30367:9;30361:4;30357:20;30353:1;30342:9;30338:17;30331:47;30395:131;30521:4;30395:131;:::i;:::-;30387:139;;30285:248;;;:::o;30539:419::-;30705:4;30743:2;30732:9;30728:18;30720:26;;30792:9;30786:4;30782:20;30778:1;30767:9;30763:17;30756:47;30820:131;30946:4;30820:131;:::i;:::-;30812:139;;30710:248;;;:::o;30964:419::-;31130:4;31168:2;31157:9;31153:18;31145:26;;31217:9;31211:4;31207:20;31203:1;31192:9;31188:17;31181:47;31245:131;31371:4;31245:131;:::i;:::-;31237:139;;31135:248;;;:::o;31389:419::-;31555:4;31593:2;31582:9;31578:18;31570:26;;31642:9;31636:4;31632:20;31628:1;31617:9;31613:17;31606:47;31670:131;31796:4;31670:131;:::i;:::-;31662:139;;31560:248;;;:::o;31814:419::-;31980:4;32018:2;32007:9;32003:18;31995:26;;32067:9;32061:4;32057:20;32053:1;32042:9;32038:17;32031:47;32095:131;32221:4;32095:131;:::i;:::-;32087:139;;31985:248;;;:::o;32239:419::-;32405:4;32443:2;32432:9;32428:18;32420:26;;32492:9;32486:4;32482:20;32478:1;32467:9;32463:17;32456:47;32520:131;32646:4;32520:131;:::i;:::-;32512:139;;32410:248;;;:::o;32664:419::-;32830:4;32868:2;32857:9;32853:18;32845:26;;32917:9;32911:4;32907:20;32903:1;32892:9;32888:17;32881:47;32945:131;33071:4;32945:131;:::i;:::-;32937:139;;32835:248;;;:::o;33089:419::-;33255:4;33293:2;33282:9;33278:18;33270:26;;33342:9;33336:4;33332:20;33328:1;33317:9;33313:17;33306:47;33370:131;33496:4;33370:131;:::i;:::-;33362:139;;33260:248;;;:::o;33514:419::-;33680:4;33718:2;33707:9;33703:18;33695:26;;33767:9;33761:4;33757:20;33753:1;33742:9;33738:17;33731:47;33795:131;33921:4;33795:131;:::i;:::-;33787:139;;33685:248;;;:::o;33939:419::-;34105:4;34143:2;34132:9;34128:18;34120:26;;34192:9;34186:4;34182:20;34178:1;34167:9;34163:17;34156:47;34220:131;34346:4;34220:131;:::i;:::-;34212:139;;34110:248;;;:::o;34364:419::-;34530:4;34568:2;34557:9;34553:18;34545:26;;34617:9;34611:4;34607:20;34603:1;34592:9;34588:17;34581:47;34645:131;34771:4;34645:131;:::i;:::-;34637:139;;34535:248;;;:::o;34789:419::-;34955:4;34993:2;34982:9;34978:18;34970:26;;35042:9;35036:4;35032:20;35028:1;35017:9;35013:17;35006:47;35070:131;35196:4;35070:131;:::i;:::-;35062:139;;34960:248;;;:::o;35214:419::-;35380:4;35418:2;35407:9;35403:18;35395:26;;35467:9;35461:4;35457:20;35453:1;35442:9;35438:17;35431:47;35495:131;35621:4;35495:131;:::i;:::-;35487:139;;35385:248;;;:::o;35639:419::-;35805:4;35843:2;35832:9;35828:18;35820:26;;35892:9;35886:4;35882:20;35878:1;35867:9;35863:17;35856:47;35920:131;36046:4;35920:131;:::i;:::-;35912:139;;35810:248;;;:::o;36064:419::-;36230:4;36268:2;36257:9;36253:18;36245:26;;36317:9;36311:4;36307:20;36303:1;36292:9;36288:17;36281:47;36345:131;36471:4;36345:131;:::i;:::-;36337:139;;36235:248;;;:::o;36489:419::-;36655:4;36693:2;36682:9;36678:18;36670:26;;36742:9;36736:4;36732:20;36728:1;36717:9;36713:17;36706:47;36770:131;36896:4;36770:131;:::i;:::-;36762:139;;36660:248;;;:::o;36914:419::-;37080:4;37118:2;37107:9;37103:18;37095:26;;37167:9;37161:4;37157:20;37153:1;37142:9;37138:17;37131:47;37195:131;37321:4;37195:131;:::i;:::-;37187:139;;37085:248;;;:::o;37339:419::-;37505:4;37543:2;37532:9;37528:18;37520:26;;37592:9;37586:4;37582:20;37578:1;37567:9;37563:17;37556:47;37620:131;37746:4;37620:131;:::i;:::-;37612:139;;37510:248;;;:::o;37764:222::-;37857:4;37895:2;37884:9;37880:18;37872:26;;37908:71;37976:1;37965:9;37961:17;37952:6;37908:71;:::i;:::-;37862:124;;;;:::o;37992:129::-;38026:6;38053:20;;:::i;:::-;38043:30;;38082:33;38110:4;38102:6;38082:33;:::i;:::-;38033:88;;;:::o;38127:75::-;38160:6;38193:2;38187:9;38177:19;;38167:35;:::o;38208:311::-;38285:4;38375:18;38367:6;38364:30;38361:2;;;38397:18;;:::i;:::-;38361:2;38447:4;38439:6;38435:17;38427:25;;38507:4;38501;38497:15;38489:23;;38290:229;;;:::o;38525:307::-;38586:4;38676:18;38668:6;38665:30;38662:2;;;38698:18;;:::i;:::-;38662:2;38736:29;38758:6;38736:29;:::i;:::-;38728:37;;38820:4;38814;38810:15;38802:23;;38591:241;;;:::o;38838:308::-;38900:4;38990:18;38982:6;38979:30;38976:2;;;39012:18;;:::i;:::-;38976:2;39050:29;39072:6;39050:29;:::i;:::-;39042:37;;39134:4;39128;39124:15;39116:23;;38905:241;;;:::o;39152:132::-;39219:4;39242:3;39234:11;;39272:4;39267:3;39263:14;39255:22;;39224:60;;;:::o;39290:141::-;39339:4;39362:3;39354:11;;39385:3;39382:1;39375:14;39419:4;39416:1;39406:18;39398:26;;39344:87;;;:::o;39437:114::-;39504:6;39538:5;39532:12;39522:22;;39511:40;;;:::o;39557:98::-;39608:6;39642:5;39636:12;39626:22;;39615:40;;;:::o;39661:99::-;39713:6;39747:5;39741:12;39731:22;;39720:40;;;:::o;39766:113::-;39836:4;39868;39863:3;39859:14;39851:22;;39841:38;;;:::o;39885:184::-;39984:11;40018:6;40013:3;40006:19;40058:4;40053:3;40049:14;40034:29;;39996:73;;;;:::o;40075:168::-;40158:11;40192:6;40187:3;40180:19;40232:4;40227:3;40223:14;40208:29;;40170:73;;;;:::o;40249:147::-;40350:11;40387:3;40372:18;;40362:34;;;;:::o;40402:169::-;40486:11;40520:6;40515:3;40508:19;40560:4;40555:3;40551:14;40536:29;;40498:73;;;;:::o;40577:148::-;40679:11;40716:3;40701:18;;40691:34;;;;:::o;40731:305::-;40771:3;40790:20;40808:1;40790:20;:::i;:::-;40785:25;;40824:20;40842:1;40824:20;:::i;:::-;40819:25;;40978:1;40910:66;40906:74;40903:1;40900:81;40897:2;;;40984:18;;:::i;:::-;40897:2;41028:1;41025;41021:9;41014:16;;40775:261;;;;:::o;41042:185::-;41082:1;41099:20;41117:1;41099:20;:::i;:::-;41094:25;;41133:20;41151:1;41133:20;:::i;:::-;41128:25;;41172:1;41162:2;;41177:18;;:::i;:::-;41162:2;41219:1;41216;41212:9;41207:14;;41084:143;;;;:::o;41233:348::-;41273:7;41296:20;41314:1;41296:20;:::i;:::-;41291:25;;41330:20;41348:1;41330:20;:::i;:::-;41325:25;;41518:1;41450:66;41446:74;41443:1;41440:81;41435:1;41428:9;41421:17;41417:105;41414:2;;;41525:18;;:::i;:::-;41414:2;41573:1;41570;41566:9;41555:20;;41281:300;;;;:::o;41587:191::-;41627:4;41647:20;41665:1;41647:20;:::i;:::-;41642:25;;41681:20;41699:1;41681:20;:::i;:::-;41676:25;;41720:1;41717;41714:8;41711:2;;;41725:18;;:::i;:::-;41711:2;41770:1;41767;41763:9;41755:17;;41632:146;;;;:::o;41784:96::-;41821:7;41850:24;41868:5;41850:24;:::i;:::-;41839:35;;41829:51;;;:::o;41886:90::-;41920:7;41963:5;41956:13;41949:21;41938:32;;41928:48;;;:::o;41982:149::-;42018:7;42058:66;42051:5;42047:78;42036:89;;42026:105;;;:::o;42137:126::-;42174:7;42214:42;42207:5;42203:54;42192:65;;42182:81;;;:::o;42269:77::-;42306:7;42335:5;42324:16;;42314:32;;;:::o;42352:154::-;42436:6;42431:3;42426;42413:30;42498:1;42489:6;42484:3;42480:16;42473:27;42403:103;;;:::o;42512:307::-;42580:1;42590:113;42604:6;42601:1;42598:13;42590:113;;;42689:1;42684:3;42680:11;42674:18;42670:1;42665:3;42661:11;42654:39;42626:2;42623:1;42619:10;42614:15;;42590:113;;;42721:6;42718:1;42715:13;42712:2;;;42801:1;42792:6;42787:3;42783:16;42776:27;42712:2;42561:258;;;;:::o;42825:320::-;42869:6;42906:1;42900:4;42896:12;42886:22;;42953:1;42947:4;42943:12;42974:18;42964:2;;43030:4;43022:6;43018:17;43008:27;;42964:2;43092;43084:6;43081:14;43061:18;43058:38;43055:2;;;43111:18;;:::i;:::-;43055:2;42876:269;;;;:::o;43151:281::-;43234:27;43256:4;43234:27;:::i;:::-;43226:6;43222:40;43364:6;43352:10;43349:22;43328:18;43316:10;43313:34;43310:62;43307:2;;;43375:18;;:::i;:::-;43307:2;43415:10;43411:2;43404:22;43194:238;;;:::o;43438:233::-;43477:3;43500:24;43518:5;43500:24;:::i;:::-;43491:33;;43546:66;43539:5;43536:77;43533:2;;;43616:18;;:::i;:::-;43533:2;43663:1;43656:5;43652:13;43645:20;;43481:190;;;:::o;43677:176::-;43709:1;43726:20;43744:1;43726:20;:::i;:::-;43721:25;;43760:20;43778:1;43760:20;:::i;:::-;43755:25;;43799:1;43789:2;;43804:18;;:::i;:::-;43789:2;43845:1;43842;43838:9;43833:14;;43711:142;;;;:::o;43859:180::-;43907:77;43904:1;43897:88;44004:4;44001:1;43994:15;44028:4;44025:1;44018:15;44045:180;44093:77;44090:1;44083:88;44190:4;44187:1;44180:15;44214:4;44211:1;44204:15;44231:180;44279:77;44276:1;44269:88;44376:4;44373:1;44366:15;44400:4;44397:1;44390:15;44417:180;44465:77;44462:1;44455:88;44562:4;44559:1;44552:15;44586:4;44583:1;44576:15;44603:180;44651:77;44648:1;44641:88;44748:4;44745:1;44738:15;44772:4;44769:1;44762:15;44789:180;44837:77;44834:1;44827:88;44934:4;44931:1;44924:15;44958:4;44955:1;44948:15;44975:117;45084:1;45081;45074:12;45098:117;45207:1;45204;45197:12;45221:117;45330:1;45327;45320:12;45344:117;45453:1;45450;45443:12;45467:117;45576:1;45573;45566:12;45590:102;45631:6;45682:2;45678:7;45673:2;45666:5;45662:14;45658:28;45648:38;;45638:54;;;:::o;45698:230::-;45838:34;45834:1;45826:6;45822:14;45815:58;45907:13;45902:2;45894:6;45890:15;45883:38;45804:124;:::o;45934:237::-;46074:34;46070:1;46062:6;46058:14;46051:58;46143:20;46138:2;46130:6;46126:15;46119:45;46040:131;:::o;46177:225::-;46317:34;46313:1;46305:6;46301:14;46294:58;46386:8;46381:2;46373:6;46369:15;46362:33;46283:119;:::o;46408:172::-;46548:24;46544:1;46536:6;46532:14;46525:48;46514:66;:::o;46586:178::-;46726:30;46722:1;46714:6;46710:14;46703:54;46692:72;:::o;46770:167::-;46910:19;46906:1;46898:6;46894:14;46887:43;46876:61;:::o;46943:223::-;47083:34;47079:1;47071:6;47067:14;47060:58;47152:6;47147:2;47139:6;47135:15;47128:31;47049:117;:::o;47172:175::-;47312:27;47308:1;47300:6;47296:14;47289:51;47278:69;:::o;47353:162::-;47493:14;47489:1;47481:6;47477:14;47470:38;47459:56;:::o;47521:170::-;47661:22;47657:1;47649:6;47645:14;47638:46;47627:64;:::o;47697:159::-;47837:11;47833:1;47825:6;47821:14;47814:35;47803:53;:::o;47862:231::-;48002:34;47998:1;47990:6;47986:14;47979:58;48071:14;48066:2;48058:6;48054:15;48047:39;47968:125;:::o;48099:243::-;48239:34;48235:1;48227:6;48223:14;48216:58;48308:26;48303:2;48295:6;48291:15;48284:51;48205:137;:::o;48348:229::-;48488:34;48484:1;48476:6;48472:14;48465:58;48557:12;48552:2;48544:6;48540:15;48533:37;48454:123;:::o;48583:228::-;48723:34;48719:1;48711:6;48707:14;48700:58;48792:11;48787:2;48779:6;48775:15;48768:36;48689:122;:::o;48817:182::-;48957:34;48953:1;48945:6;48941:14;48934:58;48923:76;:::o;49005:231::-;49145:34;49141:1;49133:6;49129:14;49122:58;49214:14;49209:2;49201:6;49197:15;49190:39;49111:125;:::o;49242:165::-;49382:17;49378:1;49370:6;49366:14;49359:41;49348:59;:::o;49413:182::-;49553:34;49549:1;49541:6;49537:14;49530:58;49519:76;:::o;49601:228::-;49741:34;49737:1;49729:6;49725:14;49718:58;49810:11;49805:2;49797:6;49793:15;49786:36;49707:122;:::o;49835:234::-;49975:34;49971:1;49963:6;49959:14;49952:58;50044:17;50039:2;50031:6;50027:15;50020:42;49941:128;:::o;50075:220::-;50215:34;50211:1;50203:6;50199:14;50192:58;50284:3;50279:2;50271:6;50267:15;50260:28;50181:114;:::o;50301:175::-;50441:27;50437:1;50429:6;50425:14;50418:51;50407:69;:::o;50482:114::-;50588:8;:::o;50602:236::-;50742:34;50738:1;50730:6;50726:14;50719:58;50811:19;50806:2;50798:6;50794:15;50787:44;50708:130;:::o;50844:169::-;50984:21;50980:1;50972:6;50968:14;50961:45;50950:63;:::o;51019:231::-;51159:34;51155:1;51147:6;51143:14;51136:58;51228:14;51223:2;51215:6;51211:15;51204:39;51125:125;:::o;51256:181::-;51396:33;51392:1;51384:6;51380:14;51373:57;51362:75;:::o;51443:122::-;51516:24;51534:5;51516:24;:::i;:::-;51509:5;51506:35;51496:2;;51555:1;51552;51545:12;51496:2;51486:79;:::o;51571:116::-;51641:21;51656:5;51641:21;:::i;:::-;51634:5;51631:32;51621:2;;51677:1;51674;51667:12;51621:2;51611:76;:::o;51693:120::-;51765:23;51782:5;51765:23;:::i;:::-;51758:5;51755:34;51745:2;;51803:1;51800;51793:12;51745:2;51735:78;:::o;51819:122::-;51892:24;51910:5;51892:24;:::i;:::-;51885:5;51882:35;51872:2;;51931:1;51928;51921:12;51872:2;51862:79;:::o

Swarm Source

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