ETH Price: $3,321.14 (-3.29%)
Gas: 16 Gwei

Token

Black In Back Kat (BIBK)
 

Overview

Max Total Supply

4,435 BIBK

Holders

1,403

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
cssualcollector.eth
Balance
3 BIBK
0xee956511a3819339b22314ae18f95bb75c3d7160
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:
BlackInBackKat

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-14
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/utils/Strings.sol
/**
 * @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/Context.sol
/**
 * @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/utils/Address.sol

/**
 * @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/utils/Counters.sol
/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

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

/**
 * @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();
    }
}


contract BlackInBackKat is ERC721Enumerable, Ownable 
{
    string private baseURI;
    string private upgradeURI;

    uint256 public itemPrice = 0.08 ether;
    uint256 public _reserved = 70;
    uint256 public _total_supply = 4444;
    uint256 public _max_per_tx = 4;
    uint256 public _max_per_wallet_presale = 2;

    bool public isPresaleActive = false;
    bool public isPublicSaleActive = false;
    bool public isUpgradeActive = false;

    // KATz
    address public KATz;

    // upgrade kat
    uint256 public upgradePrice = 44 ether;
    mapping (uint256 => bool) public upgradeTokens;
    
    // withdraw addresses
    address t1 = 0x84F584Eb25587853A06608257B2a71065134bdC2;
    address t2 = 0x7F0bDE63F90D8Aa39c8964c92FD6e92D3AaD9148;

    constructor () ERC721("Black In Back Kat", "BIBK") 
    {
    }

    modifier onlyPresale() {
        require(isPresaleActive, "presale not active");
        _;
    }

    modifier onlyPublicSale() {
        require(isPublicSaleActive, "public sale not active");
        _;
    }

    // presale
    mapping(address => bool) private _presaleEligible1;
    mapping(address => bool) private _presaleEligible2;
    mapping(address => uint256) private _presaleClaimed;
    mapping(address => uint256) private _totalClaimed;

    mapping(uint256 => address) private _kat_minter;
    
    function addToPresaleList1(address[] calldata addresses) external onlyOwner 
    {
        for(uint256 i = 0; i < addresses.length; i++) 
        {
            require(addresses[i] != address(0), "null address");
            require(!_presaleEligible1[addresses[i]], "duplicate");
            _presaleEligible1[addresses[i]] = true;
            _presaleClaimed[addresses[i]] = 0;
        }
    }

    function removeFromPresaleList1(address[] calldata addresses) external onlyOwner 
    {
        for(uint256 i = 0; i < addresses.length; i++) 
        {
            require(addresses[i] != address(0), "null address");
            require(_presaleEligible1[addresses[i]], "not in presale");
            _presaleEligible1[addresses[i]] = false;
        }
    }

    function addToPresaleList2(address[] calldata addresses) external onlyOwner 
    {
        for(uint256 i = 0; i < addresses.length; i++) 
        {
            require(addresses[i] != address(0), "null address");
            require(!_presaleEligible2[addresses[i]], "duplicate");
            _presaleEligible2[addresses[i]] = true;
        }
    }

    function removeFromPresaleList2(address[] calldata addresses) external onlyOwner 
    {
        for(uint256 i = 0; i < addresses.length; i++) 
        {
            require(addresses[i] != address(0), "null address");
            require(_presaleEligible2[addresses[i]], "not in presale");
            _presaleEligible2[addresses[i]] = false;
        }
    }

    function isEligibleForPresale(address addr) public view returns (bool) 
    {
        require(addr != address(0), "null address");

        return getMaxClaimPresale(addr) > 0;
    }

    function getMaxClaimPresale(address addr) public view returns (uint256) 
	{
        require(addr != address(0), "null address");

        uint256 max_presale_mint = 0;

        if(_presaleEligible1[addr])
        {
            max_presale_mint += 1;
        }

        if(_presaleEligible2[addr])
        {
            max_presale_mint += 1;
        }

		return max_presale_mint;
	}

    function getPresaleClaimed(address addr) public view returns (uint256) 
    {
        require(addr != address(0), "null address");
        
        return _presaleClaimed[addr];
    }

    function hasClaimedPresale(address addr) external view returns (bool) 
    {
        require(addr != address(0), "null address");
    
        return _presaleClaimed[addr] == getMaxClaimPresale(addr);
    }

    // mint
    function mintReserved(address addr, uint numberOfMints)
        public onlyOwner 
    {
        require(addr != address(0),                                                 "null address");
        require(totalSupply() < _total_supply,                                      "sold out");
        require(_reserved - numberOfMints >= 0,                                     "Maximum amount already minted.");

        for(uint i = 0; i < numberOfMints; i++)
        {
            uint256 tokenId = totalSupply() + 1;
            _kat_minter[tokenId] = addr;
            _safeMint(addr, totalSupply() + 1);
        }

        _reserved -= numberOfMints;
    }

    function mintPresale(uint numberOfMints)
        public payable onlyPresale
    {
        uint256 max_claim_presale = getMaxClaimPresale(msg.sender);
        require(isEligibleForPresale(msg.sender),                                   "not eligible for presale");
        require(_presaleClaimed[msg.sender] < max_claim_presale,                    "already claimed");
        require(totalSupply() < _total_supply,                                      "sold out");
        require(totalSupply() + numberOfMints <= _total_supply - _reserved,         "Maximum amount already minted.");
        require(numberOfMints > 0,                                                  "gas fee for nothing, don't accept this request."); //(づ ̄ ³ ̄)づ
        require(numberOfMints <= max_claim_presale - _presaleClaimed[msg.sender],   "You cant mint more than 2 at a time.");
        require(msg.value == itemPrice * numberOfMints,                             "insufficient ETH");
        
        for(uint i = 0; i < numberOfMints; i++)
        {
            uint256 tokenId = totalSupply() + 1;
            _kat_minter[tokenId] = msg.sender;
            _presaleClaimed[msg.sender] += 1;
            _safeMint(msg.sender, tokenId);
        }
    }

    function mint(uint numberOfMints)
        public payable onlyPublicSale
    {
        require(totalSupply() < _total_supply,                                      "sold out");
        require(totalSupply() + numberOfMints <= _total_supply - _reserved,         "Maximum amount already minted.");
        require(numberOfMints > 0,                                                  "gas fee for nothing, don't accept this request."); //(づ ̄ ³ ̄)づ
        require(numberOfMints <= _max_per_tx,                                       "You cant mint more than 4 at a time.");
        require(msg.value == itemPrice * numberOfMints,                             "insufficient ETH");
        
        for(uint i = 0; i < numberOfMints; i++)
        {
            uint256 tokenId = totalSupply() + 1;
            _kat_minter[tokenId] = msg.sender;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    // upgrade
    function upgrade(uint256 tokenId) public
    {
        address from = msg.sender;
        require(isUpgradeActive,                                                    "upgrade hasn't started yet");
        require(KATz != address(0),                                                 "KATz contract address need be set");
        require(ownerOf(tokenId) == from,                                           "does not own the token");
        require(upgradeTokens[tokenId] == false,                                    "token must be the one that hasn't been upgraded.");
        require(IERC20(KATz).balanceOf(from) >= upgradePrice,                       "insufficient KATz");
        
        IERC20(KATz).transferFrom(msg.sender, owner(), upgradePrice);
    
        upgradeTokens[tokenId] = true;
    }

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

    function tokenURI(uint256 tokenId) public view override returns (string memory) 
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory uri = upgradeTokens[tokenId] ? upgradeURI : _baseURI();
        return bytes(uri).length > 0 ? string(abi.encodePacked(uri, toString(tokenId))) : "";
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) 
    {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        
        for(uint256 i; i < tokenCount; i++)
        {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        
        return tokensId;
    }
    
    function getKatMinter(uint256 tokenId) view public returns (address)
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return _kat_minter[tokenId];
    }
    
    function isKatUpgrade(uint256 tokenId) view public returns (bool)
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return upgradeTokens[tokenId];
    }

    // admin
    function setBaseURI(string memory uri) public onlyOwner 
    {
        baseURI = uri;
    }

    function setUpgradeURI(string memory uri) public onlyOwner 
    {
        upgradeURI = uri;
    }

    function togglePresaleStatus() external onlyOwner 
    {
        isPresaleActive = !isPresaleActive;
    }

    function togglePublicSaleStatus() external onlyOwner 
    {
        isPublicSaleActive = !isPublicSaleActive;
    }
    
    function toggleUpgradeStatus() external onlyOwner 
    {
        isUpgradeActive = !isUpgradeActive;
    }

    function setKATz(address addr) public payable onlyOwner
    {
        KATz = addr;
    }

    //Just incase something bad happen ʕノ•ᴥ•ʔノ ︵ ┻━┻
    function setItemPrice(uint256 _price) public onlyOwner 
    {
		itemPrice = _price;
	}

    function setUpgradePrice(uint256 _price) public onlyOwner 
    {
		upgradePrice = _price;
	}
	
    function upgradeKatToken(uint256 tokenId, bool val) public onlyOwner 
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        
        upgradeTokens[tokenId] = val;
    }

    function setClaimedPresale(address addr, uint256 number) public onlyOwner 
    {
        require(addr != address(0), "null address");
        _presaleClaimed[addr] = number;
    }

    function cashOut() public onlyOwner 
    {
        uint256 _each = address(this).balance / 2;
        require(payable(t1).send(_each));
        require(payable(t2).send(_each));
    }
        
    /**
     * @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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"KATz","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_max_per_tx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_max_per_wallet_presale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_total_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPresaleList1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToPresaleList2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cashOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getKatMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getMaxClaimPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getPresaleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"hasClaimedPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"addr","type":"address"}],"name":"isEligibleForPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isKatUpgrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isUpgradeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"itemPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromPresaleList1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromPresaleList2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"number","type":"uint256"}],"name":"setClaimedPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setItemPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setKATz","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setUpgradePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUpgradeURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleUpgradeStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"tokenId","type":"uint256"}],"name":"upgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bool","name":"val","type":"bool"}],"name":"upgradeKatToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upgradePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"upgradeTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

608060405267011c37937e080000600d556046600e5561115c600f55600460105560026011556012805462ffffff191690556802629f66e0c5300000601355601580546001600160a01b03199081167384f584eb25587853a06608257b2a71065134bdc21790915560168054909116737f0bde63f90d8aa39c8964c92fd6e92d3aad91481790553480156200009357600080fd5b506040805180820182526011815270109b1858dac8125b88109858dac812d85d607a1b6020808301918252835180850190945260048452634249424b60e01b908401528151919291620000e99160009162000178565b508051620000ff90600190602084019062000178565b5050506200011c620001166200012260201b60201c565b62000126565b6200025b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000186906200021e565b90600052602060002090601f016020900481019282620001aa5760008555620001f5565b82601f10620001c557805160ff1916838001178555620001f5565b82800160010185558215620001f5579182015b82811115620001f5578251825591602001919060010190620001d8565b506200020392915062000207565b5090565b5b8082111562000203576000815560010162000208565b600181811c908216806200023357607f821691505b602082108114156200025557634e487b7160e01b600052602260045260246000fd5b50919050565b6139ba806200026b6000396000f3fe60806040526004361061036b5760003560e01c8063715018a6116101c6578063aca180ea116100f7578063dac6db1c11610095578063e985e9c51161006f578063e985e9c5146109a7578063f2fde38b146109f0578063f759867a14610a10578063fc805d9414610a2357600080fd5b8063dac6db1c1461095b578063e008e59f14610971578063e6e3abc21461099157600080fd5b8063c3031aac116100d1578063c3031aac146108d4578063c3da45f8146108f4578063c87b56dd1461091b578063c9caeb1b1461093b57600080fd5b8063aca180ea1461087f578063b88d4fde1461089f578063b9ad9fde146108bf57600080fd5b806395d89b41116101645780639b9a9e031161013e5780639b9a9e031461080c5780639ee7962f1461082c578063a0712d681461084c578063a22cb4651461085f57600080fd5b806395d89b41146107b757806398ca7795146107cc5780639a559e13146107ec57600080fd5b80637bffb4ce116101a05780637bffb4ce146107445780637de55fe1146107595780638da5cb5b14610779578063928079681461079757600080fd5b8063715018a6146106fa578063793cd71e1461070f5780637a879a811461072457600080fd5b806342842e0e116102a0578063592ddf8e1161023e5780636352211e116102185780636352211e146106845780636aaa571d146106a45780636bca0900146106ba57806370a08231146106da57600080fd5b8063592ddf8e146106375780635ee309661461064a57806360d938dc1461066a57600080fd5b80634630d82e1161027a5780634630d82e146105b15780634d3cfc83146105e15780634f6ccce7146105f757806355f804b31461061757600080fd5b806342842e0e14610544578063438b63001461056457806345977d031461059157600080fd5b806314a7068a1161030d5780631e84c413116102e75780631e84c413146104cf57806323b872dd146104ee578063287ad39f1461050e5780632f745c591461052457600080fd5b806314a7068a1461048557806318160ddd146104a55780631af2243e146104ba57600080fd5b8063081812fc11610349578063081812fc146103e7578063095ea7b31461041f5780630aff37a614610441578063121e46e61461046157600080fd5b806301ffc9a714610370578063065f02db146103a557806306fdde03146103c5575b600080fd5b34801561037c57600080fd5b5061039061038b36600461343c565b610a43565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506012546103909062010000900460ff1681565b3480156103d157600080fd5b506103da610a6e565b60405161039c91906135f2565b3480156103f357600080fd5b506104076104023660046134bf565b610b00565b6040516001600160a01b03909116815260200161039c565b34801561042b57600080fd5b5061043f61043a366004613380565b610b8d565b005b34801561044d57600080fd5b5061043f61045c3660046133aa565b610ca3565b34801561046d57600080fd5b5061047760105481565b60405190815260200161039c565b34801561049157600080fd5b506103906104a0366004613243565b610e57565b3480156104b157600080fd5b50600854610477565b3480156104c657600080fd5b5061043f610eab565b3480156104db57600080fd5b5060125461039090610100900460ff1681565b3480156104fa57600080fd5b5061043f610509366004613291565b610ef4565b34801561051a57600080fd5b5061047760135481565b34801561053057600080fd5b5061047761053f366004613380565b610f25565b34801561055057600080fd5b5061043f61055f366004613291565b610fbb565b34801561057057600080fd5b5061058461057f366004613243565b610fd6565b60405161039c91906135ae565b34801561059d57600080fd5b5061043f6105ac3660046134bf565b611078565b3480156105bd57600080fd5b506103906105cc3660046134bf565b60146020526000908152604090205460ff1681565b3480156105ed57600080fd5b50610477600f5481565b34801561060357600080fd5b506104776106123660046134bf565b6113b2565b34801561062357600080fd5b5061043f610632366004613476565b611445565b61043f610645366004613243565b611486565b34801561065657600080fd5b50610477610665366004613243565b6114dc565b34801561067657600080fd5b506012546103909060ff1681565b34801561069057600080fd5b5061040761069f3660046134bf565b611520565b3480156106b057600080fd5b50610477600e5481565b3480156106c657600080fd5b5061043f6106d5366004613380565b611597565b3480156106e657600080fd5b506104776106f5366004613243565b611603565b34801561070657600080fd5b5061043f61168a565b34801561071b57600080fd5b5061043f6116c0565b34801561073057600080fd5b5061043f61073f3660046133aa565b61175f565b34801561075057600080fd5b5061043f6118d0565b34801561076557600080fd5b5061043f610774366004613380565b61190e565b34801561078557600080fd5b50600a546001600160a01b0316610407565b3480156107a357600080fd5b5061043f6107b23660046134f1565b611a47565b3480156107c357600080fd5b506103da611ab6565b3480156107d857600080fd5b5061043f6107e73660046134bf565b611ac5565b3480156107f857600080fd5b50610390610807366004613243565b611af4565b34801561081857600080fd5b5061043f610827366004613476565b611b2e565b34801561083857600080fd5b50610477610847366004613243565b611b6b565b61043f61085a3660046134bf565b611bf5565b34801561086b57600080fd5b5061043f61087a366004613349565b611ddc565b34801561088b57600080fd5b5061040761089a3660046134bf565b611ea1565b3480156108ab57600080fd5b5061043f6108ba3660046132cd565b611ee4565b3480156108cb57600080fd5b5061043f611f1c565b3480156108e057600080fd5b5061043f6108ef3660046133aa565b611f63565b34801561090057600080fd5b5060125461040790630100000090046001600160a01b031681565b34801561092757600080fd5b506103da6109363660046134bf565b6120d4565b34801561094757600080fd5b5061043f6109563660046133aa565b6121fb565b34801561096757600080fd5b50610477600d5481565b34801561097d57600080fd5b5061039061098c3660046134bf565b612368565b34801561099d57600080fd5b5061047760115481565b3480156109b357600080fd5b506103906109c236600461325e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109fc57600080fd5b5061043f610a0b366004613243565b6123a5565b61043f610a1e3660046134bf565b61243d565b348015610a2f57600080fd5b5061043f610a3e3660046134bf565b612706565b60006001600160e01b0319821663780e9d6360e01b1480610a685750610a6882612735565b92915050565b606060008054610a7d90613888565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa990613888565b8015610af65780601f10610acb57610100808354040283529160200191610af6565b820191906000526020600020905b815481529060010190602001808311610ad957829003601f168201915b5050505050905090565b6000610b0b82612785565b610b715760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b9882611520565b9050806001600160a01b0316836001600160a01b03161415610c065760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b68565b336001600160a01b0382161480610c225750610c2281336109c2565b610c945760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b68565b610c9e83836127a2565b505050565b600a546001600160a01b03163314610ccd5760405162461bcd60e51b8152600401610b6890613725565b60005b81811015610c9e576000838383818110610cec57610cec613934565b9050602002016020810190610d019190613243565b6001600160a01b03161415610d285760405162461bcd60e51b8152600401610b68906136a6565b60176000848484818110610d3e57610d3e613934565b9050602002016020810190610d539190613243565b6001600160a01b0316815260208101919091526040016000205460ff1615610da95760405162461bcd60e51b81526020600482015260096024820152686475706c696361746560b81b6044820152606401610b68565b600160176000858585818110610dc157610dc1613934565b9050602002016020810190610dd69190613243565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601981858585818110610e1657610e16613934565b9050602002016020810190610e2b9190613243565b6001600160a01b0316815260208101919091526040016000205580610e4f816138c3565b915050610cd0565b60006001600160a01b038216610e7f5760405162461bcd60e51b8152600401610b68906136a6565b610e8882611b6b565b6001600160a01b0390921660009081526019602052604090205491909114919050565b600a546001600160a01b03163314610ed55760405162461bcd60e51b8152600401610b6890613725565b6012805462ff0000198116620100009182900460ff1615909102179055565b610efe3382612810565b610f1a5760405162461bcd60e51b8152600401610b68906137a9565b610c9e8383836128fa565b6000610f3083611603565b8210610f925760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b68565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610c9e83838360405180602001604052806000815250611ee4565b60606000610fe383611603565b905060008167ffffffffffffffff8111156110005761100061394a565b604051908082528060200260200182016040528015611029578160200160208202803683370190505b50905060005b82811015611070576110418582610f25565b82828151811061105357611053613934565b602090810291909101015280611068816138c3565b91505061102f565b509392505050565b601254339062010000900460ff166110d25760405162461bcd60e51b815260206004820152601a60248201527f75706772616465206861736e27742073746172746564207965740000000000006044820152606401610b68565b601254630100000090046001600160a01b031661113b5760405162461bcd60e51b815260206004820152602160248201527f4b41547a20636f6e74726163742061646472657373206e6565642062652073656044820152601d60fa1b6064820152608401610b68565b806001600160a01b031661114e83611520565b6001600160a01b03161461119d5760405162461bcd60e51b81526020600482015260166024820152753237b2b9903737ba1037bbb7103a3432903a37b5b2b760511b6044820152606401610b68565b60008281526014602052604090205460ff16156112155760405162461bcd60e51b815260206004820152603060248201527f746f6b656e206d75737420626520746865206f6e652074686174206861736e2760448201526f3a103132b2b7103ab833b930b232b21760811b6064820152608401610b68565b6013546012546040516370a0823160e01b81526001600160a01b0384811660048301526301000000909204909116906370a082319060240160206040518083038186803b15801561126557600080fd5b505afa158015611279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129d91906134d8565b10156112df5760405162461bcd60e51b815260206004820152601160248201527034b739bab33334b1b4b2b73a1025a0aa3d60791b6044820152606401610b68565b6012546001600160a01b036301000000909104166323b872dd3361130b600a546001600160a01b031690565b6013546040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b15801561135d57600080fd5b505af1158015611371573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611395919061341f565b50506000908152601460205260409020805460ff19166001179055565b60006113bd60085490565b82106114205760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b68565b6008828154811061143357611433613934565b90600052602060002001549050919050565b600a546001600160a01b0316331461146f5760405162461bcd60e51b8152600401610b6890613725565b805161148290600b906020840190613118565b5050565b600a546001600160a01b031633146114b05760405162461bcd60e51b8152600401610b6890613725565b601280546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b60006001600160a01b0382166115045760405162461bcd60e51b8152600401610b68906136a6565b506001600160a01b031660009081526019602052604090205490565b6000818152600260205260408120546001600160a01b031680610a685760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b68565b600a546001600160a01b031633146115c15760405162461bcd60e51b8152600401610b6890613725565b6001600160a01b0382166115e75760405162461bcd60e51b8152600401610b68906136a6565b6001600160a01b03909116600090815260196020526040902055565b60006001600160a01b03821661166e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b68565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116b45760405162461bcd60e51b8152600401610b6890613725565b6116be6000612aa5565b565b600a546001600160a01b031633146116ea5760405162461bcd60e51b8152600401610b6890613725565b60006116f7600247613812565b6015546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505061172a57600080fd5b6016546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061175c57600080fd5b50565b600a546001600160a01b031633146117895760405162461bcd60e51b8152600401610b6890613725565b60005b81811015610c9e5760008383838181106117a8576117a8613934565b90506020020160208101906117bd9190613243565b6001600160a01b031614156117e45760405162461bcd60e51b8152600401610b68906136a6565b601860008484848181106117fa576117fa613934565b905060200201602081019061180f9190613243565b6001600160a01b0316815260208101919091526040016000205460ff166118695760405162461bcd60e51b815260206004820152600e60248201526d6e6f7420696e2070726573616c6560901b6044820152606401610b68565b60006018600085858581811061188157611881613934565b90506020020160208101906118969190613243565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806118c8816138c3565b91505061178c565b600a546001600160a01b031633146118fa5760405162461bcd60e51b8152600401610b6890613725565b6012805460ff19811660ff90911615179055565b600a546001600160a01b031633146119385760405162461bcd60e51b8152600401610b6890613725565b6001600160a01b03821661195e5760405162461bcd60e51b8152600401610b68906136a6565b600f54600854106119815760405162461bcd60e51b8152600401610b68906136cc565b600081600e546119919190613845565b10156119af5760405162461bcd60e51b8152600401610b68906136ee565b60005b81811015611a2b5760006119c560085490565b6119d09060016137fa565b6000818152601b6020526040902080546001600160a01b0387166001600160a01b03199091161790559050611a1884611a0860085490565b611a139060016137fa565b612af7565b5080611a23816138c3565b9150506119b2565b5080600e6000828254611a3e9190613845565b90915550505050565b600a546001600160a01b03163314611a715760405162461bcd60e51b8152600401610b6890613725565b611a7a82612785565b611a965760405162461bcd60e51b8152600401610b689061375a565b600091825260146020526040909120805460ff1916911515919091179055565b606060018054610a7d90613888565b600a546001600160a01b03163314611aef5760405162461bcd60e51b8152600401610b6890613725565b600d55565b60006001600160a01b038216611b1c5760405162461bcd60e51b8152600401610b68906136a6565b6000611b2783611b6b565b1192915050565b600a546001600160a01b03163314611b585760405162461bcd60e51b8152600401610b6890613725565b805161148290600c906020840190613118565b60006001600160a01b038216611b935760405162461bcd60e51b8152600401610b68906136a6565b6001600160a01b03821660009081526017602052604081205460ff1615611bc257611bbf6001826137fa565b90505b6001600160a01b03831660009081526018602052604090205460ff1615610a6857611bee6001826137fa565b9392505050565b601254610100900460ff16611c455760405162461bcd60e51b81526020600482015260166024820152757075626c69632073616c65206e6f742061637469766560501b6044820152606401610b68565b600f5460085410611c685760405162461bcd60e51b8152600401610b68906136cc565b600e54600f54611c789190613845565b81611c8260085490565b611c8c91906137fa565b1115611caa5760405162461bcd60e51b8152600401610b68906136ee565b60008111611cca5760405162461bcd60e51b8152600401610b6890613657565b601054811115611d285760405162461bcd60e51b8152602060048201526024808201527f596f752063616e74206d696e74206d6f7265207468616e20342061742061207460448201526334b6b29760e11b6064820152608401610b68565b80600d54611d369190613826565b3414611d775760405162461bcd60e51b815260206004820152601060248201526f0d2dce6eaccccd2c6d2cadce8408aa8960831b6044820152606401610b68565b60005b81811015611482576000611d8d60085490565b611d989060016137fa565b6000818152601b6020526040902080546001600160a01b03191633908117909155909150611dc990611a0860085490565b5080611dd4816138c3565b915050611d7a565b6001600160a01b038216331415611e355760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b68565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000611eac82612785565b611ec85760405162461bcd60e51b8152600401610b689061375a565b506000908152601b60205260409020546001600160a01b031690565b611eee3383612810565b611f0a5760405162461bcd60e51b8152600401610b68906137a9565b611f1684848484612b11565b50505050565b600a546001600160a01b03163314611f465760405162461bcd60e51b8152600401610b6890613725565b6012805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b03163314611f8d5760405162461bcd60e51b8152600401610b6890613725565b60005b81811015610c9e576000838383818110611fac57611fac613934565b9050602002016020810190611fc19190613243565b6001600160a01b03161415611fe85760405162461bcd60e51b8152600401610b68906136a6565b60176000848484818110611ffe57611ffe613934565b90506020020160208101906120139190613243565b6001600160a01b0316815260208101919091526040016000205460ff1661206d5760405162461bcd60e51b815260206004820152600e60248201526d6e6f7420696e2070726573616c6560901b6044820152606401610b68565b60006017600085858581811061208557612085613934565b905060200201602081019061209a9190613243565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806120cc816138c3565b915050611f90565b60606120df82612785565b6120fb5760405162461bcd60e51b8152600401610b689061375a565b60008281526014602052604081205460ff1661211e57612119612b44565b6121aa565b600c805461212b90613888565b80601f016020809104026020016040519081016040528092919081815260200182805461215790613888565b80156121a45780601f10612179576101008083540402835291602001916121a4565b820191906000526020600020905b81548152906001019060200180831161218757829003601f168201915b50505050505b905060008151116121ca5760405180602001604052806000815250611bee565b806121d484612b53565b6040516020016121e5929190613542565b6040516020818303038152906040529392505050565b600a546001600160a01b031633146122255760405162461bcd60e51b8152600401610b6890613725565b60005b81811015610c9e57600083838381811061224457612244613934565b90506020020160208101906122599190613243565b6001600160a01b031614156122805760405162461bcd60e51b8152600401610b68906136a6565b6018600084848481811061229657612296613934565b90506020020160208101906122ab9190613243565b6001600160a01b0316815260208101919091526040016000205460ff16156123015760405162461bcd60e51b81526020600482015260096024820152686475706c696361746560b81b6044820152606401610b68565b60016018600085858581811061231957612319613934565b905060200201602081019061232e9190613243565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580612360816138c3565b915050612228565b600061237382612785565b61238f5760405162461bcd60e51b8152600401610b689061375a565b5060009081526014602052604090205460ff1690565b600a546001600160a01b031633146123cf5760405162461bcd60e51b8152600401610b6890613725565b6001600160a01b0381166124345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b68565b61175c81612aa5565b60125460ff166124845760405162461bcd60e51b815260206004820152601260248201527170726573616c65206e6f742061637469766560701b6044820152606401610b68565b600061248f33611b6b565b905061249a33611af4565b6124e65760405162461bcd60e51b815260206004820152601860248201527f6e6f7420656c696769626c6520666f722070726573616c6500000000000000006044820152606401610b68565b3360009081526019602052604090205481116125365760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e4818db185a5b5959608a1b6044820152606401610b68565b600f54600854106125595760405162461bcd60e51b8152600401610b68906136cc565b600e54600f546125699190613845565b8261257360085490565b61257d91906137fa565b111561259b5760405162461bcd60e51b8152600401610b68906136ee565b600082116125bb5760405162461bcd60e51b8152600401610b6890613657565b336000908152601960205260409020546125d59082613845565b8211156126305760405162461bcd60e51b8152602060048201526024808201527f596f752063616e74206d696e74206d6f7265207468616e20322061742061207460448201526334b6b29760e11b6064820152608401610b68565b81600d5461263e9190613826565b341461267f5760405162461bcd60e51b815260206004820152601060248201526f0d2dce6eaccccd2c6d2cadce8408aa8960831b6044820152606401610b68565b60005b82811015610c9e57600061269560085490565b6126a09060016137fa565b6000818152601b6020908152604080832080546001600160a01b0319163390811790915583526019909152812080549293506001929091906126e39084906137fa565b909155506126f390503382612af7565b50806126fe816138c3565b915050612682565b600a546001600160a01b031633146127305760405162461bcd60e51b8152600401610b6890613725565b601355565b60006001600160e01b031982166380ac58cd60e01b148061276657506001600160e01b03198216635b5e139f60e01b145b80610a6857506301ffc9a760e01b6001600160e01b0319831614610a68565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906127d782611520565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061281b82612785565b61287c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b68565b600061288783611520565b9050806001600160a01b0316846001600160a01b031614806128c25750836001600160a01b03166128b784610b00565b6001600160a01b0316145b806128f257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661290d82611520565b6001600160a01b0316146129755760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b68565b6001600160a01b0382166129d75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b68565b6129e2838383612c51565b6129ed6000826127a2565b6001600160a01b0383166000908152600360205260408120805460019290612a16908490613845565b90915550506001600160a01b0382166000908152600360205260408120805460019290612a449084906137fa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611482828260405180602001604052806000815250612d09565b612b1c8484846128fa565b612b2884848484612d3c565b611f165760405162461bcd60e51b8152600401610b6890613605565b6060600b8054610a7d90613888565b606081612b775750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612ba15780612b8b816138c3565b9150612b9a9050600a83613812565b9150612b7b565b60008167ffffffffffffffff811115612bbc57612bbc61394a565b6040519080825280601f01601f191660200182016040528015612be6576020820181803683370190505b5090505b84156128f257612bfb600183613845565b9150612c08600a866138de565b612c139060306137fa565b60f81b818381518110612c2857612c28613934565b60200101906001600160f81b031916908160001a905350612c4a600a86613812565b9450612bea565b6001600160a01b038316612cac57612ca781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ccf565b816001600160a01b0316836001600160a01b031614612ccf57612ccf8382612e49565b6001600160a01b038216612ce657610c9e81612ee6565b826001600160a01b0316826001600160a01b031614610c9e57610c9e8282612f95565b612d138383612fd9565b612d206000848484612d3c565b610c9e5760405162461bcd60e51b8152600401610b6890613605565b60006001600160a01b0384163b15612e3e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d80903390899088908890600401613571565b602060405180830381600087803b158015612d9a57600080fd5b505af1925050508015612dca575060408051601f3d908101601f19168201909252612dc791810190613459565b60015b612e24573d808015612df8576040519150601f19603f3d011682016040523d82523d6000602084013e612dfd565b606091505b508051612e1c5760405162461bcd60e51b8152600401610b6890613605565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506128f2565b506001949350505050565b60006001612e5684611603565b612e609190613845565b600083815260076020526040902054909150808214612eb3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612ef890600190613845565b60008381526009602052604081205460088054939450909284908110612f2057612f20613934565b906000526020600020015490508060088381548110612f4157612f41613934565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612f7957612f7961391e565b6001900381819060005260206000200160009055905550505050565b6000612fa083611603565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661302f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b68565b61303881612785565b156130855760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b68565b61309160008383612c51565b6001600160a01b03821660009081526003602052604081208054600192906130ba9084906137fa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461312490613888565b90600052602060002090601f016020900481019282613146576000855561318c565b82601f1061315f57805160ff191683800117855561318c565b8280016001018555821561318c579182015b8281111561318c578251825591602001919060010190613171565b5061319892915061319c565b5090565b5b80821115613198576000815560010161319d565b600067ffffffffffffffff808411156131cc576131cc61394a565b604051601f8501601f19908116603f011681019082821181831017156131f4576131f461394a565b8160405280935085815286868601111561320d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461323e57600080fd5b919050565b60006020828403121561325557600080fd5b611bee82613227565b6000806040838503121561327157600080fd5b61327a83613227565b915061328860208401613227565b90509250929050565b6000806000606084860312156132a657600080fd5b6132af84613227565b92506132bd60208501613227565b9150604084013590509250925092565b600080600080608085870312156132e357600080fd5b6132ec85613227565b93506132fa60208601613227565b925060408501359150606085013567ffffffffffffffff81111561331d57600080fd5b8501601f8101871361332e57600080fd5b61333d878235602084016131b1565b91505092959194509250565b6000806040838503121561335c57600080fd5b61336583613227565b9150602083013561337581613960565b809150509250929050565b6000806040838503121561339357600080fd5b61339c83613227565b946020939093013593505050565b600080602083850312156133bd57600080fd5b823567ffffffffffffffff808211156133d557600080fd5b818501915085601f8301126133e957600080fd5b8135818111156133f857600080fd5b8660208260051b850101111561340d57600080fd5b60209290920196919550909350505050565b60006020828403121561343157600080fd5b8151611bee81613960565b60006020828403121561344e57600080fd5b8135611bee8161396e565b60006020828403121561346b57600080fd5b8151611bee8161396e565b60006020828403121561348857600080fd5b813567ffffffffffffffff81111561349f57600080fd5b8201601f810184136134b057600080fd5b6128f2848235602084016131b1565b6000602082840312156134d157600080fd5b5035919050565b6000602082840312156134ea57600080fd5b5051919050565b6000806040838503121561350457600080fd5b82359150602083013561337581613960565b6000815180845261352e81602086016020860161385c565b601f01601f19169290920160200192915050565b6000835161355481846020880161385c565b83519083019061356881836020880161385c565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906135a490830184613516565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156135e6578351835292840192918401916001016135ca565b50909695505050505050565b602081526000611bee6020830184613516565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602f908201527f6761732066656520666f72206e6f7468696e672c20646f6e277420616363657060408201526e3a103a3434b9903932b8bab2b9ba1760891b606082015260800190565b6020808252600c908201526b6e756c6c206164647265737360a01b604082015260600190565b6020808252600890820152671cdbdb19081bdd5d60c21b604082015260600190565b6020808252601e908201527f4d6178696d756d20616d6f756e7420616c7265616479206d696e7465642e0000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561380d5761380d6138f2565b500190565b60008261382157613821613908565b500490565b6000816000190483118215151615613840576138406138f2565b500290565b600082821015613857576138576138f2565b500390565b60005b8381101561387757818101518382015260200161385f565b83811115611f165750506000910152565b600181811c9082168061389c57607f821691505b602082108114156138bd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156138d7576138d76138f2565b5060010190565b6000826138ed576138ed613908565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461175c57600080fd5b6001600160e01b03198116811461175c57600080fdfea2646970667358221220308876c3f6f5e4348830c8b3696e986fd2540a8e2e1bb1cc53ec463ff42329d464736f6c63430008070033

Deployed Bytecode

0x60806040526004361061036b5760003560e01c8063715018a6116101c6578063aca180ea116100f7578063dac6db1c11610095578063e985e9c51161006f578063e985e9c5146109a7578063f2fde38b146109f0578063f759867a14610a10578063fc805d9414610a2357600080fd5b8063dac6db1c1461095b578063e008e59f14610971578063e6e3abc21461099157600080fd5b8063c3031aac116100d1578063c3031aac146108d4578063c3da45f8146108f4578063c87b56dd1461091b578063c9caeb1b1461093b57600080fd5b8063aca180ea1461087f578063b88d4fde1461089f578063b9ad9fde146108bf57600080fd5b806395d89b41116101645780639b9a9e031161013e5780639b9a9e031461080c5780639ee7962f1461082c578063a0712d681461084c578063a22cb4651461085f57600080fd5b806395d89b41146107b757806398ca7795146107cc5780639a559e13146107ec57600080fd5b80637bffb4ce116101a05780637bffb4ce146107445780637de55fe1146107595780638da5cb5b14610779578063928079681461079757600080fd5b8063715018a6146106fa578063793cd71e1461070f5780637a879a811461072457600080fd5b806342842e0e116102a0578063592ddf8e1161023e5780636352211e116102185780636352211e146106845780636aaa571d146106a45780636bca0900146106ba57806370a08231146106da57600080fd5b8063592ddf8e146106375780635ee309661461064a57806360d938dc1461066a57600080fd5b80634630d82e1161027a5780634630d82e146105b15780634d3cfc83146105e15780634f6ccce7146105f757806355f804b31461061757600080fd5b806342842e0e14610544578063438b63001461056457806345977d031461059157600080fd5b806314a7068a1161030d5780631e84c413116102e75780631e84c413146104cf57806323b872dd146104ee578063287ad39f1461050e5780632f745c591461052457600080fd5b806314a7068a1461048557806318160ddd146104a55780631af2243e146104ba57600080fd5b8063081812fc11610349578063081812fc146103e7578063095ea7b31461041f5780630aff37a614610441578063121e46e61461046157600080fd5b806301ffc9a714610370578063065f02db146103a557806306fdde03146103c5575b600080fd5b34801561037c57600080fd5b5061039061038b36600461343c565b610a43565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506012546103909062010000900460ff1681565b3480156103d157600080fd5b506103da610a6e565b60405161039c91906135f2565b3480156103f357600080fd5b506104076104023660046134bf565b610b00565b6040516001600160a01b03909116815260200161039c565b34801561042b57600080fd5b5061043f61043a366004613380565b610b8d565b005b34801561044d57600080fd5b5061043f61045c3660046133aa565b610ca3565b34801561046d57600080fd5b5061047760105481565b60405190815260200161039c565b34801561049157600080fd5b506103906104a0366004613243565b610e57565b3480156104b157600080fd5b50600854610477565b3480156104c657600080fd5b5061043f610eab565b3480156104db57600080fd5b5060125461039090610100900460ff1681565b3480156104fa57600080fd5b5061043f610509366004613291565b610ef4565b34801561051a57600080fd5b5061047760135481565b34801561053057600080fd5b5061047761053f366004613380565b610f25565b34801561055057600080fd5b5061043f61055f366004613291565b610fbb565b34801561057057600080fd5b5061058461057f366004613243565b610fd6565b60405161039c91906135ae565b34801561059d57600080fd5b5061043f6105ac3660046134bf565b611078565b3480156105bd57600080fd5b506103906105cc3660046134bf565b60146020526000908152604090205460ff1681565b3480156105ed57600080fd5b50610477600f5481565b34801561060357600080fd5b506104776106123660046134bf565b6113b2565b34801561062357600080fd5b5061043f610632366004613476565b611445565b61043f610645366004613243565b611486565b34801561065657600080fd5b50610477610665366004613243565b6114dc565b34801561067657600080fd5b506012546103909060ff1681565b34801561069057600080fd5b5061040761069f3660046134bf565b611520565b3480156106b057600080fd5b50610477600e5481565b3480156106c657600080fd5b5061043f6106d5366004613380565b611597565b3480156106e657600080fd5b506104776106f5366004613243565b611603565b34801561070657600080fd5b5061043f61168a565b34801561071b57600080fd5b5061043f6116c0565b34801561073057600080fd5b5061043f61073f3660046133aa565b61175f565b34801561075057600080fd5b5061043f6118d0565b34801561076557600080fd5b5061043f610774366004613380565b61190e565b34801561078557600080fd5b50600a546001600160a01b0316610407565b3480156107a357600080fd5b5061043f6107b23660046134f1565b611a47565b3480156107c357600080fd5b506103da611ab6565b3480156107d857600080fd5b5061043f6107e73660046134bf565b611ac5565b3480156107f857600080fd5b50610390610807366004613243565b611af4565b34801561081857600080fd5b5061043f610827366004613476565b611b2e565b34801561083857600080fd5b50610477610847366004613243565b611b6b565b61043f61085a3660046134bf565b611bf5565b34801561086b57600080fd5b5061043f61087a366004613349565b611ddc565b34801561088b57600080fd5b5061040761089a3660046134bf565b611ea1565b3480156108ab57600080fd5b5061043f6108ba3660046132cd565b611ee4565b3480156108cb57600080fd5b5061043f611f1c565b3480156108e057600080fd5b5061043f6108ef3660046133aa565b611f63565b34801561090057600080fd5b5060125461040790630100000090046001600160a01b031681565b34801561092757600080fd5b506103da6109363660046134bf565b6120d4565b34801561094757600080fd5b5061043f6109563660046133aa565b6121fb565b34801561096757600080fd5b50610477600d5481565b34801561097d57600080fd5b5061039061098c3660046134bf565b612368565b34801561099d57600080fd5b5061047760115481565b3480156109b357600080fd5b506103906109c236600461325e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109fc57600080fd5b5061043f610a0b366004613243565b6123a5565b61043f610a1e3660046134bf565b61243d565b348015610a2f57600080fd5b5061043f610a3e3660046134bf565b612706565b60006001600160e01b0319821663780e9d6360e01b1480610a685750610a6882612735565b92915050565b606060008054610a7d90613888565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa990613888565b8015610af65780601f10610acb57610100808354040283529160200191610af6565b820191906000526020600020905b815481529060010190602001808311610ad957829003601f168201915b5050505050905090565b6000610b0b82612785565b610b715760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b9882611520565b9050806001600160a01b0316836001600160a01b03161415610c065760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b68565b336001600160a01b0382161480610c225750610c2281336109c2565b610c945760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b68565b610c9e83836127a2565b505050565b600a546001600160a01b03163314610ccd5760405162461bcd60e51b8152600401610b6890613725565b60005b81811015610c9e576000838383818110610cec57610cec613934565b9050602002016020810190610d019190613243565b6001600160a01b03161415610d285760405162461bcd60e51b8152600401610b68906136a6565b60176000848484818110610d3e57610d3e613934565b9050602002016020810190610d539190613243565b6001600160a01b0316815260208101919091526040016000205460ff1615610da95760405162461bcd60e51b81526020600482015260096024820152686475706c696361746560b81b6044820152606401610b68565b600160176000858585818110610dc157610dc1613934565b9050602002016020810190610dd69190613243565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155601981858585818110610e1657610e16613934565b9050602002016020810190610e2b9190613243565b6001600160a01b0316815260208101919091526040016000205580610e4f816138c3565b915050610cd0565b60006001600160a01b038216610e7f5760405162461bcd60e51b8152600401610b68906136a6565b610e8882611b6b565b6001600160a01b0390921660009081526019602052604090205491909114919050565b600a546001600160a01b03163314610ed55760405162461bcd60e51b8152600401610b6890613725565b6012805462ff0000198116620100009182900460ff1615909102179055565b610efe3382612810565b610f1a5760405162461bcd60e51b8152600401610b68906137a9565b610c9e8383836128fa565b6000610f3083611603565b8210610f925760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b68565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610c9e83838360405180602001604052806000815250611ee4565b60606000610fe383611603565b905060008167ffffffffffffffff8111156110005761100061394a565b604051908082528060200260200182016040528015611029578160200160208202803683370190505b50905060005b82811015611070576110418582610f25565b82828151811061105357611053613934565b602090810291909101015280611068816138c3565b91505061102f565b509392505050565b601254339062010000900460ff166110d25760405162461bcd60e51b815260206004820152601a60248201527f75706772616465206861736e27742073746172746564207965740000000000006044820152606401610b68565b601254630100000090046001600160a01b031661113b5760405162461bcd60e51b815260206004820152602160248201527f4b41547a20636f6e74726163742061646472657373206e6565642062652073656044820152601d60fa1b6064820152608401610b68565b806001600160a01b031661114e83611520565b6001600160a01b03161461119d5760405162461bcd60e51b81526020600482015260166024820152753237b2b9903737ba1037bbb7103a3432903a37b5b2b760511b6044820152606401610b68565b60008281526014602052604090205460ff16156112155760405162461bcd60e51b815260206004820152603060248201527f746f6b656e206d75737420626520746865206f6e652074686174206861736e2760448201526f3a103132b2b7103ab833b930b232b21760811b6064820152608401610b68565b6013546012546040516370a0823160e01b81526001600160a01b0384811660048301526301000000909204909116906370a082319060240160206040518083038186803b15801561126557600080fd5b505afa158015611279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129d91906134d8565b10156112df5760405162461bcd60e51b815260206004820152601160248201527034b739bab33334b1b4b2b73a1025a0aa3d60791b6044820152606401610b68565b6012546001600160a01b036301000000909104166323b872dd3361130b600a546001600160a01b031690565b6013546040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b15801561135d57600080fd5b505af1158015611371573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611395919061341f565b50506000908152601460205260409020805460ff19166001179055565b60006113bd60085490565b82106114205760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b68565b6008828154811061143357611433613934565b90600052602060002001549050919050565b600a546001600160a01b0316331461146f5760405162461bcd60e51b8152600401610b6890613725565b805161148290600b906020840190613118565b5050565b600a546001600160a01b031633146114b05760405162461bcd60e51b8152600401610b6890613725565b601280546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b60006001600160a01b0382166115045760405162461bcd60e51b8152600401610b68906136a6565b506001600160a01b031660009081526019602052604090205490565b6000818152600260205260408120546001600160a01b031680610a685760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b68565b600a546001600160a01b031633146115c15760405162461bcd60e51b8152600401610b6890613725565b6001600160a01b0382166115e75760405162461bcd60e51b8152600401610b68906136a6565b6001600160a01b03909116600090815260196020526040902055565b60006001600160a01b03821661166e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b68565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116b45760405162461bcd60e51b8152600401610b6890613725565b6116be6000612aa5565b565b600a546001600160a01b031633146116ea5760405162461bcd60e51b8152600401610b6890613725565b60006116f7600247613812565b6015546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505061172a57600080fd5b6016546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505061175c57600080fd5b50565b600a546001600160a01b031633146117895760405162461bcd60e51b8152600401610b6890613725565b60005b81811015610c9e5760008383838181106117a8576117a8613934565b90506020020160208101906117bd9190613243565b6001600160a01b031614156117e45760405162461bcd60e51b8152600401610b68906136a6565b601860008484848181106117fa576117fa613934565b905060200201602081019061180f9190613243565b6001600160a01b0316815260208101919091526040016000205460ff166118695760405162461bcd60e51b815260206004820152600e60248201526d6e6f7420696e2070726573616c6560901b6044820152606401610b68565b60006018600085858581811061188157611881613934565b90506020020160208101906118969190613243565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806118c8816138c3565b91505061178c565b600a546001600160a01b031633146118fa5760405162461bcd60e51b8152600401610b6890613725565b6012805460ff19811660ff90911615179055565b600a546001600160a01b031633146119385760405162461bcd60e51b8152600401610b6890613725565b6001600160a01b03821661195e5760405162461bcd60e51b8152600401610b68906136a6565b600f54600854106119815760405162461bcd60e51b8152600401610b68906136cc565b600081600e546119919190613845565b10156119af5760405162461bcd60e51b8152600401610b68906136ee565b60005b81811015611a2b5760006119c560085490565b6119d09060016137fa565b6000818152601b6020526040902080546001600160a01b0387166001600160a01b03199091161790559050611a1884611a0860085490565b611a139060016137fa565b612af7565b5080611a23816138c3565b9150506119b2565b5080600e6000828254611a3e9190613845565b90915550505050565b600a546001600160a01b03163314611a715760405162461bcd60e51b8152600401610b6890613725565b611a7a82612785565b611a965760405162461bcd60e51b8152600401610b689061375a565b600091825260146020526040909120805460ff1916911515919091179055565b606060018054610a7d90613888565b600a546001600160a01b03163314611aef5760405162461bcd60e51b8152600401610b6890613725565b600d55565b60006001600160a01b038216611b1c5760405162461bcd60e51b8152600401610b68906136a6565b6000611b2783611b6b565b1192915050565b600a546001600160a01b03163314611b585760405162461bcd60e51b8152600401610b6890613725565b805161148290600c906020840190613118565b60006001600160a01b038216611b935760405162461bcd60e51b8152600401610b68906136a6565b6001600160a01b03821660009081526017602052604081205460ff1615611bc257611bbf6001826137fa565b90505b6001600160a01b03831660009081526018602052604090205460ff1615610a6857611bee6001826137fa565b9392505050565b601254610100900460ff16611c455760405162461bcd60e51b81526020600482015260166024820152757075626c69632073616c65206e6f742061637469766560501b6044820152606401610b68565b600f5460085410611c685760405162461bcd60e51b8152600401610b68906136cc565b600e54600f54611c789190613845565b81611c8260085490565b611c8c91906137fa565b1115611caa5760405162461bcd60e51b8152600401610b68906136ee565b60008111611cca5760405162461bcd60e51b8152600401610b6890613657565b601054811115611d285760405162461bcd60e51b8152602060048201526024808201527f596f752063616e74206d696e74206d6f7265207468616e20342061742061207460448201526334b6b29760e11b6064820152608401610b68565b80600d54611d369190613826565b3414611d775760405162461bcd60e51b815260206004820152601060248201526f0d2dce6eaccccd2c6d2cadce8408aa8960831b6044820152606401610b68565b60005b81811015611482576000611d8d60085490565b611d989060016137fa565b6000818152601b6020526040902080546001600160a01b03191633908117909155909150611dc990611a0860085490565b5080611dd4816138c3565b915050611d7a565b6001600160a01b038216331415611e355760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b68565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000611eac82612785565b611ec85760405162461bcd60e51b8152600401610b689061375a565b506000908152601b60205260409020546001600160a01b031690565b611eee3383612810565b611f0a5760405162461bcd60e51b8152600401610b68906137a9565b611f1684848484612b11565b50505050565b600a546001600160a01b03163314611f465760405162461bcd60e51b8152600401610b6890613725565b6012805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b03163314611f8d5760405162461bcd60e51b8152600401610b6890613725565b60005b81811015610c9e576000838383818110611fac57611fac613934565b9050602002016020810190611fc19190613243565b6001600160a01b03161415611fe85760405162461bcd60e51b8152600401610b68906136a6565b60176000848484818110611ffe57611ffe613934565b90506020020160208101906120139190613243565b6001600160a01b0316815260208101919091526040016000205460ff1661206d5760405162461bcd60e51b815260206004820152600e60248201526d6e6f7420696e2070726573616c6560901b6044820152606401610b68565b60006017600085858581811061208557612085613934565b905060200201602081019061209a9190613243565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806120cc816138c3565b915050611f90565b60606120df82612785565b6120fb5760405162461bcd60e51b8152600401610b689061375a565b60008281526014602052604081205460ff1661211e57612119612b44565b6121aa565b600c805461212b90613888565b80601f016020809104026020016040519081016040528092919081815260200182805461215790613888565b80156121a45780601f10612179576101008083540402835291602001916121a4565b820191906000526020600020905b81548152906001019060200180831161218757829003601f168201915b50505050505b905060008151116121ca5760405180602001604052806000815250611bee565b806121d484612b53565b6040516020016121e5929190613542565b6040516020818303038152906040529392505050565b600a546001600160a01b031633146122255760405162461bcd60e51b8152600401610b6890613725565b60005b81811015610c9e57600083838381811061224457612244613934565b90506020020160208101906122599190613243565b6001600160a01b031614156122805760405162461bcd60e51b8152600401610b68906136a6565b6018600084848481811061229657612296613934565b90506020020160208101906122ab9190613243565b6001600160a01b0316815260208101919091526040016000205460ff16156123015760405162461bcd60e51b81526020600482015260096024820152686475706c696361746560b81b6044820152606401610b68565b60016018600085858581811061231957612319613934565b905060200201602081019061232e9190613243565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580612360816138c3565b915050612228565b600061237382612785565b61238f5760405162461bcd60e51b8152600401610b689061375a565b5060009081526014602052604090205460ff1690565b600a546001600160a01b031633146123cf5760405162461bcd60e51b8152600401610b6890613725565b6001600160a01b0381166124345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b68565b61175c81612aa5565b60125460ff166124845760405162461bcd60e51b815260206004820152601260248201527170726573616c65206e6f742061637469766560701b6044820152606401610b68565b600061248f33611b6b565b905061249a33611af4565b6124e65760405162461bcd60e51b815260206004820152601860248201527f6e6f7420656c696769626c6520666f722070726573616c6500000000000000006044820152606401610b68565b3360009081526019602052604090205481116125365760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e4818db185a5b5959608a1b6044820152606401610b68565b600f54600854106125595760405162461bcd60e51b8152600401610b68906136cc565b600e54600f546125699190613845565b8261257360085490565b61257d91906137fa565b111561259b5760405162461bcd60e51b8152600401610b68906136ee565b600082116125bb5760405162461bcd60e51b8152600401610b6890613657565b336000908152601960205260409020546125d59082613845565b8211156126305760405162461bcd60e51b8152602060048201526024808201527f596f752063616e74206d696e74206d6f7265207468616e20322061742061207460448201526334b6b29760e11b6064820152608401610b68565b81600d5461263e9190613826565b341461267f5760405162461bcd60e51b815260206004820152601060248201526f0d2dce6eaccccd2c6d2cadce8408aa8960831b6044820152606401610b68565b60005b82811015610c9e57600061269560085490565b6126a09060016137fa565b6000818152601b6020908152604080832080546001600160a01b0319163390811790915583526019909152812080549293506001929091906126e39084906137fa565b909155506126f390503382612af7565b50806126fe816138c3565b915050612682565b600a546001600160a01b031633146127305760405162461bcd60e51b8152600401610b6890613725565b601355565b60006001600160e01b031982166380ac58cd60e01b148061276657506001600160e01b03198216635b5e139f60e01b145b80610a6857506301ffc9a760e01b6001600160e01b0319831614610a68565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906127d782611520565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061281b82612785565b61287c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b68565b600061288783611520565b9050806001600160a01b0316846001600160a01b031614806128c25750836001600160a01b03166128b784610b00565b6001600160a01b0316145b806128f257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661290d82611520565b6001600160a01b0316146129755760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b68565b6001600160a01b0382166129d75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b68565b6129e2838383612c51565b6129ed6000826127a2565b6001600160a01b0383166000908152600360205260408120805460019290612a16908490613845565b90915550506001600160a01b0382166000908152600360205260408120805460019290612a449084906137fa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611482828260405180602001604052806000815250612d09565b612b1c8484846128fa565b612b2884848484612d3c565b611f165760405162461bcd60e51b8152600401610b6890613605565b6060600b8054610a7d90613888565b606081612b775750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612ba15780612b8b816138c3565b9150612b9a9050600a83613812565b9150612b7b565b60008167ffffffffffffffff811115612bbc57612bbc61394a565b6040519080825280601f01601f191660200182016040528015612be6576020820181803683370190505b5090505b84156128f257612bfb600183613845565b9150612c08600a866138de565b612c139060306137fa565b60f81b818381518110612c2857612c28613934565b60200101906001600160f81b031916908160001a905350612c4a600a86613812565b9450612bea565b6001600160a01b038316612cac57612ca781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ccf565b816001600160a01b0316836001600160a01b031614612ccf57612ccf8382612e49565b6001600160a01b038216612ce657610c9e81612ee6565b826001600160a01b0316826001600160a01b031614610c9e57610c9e8282612f95565b612d138383612fd9565b612d206000848484612d3c565b610c9e5760405162461bcd60e51b8152600401610b6890613605565b60006001600160a01b0384163b15612e3e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d80903390899088908890600401613571565b602060405180830381600087803b158015612d9a57600080fd5b505af1925050508015612dca575060408051601f3d908101601f19168201909252612dc791810190613459565b60015b612e24573d808015612df8576040519150601f19603f3d011682016040523d82523d6000602084013e612dfd565b606091505b508051612e1c5760405162461bcd60e51b8152600401610b6890613605565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506128f2565b506001949350505050565b60006001612e5684611603565b612e609190613845565b600083815260076020526040902054909150808214612eb3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612ef890600190613845565b60008381526009602052604081205460088054939450909284908110612f2057612f20613934565b906000526020600020015490508060088381548110612f4157612f41613934565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612f7957612f7961391e565b6001900381819060005260206000200160009055905550505050565b6000612fa083611603565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661302f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b68565b61303881612785565b156130855760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b68565b61309160008383612c51565b6001600160a01b03821660009081526003602052604081208054600192906130ba9084906137fa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461312490613888565b90600052602060002090601f016020900481019282613146576000855561318c565b82601f1061315f57805160ff191683800117855561318c565b8280016001018555821561318c579182015b8281111561318c578251825591602001919060010190613171565b5061319892915061319c565b5090565b5b80821115613198576000815560010161319d565b600067ffffffffffffffff808411156131cc576131cc61394a565b604051601f8501601f19908116603f011681019082821181831017156131f4576131f461394a565b8160405280935085815286868601111561320d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461323e57600080fd5b919050565b60006020828403121561325557600080fd5b611bee82613227565b6000806040838503121561327157600080fd5b61327a83613227565b915061328860208401613227565b90509250929050565b6000806000606084860312156132a657600080fd5b6132af84613227565b92506132bd60208501613227565b9150604084013590509250925092565b600080600080608085870312156132e357600080fd5b6132ec85613227565b93506132fa60208601613227565b925060408501359150606085013567ffffffffffffffff81111561331d57600080fd5b8501601f8101871361332e57600080fd5b61333d878235602084016131b1565b91505092959194509250565b6000806040838503121561335c57600080fd5b61336583613227565b9150602083013561337581613960565b809150509250929050565b6000806040838503121561339357600080fd5b61339c83613227565b946020939093013593505050565b600080602083850312156133bd57600080fd5b823567ffffffffffffffff808211156133d557600080fd5b818501915085601f8301126133e957600080fd5b8135818111156133f857600080fd5b8660208260051b850101111561340d57600080fd5b60209290920196919550909350505050565b60006020828403121561343157600080fd5b8151611bee81613960565b60006020828403121561344e57600080fd5b8135611bee8161396e565b60006020828403121561346b57600080fd5b8151611bee8161396e565b60006020828403121561348857600080fd5b813567ffffffffffffffff81111561349f57600080fd5b8201601f810184136134b057600080fd5b6128f2848235602084016131b1565b6000602082840312156134d157600080fd5b5035919050565b6000602082840312156134ea57600080fd5b5051919050565b6000806040838503121561350457600080fd5b82359150602083013561337581613960565b6000815180845261352e81602086016020860161385c565b601f01601f19169290920160200192915050565b6000835161355481846020880161385c565b83519083019061356881836020880161385c565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906135a490830184613516565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156135e6578351835292840192918401916001016135ca565b50909695505050505050565b602081526000611bee6020830184613516565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602f908201527f6761732066656520666f72206e6f7468696e672c20646f6e277420616363657060408201526e3a103a3434b9903932b8bab2b9ba1760891b606082015260800190565b6020808252600c908201526b6e756c6c206164647265737360a01b604082015260600190565b6020808252600890820152671cdbdb19081bdd5d60c21b604082015260600190565b6020808252601e908201527f4d6178696d756d20616d6f756e7420616c7265616479206d696e7465642e0000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561380d5761380d6138f2565b500190565b60008261382157613821613908565b500490565b6000816000190483118215151615613840576138406138f2565b500290565b600082821015613857576138576138f2565b500390565b60005b8381101561387757818101518382015260200161385f565b83811115611f165750506000910152565b600181811c9082168061389c57607f821691505b602082108114156138bd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156138d7576138d76138f2565b5060010190565b6000826138ed576138ed613908565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b801515811461175c57600080fd5b6001600160e01b03198116811461175c57600080fdfea2646970667358221220308876c3f6f5e4348830c8b3696e986fd2540a8e2e1bb1cc53ec463ff42329d464736f6c63430008070033

Deployed Bytecode Sourcemap

46885:11370:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40735:224;;;;;;;;;;-1:-1:-1;40735:224:0;;;;;:::i;:::-;;:::i;:::-;;;8004:14:1;;7997:22;7979:41;;7967:2;7952:18;40735:224:0;;;;;;;;47307:35;;;;;;;;;;-1:-1:-1;47307:35:0;;;;;;;;;;;28662:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30221:221::-;;;;;;;;;;-1:-1:-1;30221:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6285:32:1;;;6267:51;;6255:2;6240:18;30221:221:0;6121:203:1;29744:411:0;;;;;;;;;;-1:-1:-1;29744:411:0;;;;;:::i;:::-;;:::i;:::-;;48274:404;;;;;;;;;;-1:-1:-1;48274:404:0;;;;;:::i;:::-;;:::i;47132:30::-;;;;;;;;;;;;;;;;;;;22161:25:1;;;22149:2;22134:18;47132:30:0;22015:177:1;50596:211:0;;;;;;;;;;-1:-1:-1;50596:211:0;;;;;:::i;:::-;;:::i;41375:113::-;;;;;;;;;;-1:-1:-1;41463:10:0;:17;41375:113;;56312:109;;;;;;;;;;;;;:::i;47262:38::-;;;;;;;;;;-1:-1:-1;47262:38:0;;;;;;;;;;;31111:339;;;;;;;;;;-1:-1:-1;31111:339:0;;;;;:::i;:::-;;:::i;47412:38::-;;;;;;;;;;;;;;;;41043:256;;;;;;;;;;-1:-1:-1;41043:256:0;;;;;:::i;:::-;;:::i;31521:185::-;;;;;;;;;;-1:-1:-1;31521:185:0;;;;;:::i;:::-;;:::i;55020:376::-;;;;;;;;;;-1:-1:-1;55020:376:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53720:813::-;;;;;;;;;;-1:-1:-1;53720:813:0;;;;;:::i;:::-;;:::i;47457:46::-;;;;;;;;;;-1:-1:-1;47457:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;47090:35;;;;;;;;;;;;;;;;41565:233;;;;;;;;;;-1:-1:-1;41565:233:0;;;;;:::i;:::-;;:::i;55855:94::-;;;;;;;;;;-1:-1:-1;55855:94:0;;;;;:::i;:::-;;:::i;56429:91::-;;;;;;:::i;:::-;;:::i;50400:188::-;;;;;;;;;;-1:-1:-1;50400:188:0;;;;;:::i;:::-;;:::i;47220:35::-;;;;;;;;;;-1:-1:-1;47220:35:0;;;;;;;;28356:239;;;;;;;;;;-1:-1:-1;28356:239:0;;;;;:::i;:::-;;:::i;47054:29::-;;;;;;;;;;;;;;;;57030:183;;;;;;;;;;-1:-1:-1;57030:183:0;;;;;:::i;:::-;;:::i;28086:208::-;;;;;;;;;;-1:-1:-1;28086:208:0;;;;;:::i;:::-;;:::i;16709:94::-;;;;;;;;;;;;;:::i;57221:188::-;;;;;;;;;;;;;:::i;49424:366::-;;;;;;;;;;-1:-1:-1;49424:366:0;;;;;:::i;:::-;;:::i;56065:109::-;;;;;;;;;;;;;:::i;50828:669::-;;;;;;;;;;-1:-1:-1;50828:669:0;;;;;:::i;:::-;;:::i;16058:87::-;;;;;;;;;;-1:-1:-1;16131:6:0;;-1:-1:-1;;;;;16131:6:0;16058:87;;56803:219;;;;;;;;;;-1:-1:-1;56803:219:0;;;;;:::i;:::-;;:::i;28831:104::-;;;;;;;;;;;;;:::i;56602:89::-;;;;;;;;;;-1:-1:-1;56602:89:0;;;;;:::i;:::-;;:::i;49798:187::-;;;;;;;;;;-1:-1:-1;49798:187:0;;;;;:::i;:::-;;:::i;55957:100::-;;;;;;;;;;-1:-1:-1;55957:100:0;;;;;:::i;:::-;;:::i;49993:399::-;;;;;;;;;;-1:-1:-1;49993:399:0;;;;;:::i;:::-;;:::i;52769:927::-;;;;;;:::i;:::-;;:::i;30514:295::-;;;;;;;;;;-1:-1:-1;30514:295:0;;;;;:::i;:::-;;:::i;55408:207::-;;;;;;;;;;-1:-1:-1;55408:207:0;;;;;:::i;:::-;;:::i;31777:328::-;;;;;;;;;;-1:-1:-1;31777:328:0;;;;;:::i;:::-;;:::i;56182:118::-;;;;;;;;;;;;;:::i;48686:366::-;;;;;;;;;;-1:-1:-1;48686:366:0;;;;;:::i;:::-;;:::i;47364:19::-;;;;;;;;;;-1:-1:-1;47364:19:0;;;;;;;-1:-1:-1;;;;;47364:19:0;;;54655:357;;;;;;;;;;-1:-1:-1;54655:357:0;;;;;:::i;:::-;;:::i;49060:356::-;;;;;;;;;;-1:-1:-1;49060:356:0;;;;;:::i;:::-;;:::i;47010:37::-;;;;;;;;;;;;;;;;55627:206;;;;;;;;;;-1:-1:-1;55627:206:0;;;;;:::i;:::-;;:::i;47169:42::-;;;;;;;;;;;;;;;;30880:164;;;;;;;;;;-1:-1:-1;30880:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31001:25:0;;;30977:4;31001:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30880:164;16958:192;;;;;;;;;;-1:-1:-1;16958:192:0;;;;;:::i;:::-;;:::i;51505:1256::-;;;;;;:::i;:::-;;:::i;56699:95::-;;;;;;;;;;-1:-1:-1;56699:95:0;;;;;:::i;:::-;;:::i;40735:224::-;40837:4;-1:-1:-1;;;;;;40861:50:0;;-1:-1:-1;;;40861:50:0;;:90;;;40915:36;40939:11;40915:23;:36::i;:::-;40854:97;40735:224;-1:-1:-1;;40735:224:0:o;28662:100::-;28716:13;28749:5;28742:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28662:100;:::o;30221:221::-;30297:7;30325:16;30333:7;30325;:16::i;:::-;30317:73;;;;-1:-1:-1;;;30317:73:0;;17597:2:1;30317:73:0;;;17579:21:1;17636:2;17616:18;;;17609:30;17675:34;17655:18;;;17648:62;-1:-1:-1;;;17726:18:1;;;17719:42;17778:19;;30317:73:0;;;;;;;;;-1:-1:-1;30410:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30410:24:0;;30221:221::o;29744:411::-;29825:13;29841:23;29856:7;29841:14;:23::i;:::-;29825:39;;29889:5;-1:-1:-1;;;;;29883:11:0;:2;-1:-1:-1;;;;;29883:11:0;;;29875:57;;;;-1:-1:-1;;;29875:57:0;;19542:2:1;29875:57:0;;;19524:21:1;19581:2;19561:18;;;19554:30;19620:34;19600:18;;;19593:62;-1:-1:-1;;;19671:18:1;;;19664:31;19712:19;;29875:57:0;19340:397:1;29875:57:0;5518:10;-1:-1:-1;;;;;29967:21:0;;;;:62;;-1:-1:-1;29992:37:0;30009:5;5518:10;30880:164;:::i;29992:37::-;29945:168;;;;-1:-1:-1;;;29945:168:0;;15234:2:1;29945:168:0;;;15216:21:1;15273:2;15253:18;;;15246:30;15312:34;15292:18;;;15285:62;15383:26;15363:18;;;15356:54;15427:19;;29945:168:0;15032:420:1;29945:168:0;30126:21;30135:2;30139:7;30126:8;:21::i;:::-;29814:341;29744:411;;:::o;48274:404::-;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;48371:9:::1;48367:304;48386:20:::0;;::::1;48367:304;;;48470:1;48446:9:::0;;48456:1;48446:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48446:26:0::1;;;48438:51;;;;-1:-1:-1::0;;;48438:51:0::1;;;;;;;:::i;:::-;48513:17;:31;48531:9;;48541:1;48531:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48513:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48513:31:0;;::::1;;48512:32;48504:54;;;::::0;-1:-1:-1;;;48504:54:0;;10749:2:1;48504:54:0::1;::::0;::::1;10731:21:1::0;10788:1;10768:18;;;10761:29;-1:-1:-1;;;10806:18:1;;;10799:39;10855:18;;48504:54:0::1;10547:332:1::0;48504:54:0::1;48607:4;48573:17;:31;48591:9;;48601:1;48591:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48573:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48573:31:0;;;:38;;-1:-1:-1;;48573:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;48626:15:::1;-1:-1:-1::0;48642:9:0;;48652:1;48642:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48626:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48626:29:0;:33;48408:3;::::1;::::0;::::1;:::i;:::-;;;;48367:304;;50596:211:::0;50660:4;-1:-1:-1;;;;;50691:18:0;;50683:43;;;;-1:-1:-1;;;50683:43:0;;;;;;;:::i;:::-;50775:24;50794:4;50775:18;:24::i;:::-;-1:-1:-1;;;;;50750:21:0;;;;;;;:15;:21;;;;;;:49;;;;;50596:211;-1:-1:-1;50596:211:0:o;56312:109::-;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;56398:15:::1;::::0;;-1:-1:-1;;56379:34:0;::::1;56398:15:::0;;;;::::1;;;56397:16;56379:34:::0;;::::1;;::::0;;56312:109::o;31111:339::-;31306:41;5518:10;31339:7;31306:18;:41::i;:::-;31298:103;;;;-1:-1:-1;;;31298:103:0;;;;;;;:::i;:::-;31414:28;31424:4;31430:2;31434:7;31414:9;:28::i;41043:256::-;41140:7;41176:23;41193:5;41176:16;:23::i;:::-;41168:5;:31;41160:87;;;;-1:-1:-1;;;41160:87:0;;8810:2:1;41160:87:0;;;8792:21:1;8849:2;8829:18;;;8822:30;8888:34;8868:18;;;8861:62;-1:-1:-1;;;8939:18:1;;;8932:41;8990:19;;41160:87:0;8608:407:1;41160:87:0;-1:-1:-1;;;;;;41265:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41043:256::o;31521:185::-;31659:39;31676:4;31682:2;31686:7;31659:39;;;;;;;;;;;;:16;:39::i;55020:376::-;55079:16;55114:18;55135:17;55145:6;55135:9;:17::i;:::-;55114:38;;55163:25;55205:10;55191:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55191:25:0;;55163:53;;55241:9;55237:116;55256:10;55252:1;:14;55237:116;;;55311:30;55331:6;55339:1;55311:19;:30::i;:::-;55297:8;55306:1;55297:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;55268:3;;;;:::i;:::-;;;;55237:116;;;-1:-1:-1;55380:8:0;55020:376;-1:-1:-1;;;55020:376:0:o;53720:813::-;53821:15;;53792:10;;53821:15;;;;;53813:105;;;;-1:-1:-1;;;53813:105:0;;14115:2:1;53813:105:0;;;14097:21:1;14154:2;14134:18;;;14127:30;14193:28;14173:18;;;14166:56;14239:18;;53813:105:0;13913:350:1;53813:105:0;53937:4;;;;;-1:-1:-1;;;;;53937:4:0;53929:112;;;;-1:-1:-1;;;53929:112:0;;21472:2:1;53929:112:0;;;21454:21:1;21511:2;21491:18;;;21484:30;21550:34;21530:18;;;21523:62;-1:-1:-1;;;21601:18:1;;;21594:31;21642:19;;53929:112:0;21270:397:1;53929:112:0;54080:4;-1:-1:-1;;;;;54060:24:0;:16;54068:7;54060;:16::i;:::-;-1:-1:-1;;;;;54060:24:0;;54052:101;;;;-1:-1:-1;;;54052:101:0;;21121:2:1;54052:101:0;;;21103:21:1;21160:2;21140:18;;;21133:30;-1:-1:-1;;;21179:18:1;;;21172:52;21241:18;;54052:101:0;20919:346:1;54052:101:0;54172:22;;;;:13;:22;;;;;;;;:31;54164:127;;;;-1:-1:-1;;;54164:127:0;;11502:2:1;54164:127:0;;;11484:21:1;11541:2;11521:18;;;11514:30;11580:34;11560:18;;;11553:62;-1:-1:-1;;;11631:18:1;;;11624:46;11687:19;;54164:127:0;11300:412:1;54164:127:0;54342:12;;54317:4;;54310:28;;-1:-1:-1;;;54310:28:0;;-1:-1:-1;;;;;6285:32:1;;;54310:28:0;;;6267:51:1;54317:4:0;;;;;;;;54310:22;;6240:18:1;;54310:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;;54302:96;;;;-1:-1:-1;;;54302:96:0;;20775:2:1;54302:96:0;;;20757:21:1;20814:2;20794:18;;;20787:30;-1:-1:-1;;;20833:18:1;;;20826:47;20890:18;;54302:96:0;20573:341:1;54302:96:0;54426:4;;-1:-1:-1;;;;;54426:4:0;;;;;54419:25;54445:10;54457:7;16131:6;;-1:-1:-1;;;;;16131:6:0;;16058:87;54457:7;54466:12;;54419:60;;-1:-1:-1;;;;;;54419:60:0;;;;;;;-1:-1:-1;;;;;6587:15:1;;;54419:60:0;;;6569:34:1;6639:15;;;;6619:18;;;6612:43;6671:18;;;6664:34;6504:18;;54419:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;54496:22:0;;;;:13;:22;;;;;:29;;-1:-1:-1;;54496:29:0;54521:4;54496:29;;;53720:813::o;41565:233::-;41640:7;41676:30;41463:10;:17;;41375:113;41676:30;41668:5;:38;41660:95;;;;-1:-1:-1;;;41660:95:0;;20362:2:1;41660:95:0;;;20344:21:1;20401:2;20381:18;;;20374:30;20440:34;20420:18;;;20413:62;-1:-1:-1;;;20491:18:1;;;20484:42;20543:19;;41660:95:0;20160:408:1;41660:95:0;41773:10;41784:5;41773:17;;;;;;;;:::i;:::-;;;;;;;;;41766:24;;41565:233;;;:::o;55855:94::-;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;55928:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55855:94:::0;:::o;56429:91::-;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;56501:4:::1;:11:::0;;-1:-1:-1;;;;;56501:11:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;56501:11:0;;::::1;::::0;;;::::1;::::0;;56429:91::o;50400:188::-;50462:7;-1:-1:-1;;;;;50496:18:0;;50488:43;;;;-1:-1:-1;;;50488:43:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;50559:21:0;;;;;:15;:21;;;;;;;50400:188::o;28356:239::-;28428:7;28464:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28464:16:0;28499:19;28491:73;;;;-1:-1:-1;;;28491:73:0;;16475:2:1;28491:73:0;;;16457:21:1;16514:2;16494:18;;;16487:30;16553:34;16533:18;;;16526:62;-1:-1:-1;;;16604:18:1;;;16597:39;16653:19;;28491:73:0;16273:405:1;57030:183:0;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57129:18:0;::::1;57121:43;;;;-1:-1:-1::0;;;57121:43:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;57175:21:0;;::::1;;::::0;;;:15:::1;:21;::::0;;;;:30;57030:183::o;28086:208::-;28158:7;-1:-1:-1;;;;;28186:19:0;;28178:74;;;;-1:-1:-1;;;28178:74:0;;16064:2:1;28178:74:0;;;16046:21:1;16103:2;16083:18;;;16076:30;16142:34;16122:18;;;16115:62;-1:-1:-1;;;16193:18:1;;;16186:40;16243:19;;28178:74:0;15862:406:1;28178:74:0;-1:-1:-1;;;;;;28270:16:0;;;;;:9;:16;;;;;;;28086:208::o;16709:94::-;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;16774:21:::1;16792:1;16774:9;:21::i;:::-;16709:94::o:0;57221:188::-;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;57274:13:::1;57290:25;57314:1;57290:21;:25;:::i;:::-;57342:2;::::0;57334:23:::1;::::0;57274:41;;-1:-1:-1;;;;;;57342:2:0::1;::::0;57334:23;::::1;;;::::0;57274:41;;57342:2:::1;57334:23:::0;57342:2;57334:23;57274:41;57342:2;57334:23;::::1;;;;;;57326:32;;;::::0;::::1;;57385:2;::::0;57377:23:::1;::::0;-1:-1:-1;;;;;57385:2:0;;::::1;::::0;57377:23;::::1;;;::::0;57394:5;;57385:2:::1;57377:23:::0;57385:2;57377:23;57394:5;57385:2;57377:23;::::1;;;;;;57369:32;;;::::0;::::1;;57263:146;57221:188::o:0;49424:366::-;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;49526:9:::1;49522:261;49541:20:::0;;::::1;49522:261;;;49625:1;49601:9:::0;;49611:1;49601:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49601:26:0::1;;;49593:51;;;;-1:-1:-1::0;;;49593:51:0::1;;;;;;;:::i;:::-;49667:17;:31;49685:9;;49695:1;49685:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49667:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49667:31:0;;::::1;;49659:58;;;::::0;-1:-1:-1;;;49659:58:0;;21874:2:1;49659:58:0::1;::::0;::::1;21856:21:1::0;21913:2;21893:18;;;21886:30;-1:-1:-1;;;21932:18:1;;;21925:44;21986:18;;49659:58:0::1;21672:338:1::0;49659:58:0::1;49766:5;49732:17;:31;49750:9;;49760:1;49750:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49732:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49732:31:0;:39;;-1:-1:-1;;49732:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49563:3;::::1;::::0;::::1;:::i;:::-;;;;49522:261;;56065:109:::0;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;56151:15:::1;::::0;;-1:-1:-1;;56132:34:0;::::1;56151:15;::::0;;::::1;56150:16;56132:34;::::0;;56065:109::o;50828:669::-;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50935:18:0;::::1;50927:91;;;;-1:-1:-1::0;;;50927:91:0::1;;;;;;;:::i;:::-;51053:13;::::0;41463:10;:17;51037:29:::1;51029:87;;;;-1:-1:-1::0;;;51029:87:0::1;;;;;;;:::i;:::-;51164:1;51147:13;51135:9;;:25;;;;:::i;:::-;:30;;51127:109;;;;-1:-1:-1::0;;;51127:109:0::1;;;;;;;:::i;:::-;51253:6;51249:202;51269:13;51265:1;:17;51249:202;;;51313:15;51331:13;41463:10:::0;:17;;41375:113;51331:13:::1;:17;::::0;51347:1:::1;51331:17;:::i;:::-;51363:20;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;;;;51363:27:0;::::1;-1:-1:-1::0;;;;;;51363:27:0;;::::1;;::::0;;51313:35;-1:-1:-1;51405:34:0::1;51386:4:::0;51421:13:::1;41463:10:::0;:17;;41375:113;51421:13:::1;:17;::::0;51437:1:::1;51421:17;:::i;:::-;51405:9;:34::i;:::-;-1:-1:-1::0;51284:3:0;::::1;::::0;::::1;:::i;:::-;;;;51249:202;;;;51476:13;51463:9;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;50828:669:0:o;56803:219::-;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;56897:16:::1;56905:7;56897;:16::i;:::-;56889:76;;;;-1:-1:-1::0;;;56889:76:0::1;;;;;;;:::i;:::-;56986:22;::::0;;;:13:::1;:22;::::0;;;;;:28;;-1:-1:-1;;56986:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56803:219::o;28831:104::-;28887:13;28920:7;28913:14;;;;;:::i;56602:89::-;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;56668:9:::1;:18:::0;56602:89::o;49798:187::-;49863:4;-1:-1:-1;;;;;49894:18:0;;49886:43;;;;-1:-1:-1;;;49886:43:0;;;;;;;:::i;:::-;49976:1;49949:24;49968:4;49949:18;:24::i;:::-;:28;;49798:187;-1:-1:-1;;49798:187:0:o;55957:100::-;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;56033:16;;::::1;::::0;:10:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;49993:399::-:0;50056:7;-1:-1:-1;;;;;50087:18:0;;50079:43;;;;-1:-1:-1;;;50079:43:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50179:23:0;;50135:24;50179:23;;;:17;:23;;;;;;;;50176:85;;;50228:21;50248:1;50228:21;;:::i;:::-;;;50176:85;-1:-1:-1;;;;;50276:23:0;;;;;;:17;:23;;;;;;;;50273:85;;;50325:21;50345:1;50325:21;;:::i;:::-;;50371:16;-1:-1:-1;;;49993:399:0:o;52769:927::-;47895:18;;;;;;;47887:53;;;;-1:-1:-1;;;47887:53:0;;16885:2:1;47887:53:0;;;16867:21:1;16924:2;16904:18;;;16897:30;-1:-1:-1;;;16943:18:1;;;16936:52;17005:18;;47887:53:0;16683:346:1;47887:53:0;52882:13:::1;::::0;41463:10;:17;52866:29:::1;52858:87;;;;-1:-1:-1::0;;;52858:87:0::1;;;;;;;:::i;:::-;53013:9;;52997:13;;:25;;;;:::i;:::-;52980:13;52964;41463:10:::0;:17;;41375:113;52964:13:::1;:29;;;;:::i;:::-;:58;;52956:109;;;;-1:-1:-1::0;;;52956:109:0::1;;;;;;;:::i;:::-;53100:1;53084:13;:17;53076:126;;;;-1:-1:-1::0;;;53076:126:0::1;;;;;;;:::i;:::-;53258:11;;53241:13;:28;;53233:115;;;::::0;-1:-1:-1;;;53233:115:0;;15659:2:1;53233:115:0::1;::::0;::::1;15641:21:1::0;15698:2;15678:18;;;15671:30;15737:34;15717:18;;;15710:62;-1:-1:-1;;;15788:18:1;;;15781:34;15832:19;;53233:115:0::1;15457:400:1::0;53233:115:0::1;53392:13;53380:9;;:25;;;;:::i;:::-;53367:9;:38;53359:95;;;::::0;-1:-1:-1;;;53359:95:0;;18781:2:1;53359:95:0::1;::::0;::::1;18763:21:1::0;18820:2;18800:18;;;18793:30;-1:-1:-1;;;18839:18:1;;;18832:46;18895:18;;53359:95:0::1;18579:340:1::0;53359:95:0::1;53479:6;53475:214;53495:13;53491:1;:17;53475:214;;;53539:15;53557:13;41463:10:::0;:17;;41375:113;53557:13:::1;:17;::::0;53573:1:::1;53557:17;:::i;:::-;53589:20;::::0;;;:11:::1;:20;::::0;;;;:33;;-1:-1:-1;;;;;;53589:33:0::1;53612:10;53589:33:::0;;::::1;::::0;;;53539:35;;-1:-1:-1;53637:40:0::1;::::0;53659:13:::1;41463:10:::0;:17;;41375:113;53637:40:::1;-1:-1:-1::0;53510:3:0;::::1;::::0;::::1;:::i;:::-;;;;53475:214;;30514:295:::0;-1:-1:-1;;;;;30617:24:0;;5518:10;30617:24;;30609:62;;;;-1:-1:-1;;;30609:62:0;;12671:2:1;30609:62:0;;;12653:21:1;12710:2;12690:18;;;12683:30;12749:27;12729:18;;;12722:55;12794:18;;30609:62:0;12469:349:1;30609:62:0;5518:10;30684:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30684:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30684:53:0;;;;;;;;;;30753:48;;7979:41:1;;;30684:42:0;;5518:10;30753:48;;7952:18:1;30753:48:0;;;;;;;30514:295;;:::o;55408:207::-;55468:7;55501:16;55509:7;55501;:16::i;:::-;55493:76;;;;-1:-1:-1;;;55493:76:0;;;;;;;:::i;:::-;-1:-1:-1;55587:20:0;;;;:11;:20;;;;;;-1:-1:-1;;;;;55587:20:0;;55408:207::o;31777:328::-;31952:41;5518:10;31985:7;31952:18;:41::i;:::-;31944:103;;;;-1:-1:-1;;;31944:103:0;;;;;;;:::i;:::-;32058:39;32072:4;32078:2;32082:7;32091:5;32058:13;:39::i;:::-;31777:328;;;;:::o;56182:118::-;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;56274:18:::1;::::0;;-1:-1:-1;;56252:40:0;::::1;56274:18;::::0;;;::::1;;;56273:19;56252:40:::0;;::::1;;::::0;;56182:118::o;48686:366::-;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;48788:9:::1;48784:261;48803:20:::0;;::::1;48784:261;;;48887:1;48863:9:::0;;48873:1;48863:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48863:26:0::1;;;48855:51;;;;-1:-1:-1::0;;;48855:51:0::1;;;;;;;:::i;:::-;48929:17;:31;48947:9;;48957:1;48947:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48929:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48929:31:0;;::::1;;48921:58;;;::::0;-1:-1:-1;;;48921:58:0;;21874:2:1;48921:58:0::1;::::0;::::1;21856:21:1::0;21913:2;21893:18;;;21886:30;-1:-1:-1;;;21932:18:1;;;21925:44;21986:18;;48921:58:0::1;21672:338:1::0;48921:58:0::1;49028:5;48994:17;:31;49012:9;;49022:1;49012:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48994:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48994:31:0;:39;;-1:-1:-1;;48994:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48825:3;::::1;::::0;::::1;:::i;:::-;;;;48784:261;;54655:357:::0;54720:13;54760:16;54768:7;54760;:16::i;:::-;54752:76;;;;-1:-1:-1;;;54752:76:0;;;;;;;:::i;:::-;54841:17;54861:22;;;:13;:22;;;;;;;;:48;;54899:10;:8;:10::i;:::-;54861:48;;;54886:10;54861:48;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54841:68;;54947:1;54933:3;54927:17;:21;:77;;;;;;;;;;;;;;;;;54975:3;54980:17;54989:7;54980:8;:17::i;:::-;54958:40;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54920:84;54655:357;-1:-1:-1;;;54655:357:0:o;49060:356::-;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;49157:9:::1;49153:256;49172:20:::0;;::::1;49153:256;;;49256:1;49232:9:::0;;49242:1;49232:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49232:26:0::1;;;49224:51;;;;-1:-1:-1::0;;;49224:51:0::1;;;;;;;:::i;:::-;49299:17;:31;49317:9;;49327:1;49317:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49299:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49299:31:0;;::::1;;49298:32;49290:54;;;::::0;-1:-1:-1;;;49290:54:0;;10749:2:1;49290:54:0::1;::::0;::::1;10731:21:1::0;10788:1;10768:18;;;10761:29;-1:-1:-1;;;10806:18:1;;;10799:39;10855:18;;49290:54:0::1;10547:332:1::0;49290:54:0::1;49393:4;49359:17;:31;49377:9;;49387:1;49377:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49359:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49359:31:0;:38;;-1:-1:-1;;49359:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49194:3;::::1;::::0;::::1;:::i;:::-;;;;49153:256;;55627:206:::0;55687:4;55717:16;55725:7;55717;:16::i;:::-;55709:76;;;;-1:-1:-1;;;55709:76:0;;;;;;;:::i;:::-;-1:-1:-1;55803:22:0;;;;:13;:22;;;;;;;;;55627:206::o;16958:192::-;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17047:22:0;::::1;17039:73;;;::::0;-1:-1:-1;;;17039:73:0;;9641:2:1;17039:73:0::1;::::0;::::1;9623:21:1::0;9680:2;9660:18;;;9653:30;9719:34;9699:18;;;9692:62;-1:-1:-1;;;9770:18:1;;;9763:36;9816:19;;17039:73:0::1;9439:402:1::0;17039:73:0::1;17123:19;17133:8;17123:9;:19::i;51505:1256::-:0;47784:15;;;;47776:46;;;;-1:-1:-1;;;47776:46:0;;11919:2:1;47776:46:0;;;11901:21:1;11958:2;11938:18;;;11931:30;-1:-1:-1;;;11977:18:1;;;11970:48;12035:18;;47776:46:0;11717:342:1;47776:46:0;51598:25:::1;51626:30;51645:10;51626:18;:30::i;:::-;51598:58;;51675:32;51696:10;51675:20;:32::i;:::-;51667:103;;;::::0;-1:-1:-1;;;51667:103:0;;8457:2:1;51667:103:0::1;::::0;::::1;8439:21:1::0;8496:2;8476:18;;;8469:30;8535:26;8515:18;;;8508:54;8579:18;;51667:103:0::1;8255:348:1::0;51667:103:0::1;51805:10;51789:27;::::0;;;:15:::1;:27;::::0;;;;;:47;-1:-1:-1;51781:94:0::1;;;::::0;-1:-1:-1;;;51781:94:0;;10405:2:1;51781:94:0::1;::::0;::::1;10387:21:1::0;10444:2;10424:18;;;10417:30;-1:-1:-1;;;10463:18:1;;;10456:45;10518:18;;51781:94:0::1;10203:339:1::0;51781:94:0::1;51910:13;::::0;41463:10;:17;51894:29:::1;51886:87;;;;-1:-1:-1::0;;;51886:87:0::1;;;;;;;:::i;:::-;52041:9;;52025:13;;:25;;;;:::i;:::-;52008:13;51992;41463:10:::0;:17;;41375:113;51992:13:::1;:29;;;;:::i;:::-;:58;;51984:109;;;;-1:-1:-1::0;;;51984:109:0::1;;;;;;;:::i;:::-;52128:1;52112:13;:17;52104:126;;;;-1:-1:-1::0;;;52104:126:0::1;;;;;;;:::i;:::-;52322:10;52306:27;::::0;;;:15:::1;:27;::::0;;;;;52286:47:::1;::::0;:17;:47:::1;:::i;:::-;52269:13;:64;;52261:115;;;::::0;-1:-1:-1;;;52261:115:0;;14470:2:1;52261:115:0::1;::::0;::::1;14452:21:1::0;14509:2;14489:18;;;14482:30;14548:34;14528:18;;;14521:62;-1:-1:-1;;;14599:18:1;;;14592:34;14643:19;;52261:115:0::1;14268:400:1::0;52261:115:0::1;52420:13;52408:9;;:25;;;;:::i;:::-;52395:9;:38;52387:95;;;::::0;-1:-1:-1;;;52387:95:0;;18781:2:1;52387:95:0::1;::::0;::::1;18763:21:1::0;18820:2;18800:18;;;18793:30;-1:-1:-1;;;18839:18:1;;;18832:46;18895:18;;52387:95:0::1;18579:340:1::0;52387:95:0::1;52507:6;52503:251;52523:13;52519:1;:17;52503:251;;;52567:15;52585:13;41463:10:::0;:17;;41375:113;52585:13:::1;:17;::::0;52601:1:::1;52585:17;:::i;:::-;52617:20;::::0;;;:11:::1;:20;::::0;;;;;;;:33;;-1:-1:-1;;;;;;52617:33:0::1;52640:10;52617:33:::0;;::::1;::::0;;;52665:27;;:15:::1;:27:::0;;;;;:32;;52567:35;;-1:-1:-1;52617:33:0;;52665:27;;52617:20;52665:32:::1;::::0;52617:33;;52665:32:::1;:::i;:::-;::::0;;;-1:-1:-1;52712:30:0::1;::::0;-1:-1:-1;52722:10:0::1;52734:7:::0;52712:9:::1;:30::i;:::-;-1:-1:-1::0;52538:3:0;::::1;::::0;::::1;:::i;:::-;;;;52503:251;;56699:95:::0;16131:6;;-1:-1:-1;;;;;16131:6:0;5518:10;16278:23;16270:68;;;;-1:-1:-1;;;16270:68:0;;;;;;;:::i;:::-;56768:12:::1;:21:::0;56699:95::o;27717:305::-;27819:4;-1:-1:-1;;;;;;27856:40:0;;-1:-1:-1;;;27856:40:0;;:105;;-1:-1:-1;;;;;;;27913:48:0;;-1:-1:-1;;;27913:48:0;27856:105;:158;;;-1:-1:-1;;;;;;;;;;25679:40:0;;;27978:36;25570:157;33615:127;33680:4;33704:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33704:16:0;:30;;;33615:127::o;37597:174::-;37672:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37672:29:0;-1:-1:-1;;;;;37672:29:0;;;;;;;;:24;;37726:23;37672:24;37726:14;:23::i;:::-;-1:-1:-1;;;;;37717:46:0;;;;;;;;;;;37597:174;;:::o;33909:348::-;34002:4;34027:16;34035:7;34027;:16::i;:::-;34019:73;;;;-1:-1:-1;;;34019:73:0;;13366:2:1;34019:73:0;;;13348:21:1;13405:2;13385:18;;;13378:30;13444:34;13424:18;;;13417:62;-1:-1:-1;;;13495:18:1;;;13488:42;13547:19;;34019:73:0;13164:408:1;34019:73:0;34103:13;34119:23;34134:7;34119:14;:23::i;:::-;34103:39;;34172:5;-1:-1:-1;;;;;34161:16:0;:7;-1:-1:-1;;;;;34161:16:0;;:51;;;;34205:7;-1:-1:-1;;;;;34181:31:0;:20;34193:7;34181:11;:20::i;:::-;-1:-1:-1;;;;;34181:31:0;;34161:51;:87;;;-1:-1:-1;;;;;;31001:25:0;;;30977:4;31001:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34216:32;34153:96;33909:348;-1:-1:-1;;;;33909:348:0:o;36901:578::-;37060:4;-1:-1:-1;;;;;37033:31:0;:23;37048:7;37033:14;:23::i;:::-;-1:-1:-1;;;;;37033:31:0;;37025:85;;;;-1:-1:-1;;;37025:85:0;;18371:2:1;37025:85:0;;;18353:21:1;18410:2;18390:18;;;18383:30;18449:34;18429:18;;;18422:62;-1:-1:-1;;;18500:18:1;;;18493:39;18549:19;;37025:85:0;18169:405:1;37025:85:0;-1:-1:-1;;;;;37129:16:0;;37121:65;;;;-1:-1:-1;;;37121:65:0;;12266:2:1;37121:65:0;;;12248:21:1;12305:2;12285:18;;;12278:30;12344:34;12324:18;;;12317:62;-1:-1:-1;;;12395:18:1;;;12388:34;12439:19;;37121:65:0;12064:400:1;37121:65:0;37199:39;37220:4;37226:2;37230:7;37199:20;:39::i;:::-;37303:29;37320:1;37324:7;37303:8;:29::i;:::-;-1:-1:-1;;;;;37345:15:0;;;;;;:9;:15;;;;;:20;;37364:1;;37345:15;:20;;37364:1;;37345:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37376:13:0;;;;;;:9;:13;;;;;:18;;37393:1;;37376:13;:18;;37393:1;;37376:18;:::i;:::-;;;;-1:-1:-1;;37405:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37405:21:0;-1:-1:-1;;;;;37405:21:0;;;;;;;;;37444:27;;37405:16;;37444:27;;;;;;;36901:578;;;:::o;17158:173::-;17233:6;;;-1:-1:-1;;;;;17250:17:0;;;-1:-1:-1;;;;;;17250:17:0;;;;;;;17283:40;;17233:6;;;17250:17;17233:6;;17283:40;;17214:16;;17283:40;17203:128;17158:173;:::o;34599:110::-;34675:26;34685:2;34689:7;34675:26;;;;;;;;;;;;:9;:26::i;32987:315::-;33144:28;33154:4;33160:2;33164:7;33144:9;:28::i;:::-;33191:48;33214:4;33220:2;33224:7;33233:5;33191:22;:48::i;:::-;33183:111;;;;-1:-1:-1;;;33183:111:0;;;;;;;:::i;54541:106::-;54593:13;54632:7;54625:14;;;;;:::i;57523:729::-;57579:13;57806:10;57802:53;;-1:-1:-1;;57833:10:0;;;;;;;;;;;;-1:-1:-1;;;57833:10:0;;;;;57523:729::o;57802:53::-;57880:5;57865:12;57921:78;57928:9;;57921:78;;57954:8;;;;:::i;:::-;;-1:-1:-1;57977:10:0;;-1:-1:-1;57985:2:0;57977:10;;:::i;:::-;;;57921:78;;;58009:19;58041:6;58031:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58031:17:0;;58009:39;;58059:154;58066:10;;58059:154;;58093:11;58103:1;58093:11;;:::i;:::-;;-1:-1:-1;58162:10:0;58170:2;58162:5;:10;:::i;:::-;58149:24;;:2;:24;:::i;:::-;58136:39;;58119:6;58126;58119:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;58119:56:0;;;;;;;;-1:-1:-1;58190:11:0;58199:2;58190:11;;:::i;:::-;;;58059:154;;42411:589;-1:-1:-1;;;;;42617:18:0;;42613:187;;42652:40;42684:7;43827:10;:17;;43800:24;;;;:15;:24;;;;;:44;;;43855:24;;;;;;;;;;;;43723:164;42652:40;42613:187;;;42722:2;-1:-1:-1;;;;;42714:10:0;:4;-1:-1:-1;;;;;42714:10:0;;42710:90;;42741:47;42774:4;42780:7;42741:32;:47::i;:::-;-1:-1:-1;;;;;42814:16:0;;42810:183;;42847:45;42884:7;42847:36;:45::i;42810:183::-;42920:4;-1:-1:-1;;;;;42914:10:0;:2;-1:-1:-1;;;;;42914:10:0;;42910:83;;42941:40;42969:2;42973:7;42941:27;:40::i;34936:321::-;35066:18;35072:2;35076:7;35066:5;:18::i;:::-;35117:54;35148:1;35152:2;35156:7;35165:5;35117:22;:54::i;:::-;35095:154;;;;-1:-1:-1;;;35095:154:0;;;;;;;:::i;38336:799::-;38491:4;-1:-1:-1;;;;;38512:13:0;;6710:20;6758:8;38508:620;;38548:72;;-1:-1:-1;;;38548:72:0;;-1:-1:-1;;;;;38548:36:0;;;;;:72;;5518:10;;38599:4;;38605:7;;38614:5;;38548:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38548:72:0;;;;;;;;-1:-1:-1;;38548:72:0;;;;;;;;;;;;:::i;:::-;;;38544:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38790:13:0;;38786:272;;38833:60;;-1:-1:-1;;;38833:60:0;;;;;;;:::i;38786:272::-;39008:6;39002:13;38993:6;38989:2;38985:15;38978:38;38544:529;-1:-1:-1;;;;;;38671:51:0;-1:-1:-1;;;38671:51:0;;-1:-1:-1;38664:58:0;;38508:620;-1:-1:-1;39112:4:0;38336:799;;;;;;:::o;44514:988::-;44780:22;44830:1;44805:22;44822:4;44805:16;:22::i;:::-;:26;;;;:::i;:::-;44842:18;44863:26;;;:17;:26;;;;;;44780:51;;-1:-1:-1;44996:28:0;;;44992:328;;-1:-1:-1;;;;;45063:18:0;;45041:19;45063:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45114:30;;;;;;:44;;;45231:30;;:17;:30;;;;;:43;;;44992:328;-1:-1:-1;45416:26:0;;;;:17;:26;;;;;;;;45409:33;;;-1:-1:-1;;;;;45460:18:0;;;;;:12;:18;;;;;:34;;;;;;;45453:41;44514:988::o;45797:1079::-;46075:10;:17;46050:22;;46075:21;;46095:1;;46075:21;:::i;:::-;46107:18;46128:24;;;:15;:24;;;;;;46501:10;:26;;46050:46;;-1:-1:-1;46128:24:0;;46050:46;;46501:26;;;;;;:::i;:::-;;;;;;;;;46479:48;;46565:11;46540:10;46551;46540:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46645:28;;;:15;:28;;;;;;;:41;;;46817:24;;;;;46810:31;46852:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45868:1008;;;45797:1079;:::o;43301:221::-;43386:14;43403:20;43420:2;43403:16;:20::i;:::-;-1:-1:-1;;;;;43434:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43479:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43301:221:0:o;35593:382::-;-1:-1:-1;;;;;35673:16:0;;35665:61;;;;-1:-1:-1;;;35665:61:0;;17236:2:1;35665:61:0;;;17218:21:1;;;17255:18;;;17248:30;17314:34;17294:18;;;17287:62;17366:18;;35665:61:0;17034:356:1;35665:61:0;35746:16;35754:7;35746;:16::i;:::-;35745:17;35737:58;;;;-1:-1:-1;;;35737:58:0;;10048:2:1;35737:58:0;;;10030:21:1;10087:2;10067:18;;;10060:30;10126;10106:18;;;10099:58;10174:18;;35737:58:0;9846:352:1;35737:58:0;35808:45;35837:1;35841:2;35845:7;35808:20;:45::i;:::-;-1:-1:-1;;;;;35866:13:0;;;;;;:9;:13;;;;;:18;;35883:1;;35866:13;:18;;35883:1;;35866:18;:::i;:::-;;;;-1:-1:-1;;35895:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35895:21:0;-1:-1:-1;;;;;35895:21:0;;;;;;;;35934:33;;35895:16;;;35934:33;;35895:16;;35934:33;35593:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:315::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2545:28;2567:5;2545:28;:::i;:::-;2592:5;2582:15;;;2288:315;;;;;:::o;2608:254::-;2676:6;2684;2737:2;2725:9;2716:7;2712:23;2708:32;2705:52;;;2753:1;2750;2743:12;2705:52;2776:29;2795:9;2776:29;:::i;:::-;2766:39;2852:2;2837:18;;;;2824:32;;-1:-1:-1;;;2608:254:1:o;2867:615::-;2953:6;2961;3014:2;3002:9;2993:7;2989:23;2985:32;2982:52;;;3030:1;3027;3020:12;2982:52;3070:9;3057:23;3099:18;3140:2;3132:6;3129:14;3126:34;;;3156:1;3153;3146:12;3126:34;3194:6;3183:9;3179:22;3169:32;;3239:7;3232:4;3228:2;3224:13;3220:27;3210:55;;3261:1;3258;3251:12;3210:55;3301:2;3288:16;3327:2;3319:6;3316:14;3313:34;;;3343:1;3340;3333:12;3313:34;3396:7;3391:2;3381:6;3378:1;3374:14;3370:2;3366:23;3362:32;3359:45;3356:65;;;3417:1;3414;3407:12;3356:65;3448:2;3440:11;;;;;3470:6;;-1:-1:-1;2867:615:1;;-1:-1:-1;;;;2867:615:1:o;3487:245::-;3554:6;3607:2;3595:9;3586:7;3582:23;3578:32;3575:52;;;3623:1;3620;3613:12;3575:52;3655:9;3649:16;3674:28;3696:5;3674:28;:::i;3737:245::-;3795:6;3848:2;3836:9;3827:7;3823:23;3819:32;3816:52;;;3864:1;3861;3854:12;3816:52;3903:9;3890:23;3922:30;3946:5;3922:30;:::i;3987:249::-;4056:6;4109:2;4097:9;4088:7;4084:23;4080:32;4077:52;;;4125:1;4122;4115:12;4077:52;4157:9;4151:16;4176:30;4200:5;4176:30;:::i;4241:450::-;4310:6;4363:2;4351:9;4342:7;4338:23;4334:32;4331:52;;;4379:1;4376;4369:12;4331:52;4419:9;4406:23;4452:18;4444:6;4441:30;4438:50;;;4484:1;4481;4474:12;4438:50;4507:22;;4560:4;4552:13;;4548:27;-1:-1:-1;4538:55:1;;4589:1;4586;4579:12;4538:55;4612:73;4677:7;4672:2;4659:16;4654:2;4650;4646:11;4612:73;:::i;4696:180::-;4755:6;4808:2;4796:9;4787:7;4783:23;4779:32;4776:52;;;4824:1;4821;4814:12;4776:52;-1:-1:-1;4847:23:1;;4696:180;-1:-1:-1;4696:180:1:o;4881:184::-;4951:6;5004:2;4992:9;4983:7;4979:23;4975:32;4972:52;;;5020:1;5017;5010:12;4972:52;-1:-1:-1;5043:16:1;;4881:184;-1:-1:-1;4881:184:1:o;5070:309::-;5135:6;5143;5196:2;5184:9;5175:7;5171:23;5167:32;5164:52;;;5212:1;5209;5202:12;5164:52;5248:9;5235:23;5225:33;;5308:2;5297:9;5293:18;5280:32;5321:28;5343:5;5321:28;:::i;5384:257::-;5425:3;5463:5;5457:12;5490:6;5485:3;5478:19;5506:63;5562:6;5555:4;5550:3;5546:14;5539:4;5532:5;5528:16;5506:63;:::i;:::-;5623:2;5602:15;-1:-1:-1;;5598:29:1;5589:39;;;;5630:4;5585:50;;5384:257;-1:-1:-1;;5384:257:1:o;5646:470::-;5825:3;5863:6;5857:13;5879:53;5925:6;5920:3;5913:4;5905:6;5901:17;5879:53;:::i;:::-;5995:13;;5954:16;;;;6017:57;5995:13;5954:16;6051:4;6039:17;;6017:57;:::i;:::-;6090:20;;5646:470;-1:-1:-1;;;;5646:470:1:o;6709:488::-;-1:-1:-1;;;;;6978:15:1;;;6960:34;;7030:15;;7025:2;7010:18;;7003:43;7077:2;7062:18;;7055:34;;;7125:3;7120:2;7105:18;;7098:31;;;6903:4;;7146:45;;7171:19;;7163:6;7146:45;:::i;:::-;7138:53;6709:488;-1:-1:-1;;;;;;6709:488:1:o;7202:632::-;7373:2;7425:21;;;7495:13;;7398:18;;;7517:22;;;7344:4;;7373:2;7596:15;;;;7570:2;7555:18;;;7344:4;7639:169;7653:6;7650:1;7647:13;7639:169;;;7714:13;;7702:26;;7783:15;;;;7748:12;;;;7675:1;7668:9;7639:169;;;-1:-1:-1;7825:3:1;;7202:632;-1:-1:-1;;;;;;7202:632:1:o;8031:219::-;8180:2;8169:9;8162:21;8143:4;8200:44;8240:2;8229:9;8225:18;8217:6;8200:44;:::i;9020:414::-;9222:2;9204:21;;;9261:2;9241:18;;;9234:30;9300:34;9295:2;9280:18;;9273:62;-1:-1:-1;;;9366:2:1;9351:18;;9344:48;9424:3;9409:19;;9020:414::o;10884:411::-;11086:2;11068:21;;;11125:2;11105:18;;;11098:30;11164:34;11159:2;11144:18;;11137:62;-1:-1:-1;;;11230:2:1;11215:18;;11208:45;11285:3;11270:19;;10884:411::o;12823:336::-;13025:2;13007:21;;;13064:2;13044:18;;;13037:30;-1:-1:-1;;;13098:2:1;13083:18;;13076:42;13150:2;13135:18;;12823:336::o;13577:331::-;13779:2;13761:21;;;13818:1;13798:18;;;13791:29;-1:-1:-1;;;13851:2:1;13836:18;;13829:38;13899:2;13884:18;;13577:331::o;14673:354::-;14875:2;14857:21;;;14914:2;14894:18;;;14887:30;14953:32;14948:2;14933:18;;14926:60;15018:2;15003:18;;14673:354::o;17808:356::-;18010:2;17992:21;;;18029:18;;;18022:30;18088:34;18083:2;18068:18;;18061:62;18155:2;18140:18;;17808:356::o;18924:411::-;19126:2;19108:21;;;19165:2;19145:18;;;19138:30;19204:34;19199:2;19184:18;;19177:62;-1:-1:-1;;;19270:2:1;19255:18;;19248:45;19325:3;19310:19;;18924:411::o;19742:413::-;19944:2;19926:21;;;19983:2;19963:18;;;19956:30;20022:34;20017:2;20002:18;;19995:62;-1:-1:-1;;;20088:2:1;20073:18;;20066:47;20145:3;20130:19;;19742:413::o;22197:128::-;22237:3;22268:1;22264:6;22261:1;22258:13;22255:39;;;22274:18;;:::i;:::-;-1:-1:-1;22310:9:1;;22197:128::o;22330:120::-;22370:1;22396;22386:35;;22401:18;;:::i;:::-;-1:-1:-1;22435:9:1;;22330:120::o;22455:168::-;22495:7;22561:1;22557;22553:6;22549:14;22546:1;22543:21;22538:1;22531:9;22524:17;22520:45;22517:71;;;22568:18;;:::i;:::-;-1:-1:-1;22608:9:1;;22455:168::o;22628:125::-;22668:4;22696:1;22693;22690:8;22687:34;;;22701:18;;:::i;:::-;-1:-1:-1;22738:9:1;;22628:125::o;22758:258::-;22830:1;22840:113;22854:6;22851:1;22848:13;22840:113;;;22930:11;;;22924:18;22911:11;;;22904:39;22876:2;22869:10;22840:113;;;22971:6;22968:1;22965:13;22962:48;;;-1:-1:-1;;23006:1:1;22988:16;;22981:27;22758:258::o;23021:380::-;23100:1;23096:12;;;;23143;;;23164:61;;23218:4;23210:6;23206:17;23196:27;;23164:61;23271:2;23263:6;23260:14;23240:18;23237:38;23234:161;;;23317:10;23312:3;23308:20;23305:1;23298:31;23352:4;23349:1;23342:15;23380:4;23377:1;23370:15;23234:161;;23021:380;;;:::o;23406:135::-;23445:3;-1:-1:-1;;23466:17:1;;23463:43;;;23486:18;;:::i;:::-;-1:-1:-1;23533:1:1;23522:13;;23406:135::o;23546:112::-;23578:1;23604;23594:35;;23609:18;;:::i;:::-;-1:-1:-1;23643:9:1;;23546:112::o;23663:127::-;23724:10;23719:3;23715:20;23712:1;23705:31;23755:4;23752:1;23745:15;23779:4;23776:1;23769:15;23795:127;23856:10;23851:3;23847:20;23844:1;23837:31;23887:4;23884:1;23877:15;23911:4;23908:1;23901:15;23927:127;23988:10;23983:3;23979:20;23976:1;23969:31;24019:4;24016:1;24009:15;24043:4;24040:1;24033:15;24059:127;24120:10;24115:3;24111:20;24108:1;24101:31;24151:4;24148:1;24141:15;24175:4;24172:1;24165:15;24191:127;24252:10;24247:3;24243:20;24240:1;24233:31;24283:4;24280:1;24273:15;24307:4;24304:1;24297:15;24323:118;24409:5;24402:13;24395:21;24388:5;24385:32;24375:60;;24431:1;24428;24421:12;24446:131;-1:-1:-1;;;;;;24520:32:1;;24510:43;;24500:71;;24567:1;24564;24557:12

Swarm Source

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