ETH Price: $2,489.79 (+0.34%)

Token

Bears Club By KicksOnFire ()
 

Overview

Max Total Supply

780

Holders

478

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Bears Club is a collection of 5,555 bears commemorating the most iconic basketball moments in history. A collection inspired by legends, leaders, trendsetters & trailblazers. Join us in our epic journey to solve problems facing the sneaker community.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BearsClubByKickOnFire

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC1155/ERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] -= amounts[i];
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: contracts/bears_club_contract.sol


pragma solidity ^0.8.0;





contract BearsClubByKickOnFire is ERC1155, ERC1155Supply, Ownable {

    string public name = "Bears Club By KicksOnFire";

    uint256 public constant DUNK_CHAMP_BEAR = 1;
    uint256 public constant CHAMPIONSHIP_BEAR = 2;
    uint256 public constant CHOKE_BEAR = 3;
    uint256 public constant CELEBRATION_BEAR = 4;
    uint256 public constant STEP_OVER_BEAR = 5;

    uint256 private _price = 0.3 ether;
    uint256 private _max_mint_amount = 5;
    uint256 private INITIAL_MAX_SUPPLY = 1111;

    mapping(uint256 => uint256) private _maxSupply;
    uint256[] private _collections;

    address private signer;

    constructor() ERC1155("https://bearsclubkof.mypinata.cloud/ipfs/QmfE6NMKCBcJMrcP5zqmCx99aLDD9qcd4J3H6ctwVt99c4/{id}.json") {
        addToken(DUNK_CHAMP_BEAR, INITIAL_MAX_SUPPLY);
        addToken(CHAMPIONSHIP_BEAR, INITIAL_MAX_SUPPLY);
        addToken(CHOKE_BEAR, INITIAL_MAX_SUPPLY);
        addToken(CELEBRATION_BEAR, INITIAL_MAX_SUPPLY);
        addToken(STEP_OVER_BEAR, INITIAL_MAX_SUPPLY);
    }

    function mintKicksOnFireBears(uint256[] memory ids, uint256[] memory amounts) public payable {
        
        uint256 value = msg.value;
        uint256 totalAmount = 0;

        //validate the ids
        for (uint256 i = 0; i < ids.length; i++) {
           _validateToken(ids[i]);
        }

        for (uint256 i = 0; i < ids.length; ++i) {
            totalAmount = totalAmount + amounts[i];
        }

        require(totalAmount > 0, "You cannot mint 0 bears");

        uint256 totalPrice = _price * totalAmount;

        require(totalAmount <= _max_mint_amount,string(abi.encodePacked("You may only mint up to ", _uint2str(_max_mint_amount), " per transaction")));
        require(value == totalPrice, "Amount of Ether sent is not correct");

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];
            _mint(msg.sender, id, amount, "");
        }
    }

    function addToken(uint256 id, uint256 maxSupply) onlyOwner public {
        _collections.push(id);
        _setMaxSupply(id, maxSupply);
    }

    function removeToken(uint index) onlyOwner public {
        require(index < _collections.length);
        uint256 id = _collections[index];
        _collections[index] = _collections[_collections.length-1];
        _collections.pop();
        _removeMaxSupply(id);
    }

    function getTokens() public view returns(uint256[] memory) {
        return _collections;
    }

    function withdraw(address account) external onlyOwner {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(account), balance);
    }

    function setURI(string memory newUri) onlyOwner public {
        _setURI(newUri);
    }

    function setPrice(uint256 price) onlyOwner public {
        _price = price;
    }

    function setMaxMintAmount(uint256 maxMintAmount) onlyOwner public {
        _max_mint_amount = maxMintAmount;
    }

    function getMaxSupply(uint256 id) public view returns(uint256) {
        return _maxSupply[id];
    }

    function burn(address account, uint256 id, uint256 amount) public {
        require(msg.sender == account);
        _burn(account, id, amount);
    }

    function _setMaxSupply(uint256 id, uint256 amount) internal {
        _maxSupply[id] = amount;
    }

    function _removeMaxSupply(uint256 id) internal {
        delete _maxSupply[id];
    }

    function _validateToken(uint256 id) internal view {
        bool contain = false;
    
        for (uint i=0; i < _collections.length; i++) {
            if (id == _collections[i]) {
                contain = true;
            }
        }
        
        require(contain, "Invalid token id");
    }

    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual override {
        require(totalSupply(id) < _maxSupply[id], "Exceeds maximum supply");
        super._mint(account, id, amount, data);
    }

    function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data)
        internal
        override(ERC1155, ERC1155Supply)
    {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

    function _uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"CELEBRATION_BEAR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CHAMPIONSHIP_BEAR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CHOKE_BEAR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DUNK_CHAMP_BEAR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STEP_OVER_BEAR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"addToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintKicksOnFireBears","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"removeToken","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"uint256","name":"maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"setURI","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":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280601981526020017f426561727320436c7562204279204b69636b734f6e4669726500000000000000815250600590805190602001906200005192919062000330565b50670429d069189e000060065560056007556104576008553480156200007657600080fd5b506040518060a001604052806061815260200162004e0f60619139620000a2816200013260201b60201c565b50620000c3620000b76200014e60201b60201c565b6200015660201b60201c565b620000d860016008546200021c60201b60201c565b620000ed60026008546200021c60201b60201c565b6200010260036008546200021c60201b60201c565b6200011760046008546200021c60201b60201c565b6200012c60056008546200021c60201b60201c565b620004c8565b80600290805190602001906200014a92919062000330565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200022c6200014e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000252620002ea60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a29062000407565b60405180910390fd5b600a829080600181540180825580915050600190039060005260206000200160009091909190915055620002e682826200031460201b60201c565b5050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8060096000848152602001908152602001600020819055505050565b8280546200033e906200043a565b90600052602060002090601f016020900481019282620003625760008555620003ae565b82601f106200037d57805160ff1916838001178555620003ae565b82800160010185558215620003ae579182015b82811115620003ad57825182559160200191906001019062000390565b5b509050620003bd9190620003c1565b5090565b5b80821115620003dc576000816000905550600101620003c2565b5090565b6000620003ef60208362000429565b9150620003fc826200049f565b602082019050919050565b600060208201905081810360008301526200042281620003e0565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200045357607f821691505b602082108114156200046a576200046962000470565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61493780620004d86000396000f3fe6080604052600436106101c15760003560e01c80634e1273f4116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c514610644578063f242432a14610681578063f2fde38b146106aa578063f5298aca146106d3576101c1565b8063a22cb46514610588578063a75ba461146105b1578063aa6ca808146105dc578063bd85b03914610607576101c1565b80635e495d74116100d15780635e495d74146104e0578063715018a61461051d5780638da5cb5b1461053457806391b7f5ed1461055f576101c1565b80634e1273f41461043d5780634f558e791461047a57806351cff8d9146104b7576101c1565b806317b9ebec1161016457806328d8dae51161013e57806328d8dae5146103a45780632eb2c2d6146103cf57806336c5d724146103f85780633a75d12e14610421576101c1565b806317b9ebec14610325578063206e0d8e1461034e5780632291437c14610379576101c1565b806306fdde03116101a057806306fdde0314610269578063088a4ed0146102945780630e89341c146102bd5780630fb24991146102fa576101c1565b8062fdd58e146101c657806301ffc9a71461020357806302fe530514610240575b600080fd5b3480156101d257600080fd5b506101ed60048036038101906101e891906130a0565b6106fc565b6040516101fa9190613c25565b60405180910390f35b34801561020f57600080fd5b5061022a60048036038101906102259190613223565b6107c5565b6040516102379190613948565b60405180910390f35b34801561024c57600080fd5b506102676004803603810190610262919061327d565b6108a7565b005b34801561027557600080fd5b5061027e61092f565b60405161028b9190613963565b60405180910390f35b3480156102a057600080fd5b506102bb60048036038101906102b691906132c6565b6109bd565b005b3480156102c957600080fd5b506102e460048036038101906102df91906132c6565b610a43565b6040516102f19190613963565b60405180910390f35b34801561030657600080fd5b5061030f610ad7565b60405161031c9190613c25565b60405180910390f35b34801561033157600080fd5b5061034c600480360381019061034791906132f3565b610adc565b005b34801561035a57600080fd5b50610363610b8f565b6040516103709190613c25565b60405180910390f35b34801561038557600080fd5b5061038e610b94565b60405161039b9190613c25565b60405180910390f35b3480156103b057600080fd5b506103b9610b99565b6040516103c69190613c25565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190612efa565b610b9e565b005b34801561040457600080fd5b5061041f600480360381019061041a91906132c6565b610c3f565b005b61043b600480360381019061043691906131ab565b610d76565b005b34801561044957600080fd5b50610464600480360381019061045f9190613133565b610f8e565b60405161047191906138ef565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c91906132c6565b6110a7565b6040516104ae9190613948565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d99190612e8d565b6110bb565b005b3480156104ec57600080fd5b50610507600480360381019061050291906132c6565b61114a565b6040516105149190613c25565b60405180910390f35b34801561052957600080fd5b50610532611167565b005b34801561054057600080fd5b506105496111ef565b6040516105569190613812565b60405180910390f35b34801561056b57600080fd5b50610586600480360381019061058191906132c6565b611219565b005b34801561059457600080fd5b506105af60048036038101906105aa9190613060565b61129f565b005b3480156105bd57600080fd5b506105c66112b5565b6040516105d39190613c25565b60405180910390f35b3480156105e857600080fd5b506105f16112ba565b6040516105fe91906138ef565b60405180910390f35b34801561061357600080fd5b5061062e600480360381019061062991906132c6565b611312565b60405161063b9190613c25565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190612eba565b61132f565b6040516106789190613948565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190612fc9565b6113c3565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190612e8d565b611464565b005b3480156106df57600080fd5b506106fa60048036038101906106f591906130e0565b61155c565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561076d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610764906139c5565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a0575061089f826115a4565b5b9050919050565b6108af61160e565b73ffffffffffffffffffffffffffffffffffffffff166108cd6111ef565b73ffffffffffffffffffffffffffffffffffffffff1614610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90613b45565b60405180910390fd5b61092c81611616565b50565b6005805461093c90613fde565b80601f016020809104026020016040519081016040528092919081815260200182805461096890613fde565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b505050505081565b6109c561160e565b73ffffffffffffffffffffffffffffffffffffffff166109e36111ef565b73ffffffffffffffffffffffffffffffffffffffff1614610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3090613b45565b60405180910390fd5b8060078190555050565b606060028054610a5290613fde565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7e90613fde565b8015610acb5780601f10610aa057610100808354040283529160200191610acb565b820191906000526020600020905b815481529060010190602001808311610aae57829003601f168201915b50505050509050919050565b600481565b610ae461160e565b73ffffffffffffffffffffffffffffffffffffffff16610b026111ef565b73ffffffffffffffffffffffffffffffffffffffff1614610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f90613b45565b60405180910390fd5b600a829080600181540180825580915050600190039060005260206000200160009091909190915055610b8b8282611630565b5050565b600181565b600581565b600281565b610ba661160e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610bec5750610beb85610be661160e565b61132f565b5b610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290613ae5565b60405180910390fd5b610c38858585858561164c565b5050505050565b610c4761160e565b73ffffffffffffffffffffffffffffffffffffffff16610c656111ef565b73ffffffffffffffffffffffffffffffffffffffff1614610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb290613b45565b60405180910390fd5b600a805490508110610ccc57600080fd5b6000600a8281548110610ce257610ce1614146565b5b90600052602060002001549050600a6001600a80549050610d039190613ee7565b81548110610d1457610d13614146565b5b9060005260206000200154600a8381548110610d3357610d32614146565b5b9060005260206000200181905550600a805480610d5357610d52614117565b5b60019003818190600052602060002001600090559055610d7281611960565b5050565b60003490506000805b8451811015610dbe57610dab858281518110610d9e57610d9d614146565b5b602002602001015161197a565b8080610db690614041565b915050610d7f565b5060005b8451811015610e0457838181518110610dde57610ddd614146565b5b602002602001015182610df19190613dcf565b915080610dfd90614041565b9050610dc2565b5060008111610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90613c05565b60405180910390fd5b600081600654610e589190613e8d565b9050600754821115610e6b600754611a0e565b604051602001610e7b91906137d0565b60405160208183030381529060405290610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec29190613963565b60405180910390fd5b50808314610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590613a25565b60405180910390fd5b60005b8551811015610f86576000868281518110610f2f57610f2e614146565b5b602002602001015190506000868381518110610f4e57610f4d614146565b5b60200260200101519050610f7333838360405180602001604052806000815250611b97565b505080610f7f90614041565b9050610f11565b505050505050565b60608151835114610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90613ba5565b60405180910390fd5b6000835167ffffffffffffffff811115610ff157610ff0614175565b5b60405190808252806020026020018201604052801561101f5781602001602082028036833780820191505090505b50905060005b845181101561109c5761106c85828151811061104457611043614146565b5b602002602001015185838151811061105f5761105e614146565b5b60200260200101516106fc565b82828151811061107f5761107e614146565b5b6020026020010181815250508061109590614041565b9050611025565b508091505092915050565b6000806110b383611312565b119050919050565b6110c361160e565b73ffffffffffffffffffffffffffffffffffffffff166110e16111ef565b73ffffffffffffffffffffffffffffffffffffffff1614611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90613b45565b60405180910390fd5b60004790506111468282611c06565b5050565b600060096000838152602001908152602001600020549050919050565b61116f61160e565b73ffffffffffffffffffffffffffffffffffffffff1661118d6111ef565b73ffffffffffffffffffffffffffffffffffffffff16146111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da90613b45565b60405180910390fd5b6111ed6000611cfa565b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61122161160e565b73ffffffffffffffffffffffffffffffffffffffff1661123f6111ef565b73ffffffffffffffffffffffffffffffffffffffff1614611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90613b45565b60405180910390fd5b8060068190555050565b6112b16112aa61160e565b8383611dc0565b5050565b600381565b6060600a80548060200260200160405190810160405280929190818152602001828054801561130857602002820191906000526020600020905b8154815260200190600101908083116112f4575b5050505050905090565b600060036000838152602001908152602001600020549050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113cb61160e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061141157506114108561140b61160e565b61132f565b5b611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790613a45565b60405180910390fd5b61145d8585858585611f2d565b5050505050565b61146c61160e565b73ffffffffffffffffffffffffffffffffffffffff1661148a6111ef565b73ffffffffffffffffffffffffffffffffffffffff16146114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d790613b45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611550576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611547906139e5565b60405180910390fd5b61155981611cfa565b50565b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461159457600080fd5b61159f8383836121af565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806002908051906020019061162c929190612b65565b5050565b8060096000848152602001908152602001600020819055505050565b8151835114611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790613bc5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790613ac5565b60405180910390fd5b600061170a61160e565b905061171a8187878787876123cc565b60005b84518110156118cb57600085828151811061173b5761173a614146565b5b60200260200101519050600085838151811061175a57611759614146565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f290613b25565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118b09190613dcf565b92505081905550505050806118c490614041565b905061171d565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611942929190613911565b60405180910390a46119588187878787876123e2565b505050505050565b600960008281526020019081526020016000206000905550565b6000805b600a805490508110156119c957600a818154811061199f5761199e614146565b5b90600052602060002001548314156119b657600191505b80806119c190614041565b91505061197e565b5080611a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0190613a65565b60405180910390fd5b5050565b60606000821415611a56576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b92565b600082905060005b60008214611a88578080611a7190614041565b915050600a82611a819190613e5c565b9150611a5e565b60008167ffffffffffffffff811115611aa457611aa3614175565b5b6040519080825280601f01601f191660200182016040528015611ad65781602001600182028036833780820191505090505b50905060008290505b60008614611b8a57600181611af49190613ee7565b90506000600a8088611b069190613e5c565b611b109190613e8d565b87611b1b9190613ee7565b6030611b279190613e25565b905060008160f81b905080848481518110611b4557611b44614146565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88611b819190613e5c565b97505050611adf565b819450505050505b919050565b6009600084815260200190815260200160002054611bb484611312565b10611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90613b65565b60405180910390fd5b611c00848484846125c9565b50505050565b80471015611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4090613aa5565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611c6f906137fd565b60006040518083038185875af1925050503d8060008114611cac576040519150601f19603f3d011682016040523d82523d6000602084013e611cb1565b606091505b5050905080611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec90613a85565b60405180910390fd5b505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2690613b85565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f209190613948565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9490613ac5565b60405180910390fd5b6000611fa761160e565b9050611fc7818787611fb88861275f565b611fc18861275f565b876123cc565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561205e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205590613b25565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121139190613dcf565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612190929190613c40565b60405180910390a46121a68288888888886127d9565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561221f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221690613b05565b60405180910390fd5b600061222961160e565b90506122598185600061223b8761275f565b6122448761275f565b604051806020016040528060008152506123cc565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156122f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e790613a05565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516123bd929190613c40565b60405180910390a45050505050565b6123da8686868686866129c0565b505050505050565b6124018473ffffffffffffffffffffffffffffffffffffffff16612b3a565b156125c1578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161244795949392919061382d565b602060405180830381600087803b15801561246157600080fd5b505af192505050801561249257506040513d601f19601f8201168201806040525081019061248f9190613250565b60015b6125385761249e6141a4565b806308c379a014156124fb57506124b361480f565b806124be57506124fd565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f29190613963565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252f90613985565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b6906139a5565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263090613be5565b60405180910390fd5b600061264361160e565b9050612664816000876126558861275f565b61265e8861275f565b876123cc565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126c39190613dcf565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612741929190613c40565b60405180910390a4612758816000878787876127d9565b5050505050565b60606000600167ffffffffffffffff81111561277e5761277d614175565b5b6040519080825280602002602001820160405280156127ac5781602001602082028036833780820191505090505b50905082816000815181106127c4576127c3614146565b5b60200260200101818152505080915050919050565b6127f88473ffffffffffffffffffffffffffffffffffffffff16612b3a565b156129b8578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161283e959493929190613895565b602060405180830381600087803b15801561285857600080fd5b505af192505050801561288957506040513d601f19601f820116820180604052508101906128869190613250565b60015b61292f576128956141a4565b806308c379a014156128f257506128aa61480f565b806128b557506128f4565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e99190613963565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292690613985565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad906139a5565b60405180910390fd5b505b505050505050565b6129ce868686868686612b5d565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a805760005b8351811015612a7e57828181518110612a2257612a21614146565b5b602002602001015160036000868481518110612a4157612a40614146565b5b602002602001015181526020019081526020016000206000828254612a669190613dcf565b9250508190555080612a7790614041565b9050612a06565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b325760005b8351811015612b3057828181518110612ad457612ad3614146565b5b602002602001015160036000868481518110612af357612af2614146565b5b602002602001015181526020019081526020016000206000828254612b189190613ee7565b9250508190555080612b2990614041565b9050612ab8565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b828054612b7190613fde565b90600052602060002090601f016020900481019282612b935760008555612bda565b82601f10612bac57805160ff1916838001178555612bda565b82800160010185558215612bda579182015b82811115612bd9578251825591602001919060010190612bbe565b5b509050612be79190612beb565b5090565b5b80821115612c04576000816000905550600101612bec565b5090565b6000612c1b612c1684613c8e565b613c69565b90508083825260208201905082856020860282011115612c3e57612c3d6141cb565b5b60005b85811015612c6e5781612c548882612d6c565b845260208401935060208301925050600181019050612c41565b5050509392505050565b6000612c8b612c8684613cba565b613c69565b90508083825260208201905082856020860282011115612cae57612cad6141cb565b5b60005b85811015612cde5781612cc48882612e78565b845260208401935060208301925050600181019050612cb1565b5050509392505050565b6000612cfb612cf684613ce6565b613c69565b905082815260208101848484011115612d1757612d166141d0565b5b612d22848285613f9c565b509392505050565b6000612d3d612d3884613d17565b613c69565b905082815260208101848484011115612d5957612d586141d0565b5b612d64848285613f9c565b509392505050565b600081359050612d7b816148a5565b92915050565b600082601f830112612d9657612d956141c6565b5b8135612da6848260208601612c08565b91505092915050565b600082601f830112612dc457612dc36141c6565b5b8135612dd4848260208601612c78565b91505092915050565b600081359050612dec816148bc565b92915050565b600081359050612e01816148d3565b92915050565b600081519050612e16816148d3565b92915050565b600082601f830112612e3157612e306141c6565b5b8135612e41848260208601612ce8565b91505092915050565b600082601f830112612e5f57612e5e6141c6565b5b8135612e6f848260208601612d2a565b91505092915050565b600081359050612e87816148ea565b92915050565b600060208284031215612ea357612ea26141da565b5b6000612eb184828501612d6c565b91505092915050565b60008060408385031215612ed157612ed06141da565b5b6000612edf85828601612d6c565b9250506020612ef085828601612d6c565b9150509250929050565b600080600080600060a08688031215612f1657612f156141da565b5b6000612f2488828901612d6c565b9550506020612f3588828901612d6c565b945050604086013567ffffffffffffffff811115612f5657612f556141d5565b5b612f6288828901612daf565b935050606086013567ffffffffffffffff811115612f8357612f826141d5565b5b612f8f88828901612daf565b925050608086013567ffffffffffffffff811115612fb057612faf6141d5565b5b612fbc88828901612e1c565b9150509295509295909350565b600080600080600060a08688031215612fe557612fe46141da565b5b6000612ff388828901612d6c565b955050602061300488828901612d6c565b945050604061301588828901612e78565b935050606061302688828901612e78565b925050608086013567ffffffffffffffff811115613047576130466141d5565b5b61305388828901612e1c565b9150509295509295909350565b60008060408385031215613077576130766141da565b5b600061308585828601612d6c565b925050602061309685828601612ddd565b9150509250929050565b600080604083850312156130b7576130b66141da565b5b60006130c585828601612d6c565b92505060206130d685828601612e78565b9150509250929050565b6000806000606084860312156130f9576130f86141da565b5b600061310786828701612d6c565b935050602061311886828701612e78565b925050604061312986828701612e78565b9150509250925092565b6000806040838503121561314a576131496141da565b5b600083013567ffffffffffffffff811115613168576131676141d5565b5b61317485828601612d81565b925050602083013567ffffffffffffffff811115613195576131946141d5565b5b6131a185828601612daf565b9150509250929050565b600080604083850312156131c2576131c16141da565b5b600083013567ffffffffffffffff8111156131e0576131df6141d5565b5b6131ec85828601612daf565b925050602083013567ffffffffffffffff81111561320d5761320c6141d5565b5b61321985828601612daf565b9150509250929050565b600060208284031215613239576132386141da565b5b600061324784828501612df2565b91505092915050565b600060208284031215613266576132656141da565b5b600061327484828501612e07565b91505092915050565b600060208284031215613293576132926141da565b5b600082013567ffffffffffffffff8111156132b1576132b06141d5565b5b6132bd84828501612e4a565b91505092915050565b6000602082840312156132dc576132db6141da565b5b60006132ea84828501612e78565b91505092915050565b6000806040838503121561330a576133096141da565b5b600061331885828601612e78565b925050602061332985828601612e78565b9150509250929050565b600061333f83836137b2565b60208301905092915050565b61335481613f1b565b82525050565b600061336582613d58565b61336f8185613d86565b935061337a83613d48565b8060005b838110156133ab5781516133928882613333565b975061339d83613d79565b92505060018101905061337e565b5085935050505092915050565b6133c181613f2d565b82525050565b60006133d282613d63565b6133dc8185613d97565b93506133ec818560208601613fab565b6133f5816141df565b840191505092915050565b600061340b82613d6e565b6134158185613db3565b9350613425818560208601613fab565b61342e816141df565b840191505092915050565b600061344482613d6e565b61344e8185613dc4565b935061345e818560208601613fab565b80840191505092915050565b6000613477603483613db3565b9150613482826141fd565b604082019050919050565b600061349a602883613db3565b91506134a58261424c565b604082019050919050565b60006134bd602b83613db3565b91506134c88261429b565b604082019050919050565b60006134e0602683613db3565b91506134eb826142ea565b604082019050919050565b6000613503602483613db3565b915061350e82614339565b604082019050919050565b6000613526602383613db3565b915061353182614388565b604082019050919050565b6000613549602983613db3565b9150613554826143d7565b604082019050919050565b600061356c601083613dc4565b915061357782614426565b601082019050919050565b600061358f601083613db3565b915061359a8261444f565b602082019050919050565b60006135b2603a83613db3565b91506135bd82614478565b604082019050919050565b60006135d5601d83613db3565b91506135e0826144c7565b602082019050919050565b60006135f8602583613db3565b9150613603826144f0565b604082019050919050565b600061361b603283613db3565b91506136268261453f565b604082019050919050565b600061363e601883613dc4565b91506136498261458e565b601882019050919050565b6000613661602383613db3565b915061366c826145b7565b604082019050919050565b6000613684602a83613db3565b915061368f82614606565b604082019050919050565b60006136a7602083613db3565b91506136b282614655565b602082019050919050565b60006136ca601683613db3565b91506136d58261467e565b602082019050919050565b60006136ed600083613da8565b91506136f8826146a7565b600082019050919050565b6000613710602983613db3565b915061371b826146aa565b604082019050919050565b6000613733602983613db3565b915061373e826146f9565b604082019050919050565b6000613756602883613db3565b915061376182614748565b604082019050919050565b6000613779602183613db3565b915061378482614797565b604082019050919050565b600061379c601783613db3565b91506137a7826147e6565b602082019050919050565b6137bb81613f85565b82525050565b6137ca81613f85565b82525050565b60006137db82613631565b91506137e78284613439565b91506137f28261355f565b915081905092915050565b6000613808826136e0565b9150819050919050565b6000602082019050613827600083018461334b565b92915050565b600060a082019050613842600083018861334b565b61384f602083018761334b565b8181036040830152613861818661335a565b90508181036060830152613875818561335a565b9050818103608083015261388981846133c7565b90509695505050505050565b600060a0820190506138aa600083018861334b565b6138b7602083018761334b565b6138c460408301866137c1565b6138d160608301856137c1565b81810360808301526138e381846133c7565b90509695505050505050565b60006020820190508181036000830152613909818461335a565b905092915050565b6000604082019050818103600083015261392b818561335a565b9050818103602083015261393f818461335a565b90509392505050565b600060208201905061395d60008301846133b8565b92915050565b6000602082019050818103600083015261397d8184613400565b905092915050565b6000602082019050818103600083015261399e8161346a565b9050919050565b600060208201905081810360008301526139be8161348d565b9050919050565b600060208201905081810360008301526139de816134b0565b9050919050565b600060208201905081810360008301526139fe816134d3565b9050919050565b60006020820190508181036000830152613a1e816134f6565b9050919050565b60006020820190508181036000830152613a3e81613519565b9050919050565b60006020820190508181036000830152613a5e8161353c565b9050919050565b60006020820190508181036000830152613a7e81613582565b9050919050565b60006020820190508181036000830152613a9e816135a5565b9050919050565b60006020820190508181036000830152613abe816135c8565b9050919050565b60006020820190508181036000830152613ade816135eb565b9050919050565b60006020820190508181036000830152613afe8161360e565b9050919050565b60006020820190508181036000830152613b1e81613654565b9050919050565b60006020820190508181036000830152613b3e81613677565b9050919050565b60006020820190508181036000830152613b5e8161369a565b9050919050565b60006020820190508181036000830152613b7e816136bd565b9050919050565b60006020820190508181036000830152613b9e81613703565b9050919050565b60006020820190508181036000830152613bbe81613726565b9050919050565b60006020820190508181036000830152613bde81613749565b9050919050565b60006020820190508181036000830152613bfe8161376c565b9050919050565b60006020820190508181036000830152613c1e8161378f565b9050919050565b6000602082019050613c3a60008301846137c1565b92915050565b6000604082019050613c5560008301856137c1565b613c6260208301846137c1565b9392505050565b6000613c73613c84565b9050613c7f8282614010565b919050565b6000604051905090565b600067ffffffffffffffff821115613ca957613ca8614175565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613cd557613cd4614175565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d0157613d00614175565b5b613d0a826141df565b9050602081019050919050565b600067ffffffffffffffff821115613d3257613d31614175565b5b613d3b826141df565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dda82613f85565b9150613de583613f85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e1a57613e1961408a565b5b828201905092915050565b6000613e3082613f8f565b9150613e3b83613f8f565b92508260ff03821115613e5157613e5061408a565b5b828201905092915050565b6000613e6782613f85565b9150613e7283613f85565b925082613e8257613e816140b9565b5b828204905092915050565b6000613e9882613f85565b9150613ea383613f85565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613edc57613edb61408a565b5b828202905092915050565b6000613ef282613f85565b9150613efd83613f85565b925082821015613f1057613f0f61408a565b5b828203905092915050565b6000613f2682613f65565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613fc9578082015181840152602081019050613fae565b83811115613fd8576000848401525b50505050565b60006002820490506001821680613ff657607f821691505b6020821081141561400a576140096140e8565b5b50919050565b614019826141df565b810181811067ffffffffffffffff8211171561403857614037614175565b5b80604052505050565b600061404c82613f85565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561407f5761407e61408a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156141c35760046000803e6141c06000516141f0565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206f662045746865722073656e74206973206e6f7420636f727260008201527f6563740000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f20706572207472616e73616374696f6e00000000000000000000000000000000600082015250565b7f496e76616c696420746f6b656e20696400000000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f596f75206d6179206f6e6c79206d696e7420757020746f200000000000000000600082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e6e6f74206d696e742030206265617273000000000000000000600082015250565b600060443d101561481f576148a2565b614827613c84565b60043d036004823e80513d602482011167ffffffffffffffff8211171561484f5750506148a2565b808201805167ffffffffffffffff81111561486d57505050506148a2565b80602083010160043d03850181111561488a5750505050506148a2565b61489982602001850186614010565b82955050505050505b90565b6148ae81613f1b565b81146148b957600080fd5b50565b6148c581613f2d565b81146148d057600080fd5b50565b6148dc81613f39565b81146148e757600080fd5b50565b6148f381613f85565b81146148fe57600080fd5b5056fea26469706673582212202bf9cbaea6441dd0ff8a5da95d0392549decd94915676e43dd85715239add87f64736f6c6343000807003368747470733a2f2f6265617273636c75626b6f662e6d7970696e6174612e636c6f75642f697066732f516d6645364e4d4b4342634a4d726350357a716d43783939614c444439716364344a3348366374775674393963342f7b69647d2e6a736f6e

Deployed Bytecode

0x6080604052600436106101c15760003560e01c80634e1273f4116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c514610644578063f242432a14610681578063f2fde38b146106aa578063f5298aca146106d3576101c1565b8063a22cb46514610588578063a75ba461146105b1578063aa6ca808146105dc578063bd85b03914610607576101c1565b80635e495d74116100d15780635e495d74146104e0578063715018a61461051d5780638da5cb5b1461053457806391b7f5ed1461055f576101c1565b80634e1273f41461043d5780634f558e791461047a57806351cff8d9146104b7576101c1565b806317b9ebec1161016457806328d8dae51161013e57806328d8dae5146103a45780632eb2c2d6146103cf57806336c5d724146103f85780633a75d12e14610421576101c1565b806317b9ebec14610325578063206e0d8e1461034e5780632291437c14610379576101c1565b806306fdde03116101a057806306fdde0314610269578063088a4ed0146102945780630e89341c146102bd5780630fb24991146102fa576101c1565b8062fdd58e146101c657806301ffc9a71461020357806302fe530514610240575b600080fd5b3480156101d257600080fd5b506101ed60048036038101906101e891906130a0565b6106fc565b6040516101fa9190613c25565b60405180910390f35b34801561020f57600080fd5b5061022a60048036038101906102259190613223565b6107c5565b6040516102379190613948565b60405180910390f35b34801561024c57600080fd5b506102676004803603810190610262919061327d565b6108a7565b005b34801561027557600080fd5b5061027e61092f565b60405161028b9190613963565b60405180910390f35b3480156102a057600080fd5b506102bb60048036038101906102b691906132c6565b6109bd565b005b3480156102c957600080fd5b506102e460048036038101906102df91906132c6565b610a43565b6040516102f19190613963565b60405180910390f35b34801561030657600080fd5b5061030f610ad7565b60405161031c9190613c25565b60405180910390f35b34801561033157600080fd5b5061034c600480360381019061034791906132f3565b610adc565b005b34801561035a57600080fd5b50610363610b8f565b6040516103709190613c25565b60405180910390f35b34801561038557600080fd5b5061038e610b94565b60405161039b9190613c25565b60405180910390f35b3480156103b057600080fd5b506103b9610b99565b6040516103c69190613c25565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190612efa565b610b9e565b005b34801561040457600080fd5b5061041f600480360381019061041a91906132c6565b610c3f565b005b61043b600480360381019061043691906131ab565b610d76565b005b34801561044957600080fd5b50610464600480360381019061045f9190613133565b610f8e565b60405161047191906138ef565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c91906132c6565b6110a7565b6040516104ae9190613948565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d99190612e8d565b6110bb565b005b3480156104ec57600080fd5b50610507600480360381019061050291906132c6565b61114a565b6040516105149190613c25565b60405180910390f35b34801561052957600080fd5b50610532611167565b005b34801561054057600080fd5b506105496111ef565b6040516105569190613812565b60405180910390f35b34801561056b57600080fd5b50610586600480360381019061058191906132c6565b611219565b005b34801561059457600080fd5b506105af60048036038101906105aa9190613060565b61129f565b005b3480156105bd57600080fd5b506105c66112b5565b6040516105d39190613c25565b60405180910390f35b3480156105e857600080fd5b506105f16112ba565b6040516105fe91906138ef565b60405180910390f35b34801561061357600080fd5b5061062e600480360381019061062991906132c6565b611312565b60405161063b9190613c25565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190612eba565b61132f565b6040516106789190613948565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190612fc9565b6113c3565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190612e8d565b611464565b005b3480156106df57600080fd5b506106fa60048036038101906106f591906130e0565b61155c565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561076d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610764906139c5565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a0575061089f826115a4565b5b9050919050565b6108af61160e565b73ffffffffffffffffffffffffffffffffffffffff166108cd6111ef565b73ffffffffffffffffffffffffffffffffffffffff1614610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90613b45565b60405180910390fd5b61092c81611616565b50565b6005805461093c90613fde565b80601f016020809104026020016040519081016040528092919081815260200182805461096890613fde565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b505050505081565b6109c561160e565b73ffffffffffffffffffffffffffffffffffffffff166109e36111ef565b73ffffffffffffffffffffffffffffffffffffffff1614610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3090613b45565b60405180910390fd5b8060078190555050565b606060028054610a5290613fde565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7e90613fde565b8015610acb5780601f10610aa057610100808354040283529160200191610acb565b820191906000526020600020905b815481529060010190602001808311610aae57829003601f168201915b50505050509050919050565b600481565b610ae461160e565b73ffffffffffffffffffffffffffffffffffffffff16610b026111ef565b73ffffffffffffffffffffffffffffffffffffffff1614610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f90613b45565b60405180910390fd5b600a829080600181540180825580915050600190039060005260206000200160009091909190915055610b8b8282611630565b5050565b600181565b600581565b600281565b610ba661160e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610bec5750610beb85610be661160e565b61132f565b5b610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290613ae5565b60405180910390fd5b610c38858585858561164c565b5050505050565b610c4761160e565b73ffffffffffffffffffffffffffffffffffffffff16610c656111ef565b73ffffffffffffffffffffffffffffffffffffffff1614610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb290613b45565b60405180910390fd5b600a805490508110610ccc57600080fd5b6000600a8281548110610ce257610ce1614146565b5b90600052602060002001549050600a6001600a80549050610d039190613ee7565b81548110610d1457610d13614146565b5b9060005260206000200154600a8381548110610d3357610d32614146565b5b9060005260206000200181905550600a805480610d5357610d52614117565b5b60019003818190600052602060002001600090559055610d7281611960565b5050565b60003490506000805b8451811015610dbe57610dab858281518110610d9e57610d9d614146565b5b602002602001015161197a565b8080610db690614041565b915050610d7f565b5060005b8451811015610e0457838181518110610dde57610ddd614146565b5b602002602001015182610df19190613dcf565b915080610dfd90614041565b9050610dc2565b5060008111610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90613c05565b60405180910390fd5b600081600654610e589190613e8d565b9050600754821115610e6b600754611a0e565b604051602001610e7b91906137d0565b60405160208183030381529060405290610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec29190613963565b60405180910390fd5b50808314610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590613a25565b60405180910390fd5b60005b8551811015610f86576000868281518110610f2f57610f2e614146565b5b602002602001015190506000868381518110610f4e57610f4d614146565b5b60200260200101519050610f7333838360405180602001604052806000815250611b97565b505080610f7f90614041565b9050610f11565b505050505050565b60608151835114610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90613ba5565b60405180910390fd5b6000835167ffffffffffffffff811115610ff157610ff0614175565b5b60405190808252806020026020018201604052801561101f5781602001602082028036833780820191505090505b50905060005b845181101561109c5761106c85828151811061104457611043614146565b5b602002602001015185838151811061105f5761105e614146565b5b60200260200101516106fc565b82828151811061107f5761107e614146565b5b6020026020010181815250508061109590614041565b9050611025565b508091505092915050565b6000806110b383611312565b119050919050565b6110c361160e565b73ffffffffffffffffffffffffffffffffffffffff166110e16111ef565b73ffffffffffffffffffffffffffffffffffffffff1614611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90613b45565b60405180910390fd5b60004790506111468282611c06565b5050565b600060096000838152602001908152602001600020549050919050565b61116f61160e565b73ffffffffffffffffffffffffffffffffffffffff1661118d6111ef565b73ffffffffffffffffffffffffffffffffffffffff16146111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da90613b45565b60405180910390fd5b6111ed6000611cfa565b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61122161160e565b73ffffffffffffffffffffffffffffffffffffffff1661123f6111ef565b73ffffffffffffffffffffffffffffffffffffffff1614611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90613b45565b60405180910390fd5b8060068190555050565b6112b16112aa61160e565b8383611dc0565b5050565b600381565b6060600a80548060200260200160405190810160405280929190818152602001828054801561130857602002820191906000526020600020905b8154815260200190600101908083116112f4575b5050505050905090565b600060036000838152602001908152602001600020549050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113cb61160e565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061141157506114108561140b61160e565b61132f565b5b611450576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144790613a45565b60405180910390fd5b61145d8585858585611f2d565b5050505050565b61146c61160e565b73ffffffffffffffffffffffffffffffffffffffff1661148a6111ef565b73ffffffffffffffffffffffffffffffffffffffff16146114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d790613b45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611550576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611547906139e5565b60405180910390fd5b61155981611cfa565b50565b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461159457600080fd5b61159f8383836121af565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806002908051906020019061162c929190612b65565b5050565b8060096000848152602001908152602001600020819055505050565b8151835114611690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168790613bc5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790613ac5565b60405180910390fd5b600061170a61160e565b905061171a8187878787876123cc565b60005b84518110156118cb57600085828151811061173b5761173a614146565b5b60200260200101519050600085838151811061175a57611759614146565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f290613b25565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118b09190613dcf565b92505081905550505050806118c490614041565b905061171d565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611942929190613911565b60405180910390a46119588187878787876123e2565b505050505050565b600960008281526020019081526020016000206000905550565b6000805b600a805490508110156119c957600a818154811061199f5761199e614146565b5b90600052602060002001548314156119b657600191505b80806119c190614041565b91505061197e565b5080611a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0190613a65565b60405180910390fd5b5050565b60606000821415611a56576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b92565b600082905060005b60008214611a88578080611a7190614041565b915050600a82611a819190613e5c565b9150611a5e565b60008167ffffffffffffffff811115611aa457611aa3614175565b5b6040519080825280601f01601f191660200182016040528015611ad65781602001600182028036833780820191505090505b50905060008290505b60008614611b8a57600181611af49190613ee7565b90506000600a8088611b069190613e5c565b611b109190613e8d565b87611b1b9190613ee7565b6030611b279190613e25565b905060008160f81b905080848481518110611b4557611b44614146565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88611b819190613e5c565b97505050611adf565b819450505050505b919050565b6009600084815260200190815260200160002054611bb484611312565b10611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb90613b65565b60405180910390fd5b611c00848484846125c9565b50505050565b80471015611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4090613aa5565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611c6f906137fd565b60006040518083038185875af1925050503d8060008114611cac576040519150601f19603f3d011682016040523d82523d6000602084013e611cb1565b606091505b5050905080611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec90613a85565b60405180910390fd5b505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2690613b85565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f209190613948565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9490613ac5565b60405180910390fd5b6000611fa761160e565b9050611fc7818787611fb88861275f565b611fc18861275f565b876123cc565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508381101561205e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205590613b25565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121139190613dcf565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612190929190613c40565b60405180910390a46121a68288888888886127d9565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561221f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221690613b05565b60405180910390fd5b600061222961160e565b90506122598185600061223b8761275f565b6122448761275f565b604051806020016040528060008152506123cc565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156122f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e790613a05565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516123bd929190613c40565b60405180910390a45050505050565b6123da8686868686866129c0565b505050505050565b6124018473ffffffffffffffffffffffffffffffffffffffff16612b3a565b156125c1578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161244795949392919061382d565b602060405180830381600087803b15801561246157600080fd5b505af192505050801561249257506040513d601f19601f8201168201806040525081019061248f9190613250565b60015b6125385761249e6141a4565b806308c379a014156124fb57506124b361480f565b806124be57506124fd565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f29190613963565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252f90613985565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146125bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b6906139a5565b60405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263090613be5565b60405180910390fd5b600061264361160e565b9050612664816000876126558861275f565b61265e8861275f565b876123cc565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126c39190613dcf565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612741929190613c40565b60405180910390a4612758816000878787876127d9565b5050505050565b60606000600167ffffffffffffffff81111561277e5761277d614175565b5b6040519080825280602002602001820160405280156127ac5781602001602082028036833780820191505090505b50905082816000815181106127c4576127c3614146565b5b60200260200101818152505080915050919050565b6127f88473ffffffffffffffffffffffffffffffffffffffff16612b3a565b156129b8578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161283e959493929190613895565b602060405180830381600087803b15801561285857600080fd5b505af192505050801561288957506040513d601f19601f820116820180604052508101906128869190613250565b60015b61292f576128956141a4565b806308c379a014156128f257506128aa61480f565b806128b557506128f4565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e99190613963565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292690613985565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad906139a5565b60405180910390fd5b505b505050505050565b6129ce868686868686612b5d565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a805760005b8351811015612a7e57828181518110612a2257612a21614146565b5b602002602001015160036000868481518110612a4157612a40614146565b5b602002602001015181526020019081526020016000206000828254612a669190613dcf565b9250508190555080612a7790614041565b9050612a06565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b325760005b8351811015612b3057828181518110612ad457612ad3614146565b5b602002602001015160036000868481518110612af357612af2614146565b5b602002602001015181526020019081526020016000206000828254612b189190613ee7565b9250508190555080612b2990614041565b9050612ab8565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b828054612b7190613fde565b90600052602060002090601f016020900481019282612b935760008555612bda565b82601f10612bac57805160ff1916838001178555612bda565b82800160010185558215612bda579182015b82811115612bd9578251825591602001919060010190612bbe565b5b509050612be79190612beb565b5090565b5b80821115612c04576000816000905550600101612bec565b5090565b6000612c1b612c1684613c8e565b613c69565b90508083825260208201905082856020860282011115612c3e57612c3d6141cb565b5b60005b85811015612c6e5781612c548882612d6c565b845260208401935060208301925050600181019050612c41565b5050509392505050565b6000612c8b612c8684613cba565b613c69565b90508083825260208201905082856020860282011115612cae57612cad6141cb565b5b60005b85811015612cde5781612cc48882612e78565b845260208401935060208301925050600181019050612cb1565b5050509392505050565b6000612cfb612cf684613ce6565b613c69565b905082815260208101848484011115612d1757612d166141d0565b5b612d22848285613f9c565b509392505050565b6000612d3d612d3884613d17565b613c69565b905082815260208101848484011115612d5957612d586141d0565b5b612d64848285613f9c565b509392505050565b600081359050612d7b816148a5565b92915050565b600082601f830112612d9657612d956141c6565b5b8135612da6848260208601612c08565b91505092915050565b600082601f830112612dc457612dc36141c6565b5b8135612dd4848260208601612c78565b91505092915050565b600081359050612dec816148bc565b92915050565b600081359050612e01816148d3565b92915050565b600081519050612e16816148d3565b92915050565b600082601f830112612e3157612e306141c6565b5b8135612e41848260208601612ce8565b91505092915050565b600082601f830112612e5f57612e5e6141c6565b5b8135612e6f848260208601612d2a565b91505092915050565b600081359050612e87816148ea565b92915050565b600060208284031215612ea357612ea26141da565b5b6000612eb184828501612d6c565b91505092915050565b60008060408385031215612ed157612ed06141da565b5b6000612edf85828601612d6c565b9250506020612ef085828601612d6c565b9150509250929050565b600080600080600060a08688031215612f1657612f156141da565b5b6000612f2488828901612d6c565b9550506020612f3588828901612d6c565b945050604086013567ffffffffffffffff811115612f5657612f556141d5565b5b612f6288828901612daf565b935050606086013567ffffffffffffffff811115612f8357612f826141d5565b5b612f8f88828901612daf565b925050608086013567ffffffffffffffff811115612fb057612faf6141d5565b5b612fbc88828901612e1c565b9150509295509295909350565b600080600080600060a08688031215612fe557612fe46141da565b5b6000612ff388828901612d6c565b955050602061300488828901612d6c565b945050604061301588828901612e78565b935050606061302688828901612e78565b925050608086013567ffffffffffffffff811115613047576130466141d5565b5b61305388828901612e1c565b9150509295509295909350565b60008060408385031215613077576130766141da565b5b600061308585828601612d6c565b925050602061309685828601612ddd565b9150509250929050565b600080604083850312156130b7576130b66141da565b5b60006130c585828601612d6c565b92505060206130d685828601612e78565b9150509250929050565b6000806000606084860312156130f9576130f86141da565b5b600061310786828701612d6c565b935050602061311886828701612e78565b925050604061312986828701612e78565b9150509250925092565b6000806040838503121561314a576131496141da565b5b600083013567ffffffffffffffff811115613168576131676141d5565b5b61317485828601612d81565b925050602083013567ffffffffffffffff811115613195576131946141d5565b5b6131a185828601612daf565b9150509250929050565b600080604083850312156131c2576131c16141da565b5b600083013567ffffffffffffffff8111156131e0576131df6141d5565b5b6131ec85828601612daf565b925050602083013567ffffffffffffffff81111561320d5761320c6141d5565b5b61321985828601612daf565b9150509250929050565b600060208284031215613239576132386141da565b5b600061324784828501612df2565b91505092915050565b600060208284031215613266576132656141da565b5b600061327484828501612e07565b91505092915050565b600060208284031215613293576132926141da565b5b600082013567ffffffffffffffff8111156132b1576132b06141d5565b5b6132bd84828501612e4a565b91505092915050565b6000602082840312156132dc576132db6141da565b5b60006132ea84828501612e78565b91505092915050565b6000806040838503121561330a576133096141da565b5b600061331885828601612e78565b925050602061332985828601612e78565b9150509250929050565b600061333f83836137b2565b60208301905092915050565b61335481613f1b565b82525050565b600061336582613d58565b61336f8185613d86565b935061337a83613d48565b8060005b838110156133ab5781516133928882613333565b975061339d83613d79565b92505060018101905061337e565b5085935050505092915050565b6133c181613f2d565b82525050565b60006133d282613d63565b6133dc8185613d97565b93506133ec818560208601613fab565b6133f5816141df565b840191505092915050565b600061340b82613d6e565b6134158185613db3565b9350613425818560208601613fab565b61342e816141df565b840191505092915050565b600061344482613d6e565b61344e8185613dc4565b935061345e818560208601613fab565b80840191505092915050565b6000613477603483613db3565b9150613482826141fd565b604082019050919050565b600061349a602883613db3565b91506134a58261424c565b604082019050919050565b60006134bd602b83613db3565b91506134c88261429b565b604082019050919050565b60006134e0602683613db3565b91506134eb826142ea565b604082019050919050565b6000613503602483613db3565b915061350e82614339565b604082019050919050565b6000613526602383613db3565b915061353182614388565b604082019050919050565b6000613549602983613db3565b9150613554826143d7565b604082019050919050565b600061356c601083613dc4565b915061357782614426565b601082019050919050565b600061358f601083613db3565b915061359a8261444f565b602082019050919050565b60006135b2603a83613db3565b91506135bd82614478565b604082019050919050565b60006135d5601d83613db3565b91506135e0826144c7565b602082019050919050565b60006135f8602583613db3565b9150613603826144f0565b604082019050919050565b600061361b603283613db3565b91506136268261453f565b604082019050919050565b600061363e601883613dc4565b91506136498261458e565b601882019050919050565b6000613661602383613db3565b915061366c826145b7565b604082019050919050565b6000613684602a83613db3565b915061368f82614606565b604082019050919050565b60006136a7602083613db3565b91506136b282614655565b602082019050919050565b60006136ca601683613db3565b91506136d58261467e565b602082019050919050565b60006136ed600083613da8565b91506136f8826146a7565b600082019050919050565b6000613710602983613db3565b915061371b826146aa565b604082019050919050565b6000613733602983613db3565b915061373e826146f9565b604082019050919050565b6000613756602883613db3565b915061376182614748565b604082019050919050565b6000613779602183613db3565b915061378482614797565b604082019050919050565b600061379c601783613db3565b91506137a7826147e6565b602082019050919050565b6137bb81613f85565b82525050565b6137ca81613f85565b82525050565b60006137db82613631565b91506137e78284613439565b91506137f28261355f565b915081905092915050565b6000613808826136e0565b9150819050919050565b6000602082019050613827600083018461334b565b92915050565b600060a082019050613842600083018861334b565b61384f602083018761334b565b8181036040830152613861818661335a565b90508181036060830152613875818561335a565b9050818103608083015261388981846133c7565b90509695505050505050565b600060a0820190506138aa600083018861334b565b6138b7602083018761334b565b6138c460408301866137c1565b6138d160608301856137c1565b81810360808301526138e381846133c7565b90509695505050505050565b60006020820190508181036000830152613909818461335a565b905092915050565b6000604082019050818103600083015261392b818561335a565b9050818103602083015261393f818461335a565b90509392505050565b600060208201905061395d60008301846133b8565b92915050565b6000602082019050818103600083015261397d8184613400565b905092915050565b6000602082019050818103600083015261399e8161346a565b9050919050565b600060208201905081810360008301526139be8161348d565b9050919050565b600060208201905081810360008301526139de816134b0565b9050919050565b600060208201905081810360008301526139fe816134d3565b9050919050565b60006020820190508181036000830152613a1e816134f6565b9050919050565b60006020820190508181036000830152613a3e81613519565b9050919050565b60006020820190508181036000830152613a5e8161353c565b9050919050565b60006020820190508181036000830152613a7e81613582565b9050919050565b60006020820190508181036000830152613a9e816135a5565b9050919050565b60006020820190508181036000830152613abe816135c8565b9050919050565b60006020820190508181036000830152613ade816135eb565b9050919050565b60006020820190508181036000830152613afe8161360e565b9050919050565b60006020820190508181036000830152613b1e81613654565b9050919050565b60006020820190508181036000830152613b3e81613677565b9050919050565b60006020820190508181036000830152613b5e8161369a565b9050919050565b60006020820190508181036000830152613b7e816136bd565b9050919050565b60006020820190508181036000830152613b9e81613703565b9050919050565b60006020820190508181036000830152613bbe81613726565b9050919050565b60006020820190508181036000830152613bde81613749565b9050919050565b60006020820190508181036000830152613bfe8161376c565b9050919050565b60006020820190508181036000830152613c1e8161378f565b9050919050565b6000602082019050613c3a60008301846137c1565b92915050565b6000604082019050613c5560008301856137c1565b613c6260208301846137c1565b9392505050565b6000613c73613c84565b9050613c7f8282614010565b919050565b6000604051905090565b600067ffffffffffffffff821115613ca957613ca8614175565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613cd557613cd4614175565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d0157613d00614175565b5b613d0a826141df565b9050602081019050919050565b600067ffffffffffffffff821115613d3257613d31614175565b5b613d3b826141df565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dda82613f85565b9150613de583613f85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e1a57613e1961408a565b5b828201905092915050565b6000613e3082613f8f565b9150613e3b83613f8f565b92508260ff03821115613e5157613e5061408a565b5b828201905092915050565b6000613e6782613f85565b9150613e7283613f85565b925082613e8257613e816140b9565b5b828204905092915050565b6000613e9882613f85565b9150613ea383613f85565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613edc57613edb61408a565b5b828202905092915050565b6000613ef282613f85565b9150613efd83613f85565b925082821015613f1057613f0f61408a565b5b828203905092915050565b6000613f2682613f65565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613fc9578082015181840152602081019050613fae565b83811115613fd8576000848401525b50505050565b60006002820490506001821680613ff657607f821691505b6020821081141561400a576140096140e8565b5b50919050565b614019826141df565b810181811067ffffffffffffffff8211171561403857614037614175565b5b80604052505050565b600061404c82613f85565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561407f5761407e61408a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156141c35760046000803e6141c06000516141f0565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206f662045746865722073656e74206973206e6f7420636f727260008201527f6563740000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f20706572207472616e73616374696f6e00000000000000000000000000000000600082015250565b7f496e76616c696420746f6b656e20696400000000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f596f75206d6179206f6e6c79206d696e7420757020746f200000000000000000600082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b50565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e6e6f74206d696e742030206265617273000000000000000000600082015250565b600060443d101561481f576148a2565b614827613c84565b60043d036004823e80513d602482011167ffffffffffffffff8211171561484f5750506148a2565b808201805167ffffffffffffffff81111561486d57505050506148a2565b80602083010160043d03850181111561488a5750505050506148a2565b61489982602001850186614010565b82955050505050505b90565b6148ae81613f1b565b81146148b957600080fd5b50565b6148c581613f2d565b81146148d057600080fd5b50565b6148dc81613f39565b81146148e757600080fd5b50565b6148f381613f85565b81146148fe57600080fd5b5056fea26469706673582212202bf9cbaea6441dd0ff8a5da95d0392549decd94915676e43dd85715239add87f64736f6c63430008070033

Deployed Bytecode Sourcemap

50451:5022:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23412:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22435:310;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53198:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50526:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53386:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23156:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50730:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52481:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50583:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50781:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50633:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25351:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52634:276;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51505:968;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23809:524;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37851:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53023:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53511:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2641;;;;;;;;;;;;;:::i;:::-;;1990:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53295:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24406:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50685:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52918:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37640:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24633:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24873:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2899:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53622:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23412:231;23498:7;23545:1;23526:21;;:7;:21;;;;23518:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;23613:9;:13;23623:2;23613:13;;;;;;;;;;;:22;23627:7;23613:22;;;;;;;;;;;;;;;;23606:29;;23412:231;;;;:::o;22435:310::-;22537:4;22589:26;22574:41;;;:11;:41;;;;:110;;;;22647:37;22632:52;;;:11;:52;;;;22574:110;:163;;;;22701:36;22725:11;22701:23;:36::i;:::-;22574:163;22554:183;;22435:310;;;:::o;53198:89::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53264:15:::1;53272:6;53264:7;:15::i;:::-;53198:89:::0;:::o;50526:48::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53386:117::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53482:13:::1;53463:16;:32;;;;53386:117:::0;:::o;23156:105::-;23216:13;23249:4;23242:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23156:105;;;:::o;50730:44::-;50773:1;50730:44;:::o;52481:145::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52558:12:::1;52576:2;52558:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52590:28;52604:2;52608:9;52590:13;:28::i;:::-;52481:145:::0;;:::o;50583:43::-;50625:1;50583:43;:::o;50781:42::-;50822:1;50781:42;:::o;50633:45::-;50677:1;50633:45;:::o;25351:442::-;25592:12;:10;:12::i;:::-;25584:20;;:4;:20;;;:60;;;;25608:36;25625:4;25631:12;:10;:12::i;:::-;25608:16;:36::i;:::-;25584:60;25562:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;25733:52;25756:4;25762:2;25766:3;25771:7;25780:4;25733:22;:52::i;:::-;25351:442;;;;;:::o;52634:276::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52711:12:::1;:19;;;;52703:5;:27;52695:36;;;::::0;::::1;;52742:10;52755:12;52768:5;52755:19;;;;;;;;:::i;:::-;;;;;;;;;;52742:32;;52807:12;52840:1;52820:12;:19;;;;:21;;;;:::i;:::-;52807:35;;;;;;;;:::i;:::-;;;;;;;;;;52785:12;52798:5;52785:19;;;;;;;;:::i;:::-;;;;;;;;;:57;;;;52853:12;:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52882:20;52899:2;52882:16;:20::i;:::-;52684:226;52634:276:::0;:::o;51505:968::-;51619:13;51635:9;51619:25;;51655:19;51724:9;51719:89;51743:3;:10;51739:1;:14;51719:89;;;51774:22;51789:3;51793:1;51789:6;;;;;;;;:::i;:::-;;;;;;;;51774:14;:22::i;:::-;51755:3;;;;;:::i;:::-;;;;51719:89;;;;51825:9;51820:106;51844:3;:10;51840:1;:14;51820:106;;;51904:7;51912:1;51904:10;;;;;;;;:::i;:::-;;;;;;;;51890:11;:24;;;;:::i;:::-;51876:38;;51856:3;;;;:::i;:::-;;;51820:106;;;;51960:1;51946:11;:15;51938:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;52002:18;52032:11;52023:6;;:20;;;;:::i;:::-;52002:41;;52079:16;;52064:11;:31;;52148:27;52158:16;;52148:9;:27::i;:::-;52103:93;;;;;;;;:::i;:::-;;;;;;;;;;;;;52056:142;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;52226:10;52217:5;:19;52209:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;52294:9;52289:177;52313:3;:10;52309:1;:14;52289:177;;;52345:10;52358:3;52362:1;52358:6;;;;;;;;:::i;:::-;;;;;;;;52345:19;;52379:14;52396:7;52404:1;52396:10;;;;;;;;:::i;:::-;;;;;;;;52379:27;;52421:33;52427:10;52439:2;52443:6;52421:33;;;;;;;;;;;;:5;:33::i;:::-;52330:136;;52325:3;;;;:::i;:::-;;;52289:177;;;;51598:875;;;51505:968;;:::o;23809:524::-;23965:16;24026:3;:10;24007:8;:15;:29;23999:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;24095:30;24142:8;:15;24128:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24095:63;;24176:9;24171:122;24195:8;:15;24191:1;:19;24171:122;;;24251:30;24261:8;24270:1;24261:11;;;;;;;;:::i;:::-;;;;;;;;24274:3;24278:1;24274:6;;;;;;;;:::i;:::-;;;;;;;;24251:9;:30::i;:::-;24232:13;24246:1;24232:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;24212:3;;;;:::i;:::-;;;24171:122;;;;24312:13;24305:20;;;23809:524;;;;:::o;37851:122::-;37908:4;37964:1;37932:29;37958:2;37932:25;:29::i;:::-;:33;37925:40;;37851:122;;;:::o;53023:167::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53088:15:::1;53106:21;53088:39;;53138:44;53164:7;53174;53138:17;:44::i;:::-;53077:113;53023:167:::0;:::o;53511:103::-;53565:7;53592:10;:14;53603:2;53592:14;;;;;;;;;;;;53585:21;;53511:103;;;:::o;2641:::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2706:30:::1;2733:1;2706:18;:30::i;:::-;2641:103::o:0;1990:87::-;2036:7;2063:6;;;;;;;;;;;2056:13;;1990:87;:::o;53295:83::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53365:5:::1;53356:6;:14;;;;53295:83:::0;:::o;24406:155::-;24501:52;24520:12;:10;:12::i;:::-;24534:8;24544;24501:18;:52::i;:::-;24406:155;;:::o;50685:38::-;50722:1;50685:38;:::o;52918:97::-;52959:16;52995:12;52988:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52918:97;:::o;37640:113::-;37702:7;37729:12;:16;37742:2;37729:16;;;;;;;;;;;;37722:23;;37640:113;;;:::o;24633:168::-;24732:4;24756:18;:27;24775:7;24756:27;;;;;;;;;;;;;;;:37;24784:8;24756:37;;;;;;;;;;;;;;;;;;;;;;;;;24749:44;;24633:168;;;;:::o;24873:401::-;25089:12;:10;:12::i;:::-;25081:20;;:4;:20;;;:60;;;;25105:36;25122:4;25128:12;:10;:12::i;:::-;25105:16;:36::i;:::-;25081:60;25059:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;25221:45;25239:4;25245:2;25249;25253:6;25261:4;25221:17;:45::i;:::-;24873:401;;;;;:::o;2899:201::-;2221:12;:10;:12::i;:::-;2210:23;;:7;:5;:7::i;:::-;:23;;;2202:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3008:1:::1;2988:22;;:8;:22;;;;2980:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3064:28;3083:8;3064:18;:28::i;:::-;2899:201:::0;:::o;53622:152::-;53721:7;53707:21;;:10;:21;;;53699:30;;;;;;53740:26;53746:7;53755:2;53759:6;53740:5;:26::i;:::-;53622:152;;;:::o;13743:157::-;13828:4;13867:25;13852:40;;;:11;:40;;;;13845:47;;13743:157;;;:::o;714:98::-;767:7;794:10;787:17;;714:98;:::o;29353:88::-;29427:6;29420:4;:13;;;;;;;;;;;;:::i;:::-;;29353:88;:::o;53782:102::-;53870:6;53853:10;:14;53864:2;53853:14;;;;;;;;;;;:23;;;;53782:102;;:::o;27435:1074::-;27662:7;:14;27648:3;:10;:28;27640:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;27754:1;27740:16;;:2;:16;;;;27732:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;27811:16;27830:12;:10;:12::i;:::-;27811:31;;27855:60;27876:8;27886:4;27892:2;27896:3;27901:7;27910:4;27855:20;:60::i;:::-;27933:9;27928:421;27952:3;:10;27948:1;:14;27928:421;;;27984:10;27997:3;28001:1;27997:6;;;;;;;;:::i;:::-;;;;;;;;27984:19;;28018:14;28035:7;28043:1;28035:10;;;;;;;;:::i;:::-;;;;;;;;28018:27;;28062:19;28084:9;:13;28094:2;28084:13;;;;;;;;;;;:19;28098:4;28084:19;;;;;;;;;;;;;;;;28062:41;;28141:6;28126:11;:21;;28118:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;28274:6;28260:11;:20;28238:9;:13;28248:2;28238:13;;;;;;;;;;;:19;28252:4;28238:19;;;;;;;;;;;;;;;:42;;;;28331:6;28310:9;:13;28320:2;28310:13;;;;;;;;;;;:17;28324:2;28310:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;27969:380;;;27964:3;;;;:::i;:::-;;;27928:421;;;;28396:2;28366:47;;28390:4;28366:47;;28380:8;28366:47;;;28400:3;28405:7;28366:47;;;;;;;:::i;:::-;;;;;;;;28426:75;28462:8;28472:4;28478:2;28482:3;28487:7;28496:4;28426:35;:75::i;:::-;27629:880;27435:1074;;;;;:::o;53892:87::-;53957:10;:14;53968:2;53957:14;;;;;;;;;;;53950:21;;;53892:87;:::o;53987:309::-;54048:12;54090:6;54085:147;54104:12;:19;;;;54100:1;:23;54085:147;;;54155:12;54168:1;54155:15;;;;;;;;:::i;:::-;;;;;;;;;;54149:2;:21;54145:76;;;54201:4;54191:14;;54145:76;54125:3;;;;;:::i;:::-;;;;54085:147;;;;54260:7;54252:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;54037:259;53987:309;:::o;54894:574::-;54945:27;54995:1;54989:2;:7;54985:50;;;55013:10;;;;;;;;;;;;;;;;;;;;;54985:50;55045:6;55054:2;55045:11;;55067:8;55086:69;55098:1;55093;:6;55086:69;;55116:5;;;;;:::i;:::-;;;;55141:2;55136:7;;;;;:::i;:::-;;;55086:69;;;55165:17;55195:3;55185:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55165:34;;55210:6;55219:3;55210:12;;55233:198;55246:1;55240:2;:7;55233:198;;55270:1;55268;:3;;;;:::i;:::-;55264:7;;55286:10;55326:2;55321;55316;:7;;;;:::i;:::-;:12;;;;:::i;:::-;55311:2;:17;;;;:::i;:::-;55300:2;:29;;;;:::i;:::-;55286:44;;55345:9;55364:4;55357:12;;55345:24;;55394:2;55384:4;55389:1;55384:7;;;;;;;;:::i;:::-;;;;;:12;;;;;;;;;;;55417:2;55411:8;;;;;:::i;:::-;;;55249:182;;55233:198;;;55455:4;55441:19;;;;;;54894:574;;;;:::o;54304:283::-;54489:10;:14;54500:2;54489:14;;;;;;;;;;;;54471:15;54483:2;54471:11;:15::i;:::-;:32;54463:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;54541:38;54553:7;54562:2;54566:6;54574:4;54541:11;:38::i;:::-;54304:283;;;;:::o;5952:317::-;6067:6;6042:21;:31;;6034:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6121:12;6139:9;:14;;6161:6;6139:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6120:52;;;6191:7;6183:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;6023:246;5952:317;;:::o;3260:191::-;3334:16;3353:6;;;;;;;;;;;3334:25;;3379:8;3370:6;;:17;;;;;;;;;;;;;;;;;;3434:8;3403:40;;3424:8;3403:40;;;;;;;;;;;;3323:128;3260:191;:::o;33621:331::-;33776:8;33767:17;;:5;:17;;;;33759:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33879:8;33841:18;:25;33860:5;33841:25;;;;;;;;;;;;;;;:35;33867:8;33841:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33925:8;33903:41;;33918:5;33903:41;;;33935:8;33903:41;;;;;;:::i;:::-;;;;;;;;33621:331;;;:::o;26257:820::-;26459:1;26445:16;;:2;:16;;;;26437:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;26516:16;26535:12;:10;:12::i;:::-;26516:31;;26560:96;26581:8;26591:4;26597:2;26601:21;26619:2;26601:17;:21::i;:::-;26624:25;26642:6;26624:17;:25::i;:::-;26651:4;26560:20;:96::i;:::-;26669:19;26691:9;:13;26701:2;26691:13;;;;;;;;;;;:19;26705:4;26691:19;;;;;;;;;;;;;;;;26669:41;;26744:6;26729:11;:21;;26721:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26869:6;26855:11;:20;26833:9;:13;26843:2;26833:13;;;;;;;;;;;:19;26847:4;26833:19;;;;;;;;;;;;;;;:42;;;;26918:6;26897:9;:13;26907:2;26897:13;;;;;;;;;;;:17;26911:2;26897:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;26973:2;26942:46;;26967:4;26942:46;;26957:8;26942:46;;;26977:2;26981:6;26942:46;;;;;;;:::i;:::-;;;;;;;;27001:68;27032:8;27042:4;27048:2;27052;27056:6;27064:4;27001:30;:68::i;:::-;26426:651;;26257:820;;;;;:::o;31737:648::-;31880:1;31864:18;;:4;:18;;;;31856:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31935:16;31954:12;:10;:12::i;:::-;31935:31;;31979:102;32000:8;32010:4;32024:1;32028:21;32046:2;32028:17;:21::i;:::-;32051:25;32069:6;32051:17;:25::i;:::-;31979:102;;;;;;;;;;;;:20;:102::i;:::-;32094:19;32116:9;:13;32126:2;32116:13;;;;;;;;;;;:19;32130:4;32116:19;;;;;;;;;;;;;;;;32094:41;;32169:6;32154:11;:21;;32146:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;32288:6;32274:11;:20;32252:9;:13;32262:2;32252:13;;;;;;;;;;;:19;32266:4;32252:19;;;;;;;;;;;;;;;:42;;;;32362:1;32323:54;;32348:4;32323:54;;32338:8;32323:54;;;32366:2;32370:6;32323:54;;;;;;;:::i;:::-;;;;;;;;31845:540;;31737:648;;;:::o;54595:291::-;54812:66;54839:8;54849:4;54855:2;54859:3;54864:7;54873:4;54812:26;:66::i;:::-;54595:291;;;;;;:::o;35889:813::-;36129:15;:2;:13;;;:15::i;:::-;36125:570;;;36182:2;36165:43;;;36209:8;36219:4;36225:3;36230:7;36239:4;36165:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36161:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;36557:6;36550:14;;;;;;;;;;;:::i;:::-;;;;;;;;36161:523;;;36606:62;;;;;;;;;;:::i;:::-;;;;;;;;36161:523;36338:48;;;36326:60;;;:8;:60;;;;36322:159;;36411:50;;;;;;;;;;:::i;:::-;;;;;;;;36322:159;36245:251;36125:570;35889:813;;;;;;:::o;29827:569::-;29994:1;29980:16;;:2;:16;;;;29972:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30047:16;30066:12;:10;:12::i;:::-;30047:31;;30091:102;30112:8;30130:1;30134:2;30138:21;30156:2;30138:17;:21::i;:::-;30161:25;30179:6;30161:17;:25::i;:::-;30188:4;30091:20;:102::i;:::-;30227:6;30206:9;:13;30216:2;30206:13;;;;;;;;;;;:17;30220:2;30206:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;30286:2;30249:52;;30282:1;30249:52;;30264:8;30249:52;;;30290:2;30294:6;30249:52;;;;;;;:::i;:::-;;;;;;;;30314:74;30345:8;30363:1;30367:2;30371;30375:6;30383:4;30314:30;:74::i;:::-;29961:435;29827:569;;;;:::o;36710:198::-;36776:16;36805:22;36844:1;36830:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36805:41;;36868:7;36857:5;36863:1;36857:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;36895:5;36888:12;;;36710:198;;;:::o;35137:744::-;35352:15;:2;:13;;;:15::i;:::-;35348:526;;;35405:2;35388:38;;;35427:8;35437:4;35443:2;35447:6;35455:4;35388:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35384:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;35736:6;35729:14;;;;;;;;;;;:::i;:::-;;;;;;;;35384:479;;;35785:62;;;;;;;;;;:::i;:::-;;;;;;;;35384:479;35522:43;;;35510:55;;;:8;:55;;;;35506:154;;35590:50;;;;;;;;;;:::i;:::-;;;;;;;;35506:154;35461:214;35348:526;35137:744;;;;;;:::o;38048:655::-;38287:66;38314:8;38324:4;38330:2;38334:3;38339:7;38348:4;38287:26;:66::i;:::-;38386:1;38370:18;;:4;:18;;;38366:160;;;38410:9;38405:110;38429:3;:10;38425:1;:14;38405:110;;;38489:7;38497:1;38489:10;;;;;;;;:::i;:::-;;;;;;;;38465:12;:20;38478:3;38482:1;38478:6;;;;;;;;:::i;:::-;;;;;;;;38465:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;38441:3;;;;:::i;:::-;;;38405:110;;;;38366:160;38556:1;38542:16;;:2;:16;;;38538:158;;;38580:9;38575:110;38599:3;:10;38595:1;:14;38575:110;;;38659:7;38667:1;38659:10;;;;;;;;:::i;:::-;;;;;;;;38635:12;:20;38648:3;38652:1;38648:6;;;;;;;;:::i;:::-;;;;;;;;38635:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;38611:3;;;;:::i;:::-;;;38575:110;;;;38538:158;38048:655;;;;;;:::o;4691:326::-;4751:4;5008:1;4986:7;:19;;;:23;4979:30;;4691:326;;;:::o;34908:221::-;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:137::-;3446:5;3484:6;3471:20;3462:29;;3500:32;3526:5;3500:32;:::i;:::-;3401:137;;;;:::o;3544:141::-;3600:5;3631:6;3625:13;3616:22;;3647:32;3673:5;3647:32;:::i;:::-;3544:141;;;;:::o;3704:338::-;3759:5;3808:3;3801:4;3793:6;3789:17;3785:27;3775:122;;3816:79;;:::i;:::-;3775:122;3933:6;3920:20;3958:78;4032:3;4024:6;4017:4;4009:6;4005:17;3958:78;:::i;:::-;3949:87;;3765:277;3704:338;;;;:::o;4062:340::-;4118:5;4167:3;4160:4;4152:6;4148:17;4144:27;4134:122;;4175:79;;:::i;:::-;4134:122;4292:6;4279:20;4317:79;4392:3;4384:6;4377:4;4369:6;4365:17;4317:79;:::i;:::-;4308:88;;4124:278;4062:340;;;;:::o;4408:139::-;4454:5;4492:6;4479:20;4470:29;;4508:33;4535:5;4508:33;:::i;:::-;4408:139;;;;:::o;4553:329::-;4612:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:119;;;4667:79;;:::i;:::-;4629:119;4787:1;4812:53;4857:7;4848:6;4837:9;4833:22;4812:53;:::i;:::-;4802:63;;4758:117;4553:329;;;;:::o;4888:474::-;4956:6;4964;5013:2;5001:9;4992:7;4988:23;4984:32;4981:119;;;5019:79;;:::i;:::-;4981:119;5139:1;5164:53;5209:7;5200:6;5189:9;5185:22;5164:53;:::i;:::-;5154:63;;5110:117;5266:2;5292:53;5337:7;5328:6;5317:9;5313:22;5292:53;:::i;:::-;5282:63;;5237:118;4888:474;;;;;:::o;5368:1509::-;5522:6;5530;5538;5546;5554;5603:3;5591:9;5582:7;5578:23;5574:33;5571:120;;;5610:79;;:::i;:::-;5571:120;5730:1;5755:53;5800:7;5791:6;5780:9;5776:22;5755:53;:::i;:::-;5745:63;;5701:117;5857:2;5883:53;5928:7;5919:6;5908:9;5904:22;5883:53;:::i;:::-;5873:63;;5828:118;6013:2;6002:9;5998:18;5985:32;6044:18;6036:6;6033:30;6030:117;;;6066:79;;:::i;:::-;6030:117;6171:78;6241:7;6232:6;6221:9;6217:22;6171:78;:::i;:::-;6161:88;;5956:303;6326:2;6315:9;6311:18;6298:32;6357:18;6349:6;6346:30;6343:117;;;6379:79;;:::i;:::-;6343:117;6484:78;6554:7;6545:6;6534:9;6530:22;6484:78;:::i;:::-;6474:88;;6269:303;6639:3;6628:9;6624:19;6611:33;6671:18;6663:6;6660:30;6657:117;;;6693:79;;:::i;:::-;6657:117;6798:62;6852:7;6843:6;6832:9;6828:22;6798:62;:::i;:::-;6788:72;;6582:288;5368:1509;;;;;;;;:::o;6883:1089::-;6987:6;6995;7003;7011;7019;7068:3;7056:9;7047:7;7043:23;7039:33;7036:120;;;7075:79;;:::i;:::-;7036:120;7195:1;7220:53;7265:7;7256:6;7245:9;7241:22;7220:53;:::i;:::-;7210:63;;7166:117;7322:2;7348:53;7393:7;7384:6;7373:9;7369:22;7348:53;:::i;:::-;7338:63;;7293:118;7450:2;7476:53;7521:7;7512:6;7501:9;7497:22;7476:53;:::i;:::-;7466:63;;7421:118;7578:2;7604:53;7649:7;7640:6;7629:9;7625:22;7604:53;:::i;:::-;7594:63;;7549:118;7734:3;7723:9;7719:19;7706:33;7766:18;7758:6;7755:30;7752:117;;;7788:79;;:::i;:::-;7752:117;7893:62;7947:7;7938:6;7927:9;7923:22;7893:62;:::i;:::-;7883:72;;7677:288;6883:1089;;;;;;;;:::o;7978:468::-;8043:6;8051;8100:2;8088:9;8079:7;8075:23;8071:32;8068:119;;;8106:79;;:::i;:::-;8068:119;8226:1;8251:53;8296:7;8287:6;8276:9;8272:22;8251:53;:::i;:::-;8241:63;;8197:117;8353:2;8379:50;8421:7;8412:6;8401:9;8397:22;8379:50;:::i;:::-;8369:60;;8324:115;7978:468;;;;;:::o;8452:474::-;8520:6;8528;8577:2;8565:9;8556:7;8552:23;8548:32;8545:119;;;8583:79;;:::i;:::-;8545:119;8703:1;8728:53;8773:7;8764:6;8753:9;8749:22;8728:53;:::i;:::-;8718:63;;8674:117;8830:2;8856:53;8901:7;8892:6;8881:9;8877:22;8856:53;:::i;:::-;8846:63;;8801:118;8452:474;;;;;:::o;8932:619::-;9009:6;9017;9025;9074:2;9062:9;9053:7;9049:23;9045:32;9042:119;;;9080:79;;:::i;:::-;9042:119;9200:1;9225:53;9270:7;9261:6;9250:9;9246:22;9225:53;:::i;:::-;9215:63;;9171:117;9327:2;9353:53;9398:7;9389:6;9378:9;9374:22;9353:53;:::i;:::-;9343:63;;9298:118;9455:2;9481:53;9526:7;9517:6;9506:9;9502:22;9481:53;:::i;:::-;9471:63;;9426:118;8932:619;;;;;:::o;9557:894::-;9675:6;9683;9732:2;9720:9;9711:7;9707:23;9703:32;9700:119;;;9738:79;;:::i;:::-;9700:119;9886:1;9875:9;9871:17;9858:31;9916:18;9908:6;9905:30;9902:117;;;9938:79;;:::i;:::-;9902:117;10043:78;10113:7;10104:6;10093:9;10089:22;10043:78;:::i;:::-;10033:88;;9829:302;10198:2;10187:9;10183:18;10170:32;10229:18;10221:6;10218:30;10215:117;;;10251:79;;:::i;:::-;10215:117;10356:78;10426:7;10417:6;10406:9;10402:22;10356:78;:::i;:::-;10346:88;;10141:303;9557:894;;;;;:::o;10457:::-;10575:6;10583;10632:2;10620:9;10611:7;10607:23;10603:32;10600:119;;;10638:79;;:::i;:::-;10600:119;10786:1;10775:9;10771:17;10758:31;10816:18;10808:6;10805:30;10802:117;;;10838:79;;:::i;:::-;10802:117;10943:78;11013:7;11004:6;10993:9;10989:22;10943:78;:::i;:::-;10933:88;;10729:302;11098:2;11087:9;11083:18;11070:32;11129:18;11121:6;11118:30;11115:117;;;11151:79;;:::i;:::-;11115:117;11256:78;11326:7;11317:6;11306:9;11302:22;11256:78;:::i;:::-;11246:88;;11041:303;10457:894;;;;;:::o;11357:327::-;11415:6;11464:2;11452:9;11443:7;11439:23;11435:32;11432:119;;;11470:79;;:::i;:::-;11432:119;11590:1;11615:52;11659:7;11650:6;11639:9;11635:22;11615:52;:::i;:::-;11605:62;;11561:116;11357:327;;;;:::o;11690:349::-;11759:6;11808:2;11796:9;11787:7;11783:23;11779:32;11776:119;;;11814:79;;:::i;:::-;11776:119;11934:1;11959:63;12014:7;12005:6;11994:9;11990:22;11959:63;:::i;:::-;11949:73;;11905:127;11690:349;;;;:::o;12045:509::-;12114:6;12163:2;12151:9;12142:7;12138:23;12134:32;12131:119;;;12169:79;;:::i;:::-;12131:119;12317:1;12306:9;12302:17;12289:31;12347:18;12339:6;12336:30;12333:117;;;12369:79;;:::i;:::-;12333:117;12474:63;12529:7;12520:6;12509:9;12505:22;12474:63;:::i;:::-;12464:73;;12260:287;12045:509;;;;:::o;12560:329::-;12619:6;12668:2;12656:9;12647:7;12643:23;12639:32;12636:119;;;12674:79;;:::i;:::-;12636:119;12794:1;12819:53;12864:7;12855:6;12844:9;12840:22;12819:53;:::i;:::-;12809:63;;12765:117;12560:329;;;;:::o;12895:474::-;12963:6;12971;13020:2;13008:9;12999:7;12995:23;12991:32;12988:119;;;13026:79;;:::i;:::-;12988:119;13146:1;13171:53;13216:7;13207:6;13196:9;13192:22;13171:53;:::i;:::-;13161:63;;13117:117;13273:2;13299:53;13344:7;13335:6;13324:9;13320:22;13299:53;:::i;:::-;13289:63;;13244:118;12895:474;;;;;:::o;13375:179::-;13444:10;13465:46;13507:3;13499:6;13465:46;:::i;:::-;13543:4;13538:3;13534:14;13520:28;;13375:179;;;;:::o;13560:118::-;13647:24;13665:5;13647:24;:::i;:::-;13642:3;13635:37;13560:118;;:::o;13714:732::-;13833:3;13862:54;13910:5;13862:54;:::i;:::-;13932:86;14011:6;14006:3;13932:86;:::i;:::-;13925:93;;14042:56;14092:5;14042:56;:::i;:::-;14121:7;14152:1;14137:284;14162:6;14159:1;14156:13;14137:284;;;14238:6;14232:13;14265:63;14324:3;14309:13;14265:63;:::i;:::-;14258:70;;14351:60;14404:6;14351:60;:::i;:::-;14341:70;;14197:224;14184:1;14181;14177:9;14172:14;;14137:284;;;14141:14;14437:3;14430:10;;13838:608;;;13714:732;;;;:::o;14452:109::-;14533:21;14548:5;14533:21;:::i;:::-;14528:3;14521:34;14452:109;;:::o;14567:360::-;14653:3;14681:38;14713:5;14681:38;:::i;:::-;14735:70;14798:6;14793:3;14735:70;:::i;:::-;14728:77;;14814:52;14859:6;14854:3;14847:4;14840:5;14836:16;14814:52;:::i;:::-;14891:29;14913:6;14891:29;:::i;:::-;14886:3;14882:39;14875:46;;14657:270;14567:360;;;;:::o;14933:364::-;15021:3;15049:39;15082:5;15049:39;:::i;:::-;15104:71;15168:6;15163:3;15104:71;:::i;:::-;15097:78;;15184:52;15229:6;15224:3;15217:4;15210:5;15206:16;15184:52;:::i;:::-;15261:29;15283:6;15261:29;:::i;:::-;15256:3;15252:39;15245:46;;15025:272;14933:364;;;;:::o;15303:377::-;15409:3;15437:39;15470:5;15437:39;:::i;:::-;15492:89;15574:6;15569:3;15492:89;:::i;:::-;15485:96;;15590:52;15635:6;15630:3;15623:4;15616:5;15612:16;15590:52;:::i;:::-;15667:6;15662:3;15658:16;15651:23;;15413:267;15303:377;;;;:::o;15686:366::-;15828:3;15849:67;15913:2;15908:3;15849:67;:::i;:::-;15842:74;;15925:93;16014:3;15925:93;:::i;:::-;16043:2;16038:3;16034:12;16027:19;;15686:366;;;:::o;16058:::-;16200:3;16221:67;16285:2;16280:3;16221:67;:::i;:::-;16214:74;;16297:93;16386:3;16297:93;:::i;:::-;16415:2;16410:3;16406:12;16399:19;;16058:366;;;:::o;16430:::-;16572:3;16593:67;16657:2;16652:3;16593:67;:::i;:::-;16586:74;;16669:93;16758:3;16669:93;:::i;:::-;16787:2;16782:3;16778:12;16771:19;;16430:366;;;:::o;16802:::-;16944:3;16965:67;17029:2;17024:3;16965:67;:::i;:::-;16958:74;;17041:93;17130:3;17041:93;:::i;:::-;17159:2;17154:3;17150:12;17143:19;;16802:366;;;:::o;17174:::-;17316:3;17337:67;17401:2;17396:3;17337:67;:::i;:::-;17330:74;;17413:93;17502:3;17413:93;:::i;:::-;17531:2;17526:3;17522:12;17515:19;;17174:366;;;:::o;17546:::-;17688:3;17709:67;17773:2;17768:3;17709:67;:::i;:::-;17702:74;;17785:93;17874:3;17785:93;:::i;:::-;17903:2;17898:3;17894:12;17887:19;;17546:366;;;:::o;17918:::-;18060:3;18081:67;18145:2;18140:3;18081:67;:::i;:::-;18074:74;;18157:93;18246:3;18157:93;:::i;:::-;18275:2;18270:3;18266:12;18259:19;;17918:366;;;:::o;18290:402::-;18450:3;18471:85;18553:2;18548:3;18471:85;:::i;:::-;18464:92;;18565:93;18654:3;18565:93;:::i;:::-;18683:2;18678:3;18674:12;18667:19;;18290:402;;;:::o;18698:366::-;18840:3;18861:67;18925:2;18920:3;18861:67;:::i;:::-;18854:74;;18937:93;19026:3;18937:93;:::i;:::-;19055:2;19050:3;19046:12;19039:19;;18698:366;;;:::o;19070:::-;19212:3;19233:67;19297:2;19292:3;19233:67;:::i;:::-;19226:74;;19309:93;19398:3;19309:93;:::i;:::-;19427:2;19422:3;19418:12;19411:19;;19070:366;;;:::o;19442:::-;19584:3;19605:67;19669:2;19664:3;19605:67;:::i;:::-;19598:74;;19681:93;19770:3;19681:93;:::i;:::-;19799:2;19794:3;19790:12;19783:19;;19442:366;;;:::o;19814:::-;19956:3;19977:67;20041:2;20036:3;19977:67;:::i;:::-;19970:74;;20053:93;20142:3;20053:93;:::i;:::-;20171:2;20166:3;20162:12;20155:19;;19814:366;;;:::o;20186:::-;20328:3;20349:67;20413:2;20408:3;20349:67;:::i;:::-;20342:74;;20425:93;20514:3;20425:93;:::i;:::-;20543:2;20538:3;20534:12;20527:19;;20186:366;;;:::o;20558:402::-;20718:3;20739:85;20821:2;20816:3;20739:85;:::i;:::-;20732:92;;20833:93;20922:3;20833:93;:::i;:::-;20951:2;20946:3;20942:12;20935:19;;20558:402;;;:::o;20966:366::-;21108:3;21129:67;21193:2;21188:3;21129:67;:::i;:::-;21122:74;;21205:93;21294:3;21205:93;:::i;:::-;21323:2;21318:3;21314:12;21307:19;;20966:366;;;:::o;21338:::-;21480:3;21501:67;21565:2;21560:3;21501:67;:::i;:::-;21494:74;;21577:93;21666:3;21577:93;:::i;:::-;21695:2;21690:3;21686:12;21679:19;;21338:366;;;:::o;21710:::-;21852:3;21873:67;21937:2;21932:3;21873:67;:::i;:::-;21866:74;;21949:93;22038:3;21949:93;:::i;:::-;22067:2;22062:3;22058:12;22051:19;;21710:366;;;:::o;22082:::-;22224:3;22245:67;22309:2;22304:3;22245:67;:::i;:::-;22238:74;;22321:93;22410:3;22321:93;:::i;:::-;22439:2;22434:3;22430:12;22423:19;;22082:366;;;:::o;22454:398::-;22613:3;22634:83;22715:1;22710:3;22634:83;:::i;:::-;22627:90;;22726:93;22815:3;22726:93;:::i;:::-;22844:1;22839:3;22835:11;22828:18;;22454:398;;;:::o;22858:366::-;23000:3;23021:67;23085:2;23080:3;23021:67;:::i;:::-;23014:74;;23097:93;23186:3;23097:93;:::i;:::-;23215:2;23210:3;23206:12;23199:19;;22858:366;;;:::o;23230:::-;23372:3;23393:67;23457:2;23452:3;23393:67;:::i;:::-;23386:74;;23469:93;23558:3;23469:93;:::i;:::-;23587:2;23582:3;23578:12;23571:19;;23230:366;;;:::o;23602:::-;23744:3;23765:67;23829:2;23824:3;23765:67;:::i;:::-;23758:74;;23841:93;23930:3;23841:93;:::i;:::-;23959:2;23954:3;23950:12;23943:19;;23602:366;;;:::o;23974:::-;24116:3;24137:67;24201:2;24196:3;24137:67;:::i;:::-;24130:74;;24213:93;24302:3;24213:93;:::i;:::-;24331:2;24326:3;24322:12;24315:19;;23974:366;;;:::o;24346:::-;24488:3;24509:67;24573:2;24568:3;24509:67;:::i;:::-;24502:74;;24585:93;24674:3;24585:93;:::i;:::-;24703:2;24698:3;24694:12;24687:19;;24346:366;;;:::o;24718:108::-;24795:24;24813:5;24795:24;:::i;:::-;24790:3;24783:37;24718:108;;:::o;24832:118::-;24919:24;24937:5;24919:24;:::i;:::-;24914:3;24907:37;24832:118;;:::o;24956:807::-;25290:3;25312:148;25456:3;25312:148;:::i;:::-;25305:155;;25477:95;25568:3;25559:6;25477:95;:::i;:::-;25470:102;;25589:148;25733:3;25589:148;:::i;:::-;25582:155;;25754:3;25747:10;;24956:807;;;;:::o;25769:379::-;25953:3;25975:147;26118:3;25975:147;:::i;:::-;25968:154;;26139:3;26132:10;;25769:379;;;:::o;26154:222::-;26247:4;26285:2;26274:9;26270:18;26262:26;;26298:71;26366:1;26355:9;26351:17;26342:6;26298:71;:::i;:::-;26154:222;;;;:::o;26382:1053::-;26705:4;26743:3;26732:9;26728:19;26720:27;;26757:71;26825:1;26814:9;26810:17;26801:6;26757:71;:::i;:::-;26838:72;26906:2;26895:9;26891:18;26882:6;26838:72;:::i;:::-;26957:9;26951:4;26947:20;26942:2;26931:9;26927:18;26920:48;26985:108;27088:4;27079:6;26985:108;:::i;:::-;26977:116;;27140:9;27134:4;27130:20;27125:2;27114:9;27110:18;27103:48;27168:108;27271:4;27262:6;27168:108;:::i;:::-;27160:116;;27324:9;27318:4;27314:20;27308:3;27297:9;27293:19;27286:49;27352:76;27423:4;27414:6;27352:76;:::i;:::-;27344:84;;26382:1053;;;;;;;;:::o;27441:751::-;27664:4;27702:3;27691:9;27687:19;27679:27;;27716:71;27784:1;27773:9;27769:17;27760:6;27716:71;:::i;:::-;27797:72;27865:2;27854:9;27850:18;27841:6;27797:72;:::i;:::-;27879;27947:2;27936:9;27932:18;27923:6;27879:72;:::i;:::-;27961;28029:2;28018:9;28014:18;28005:6;27961:72;:::i;:::-;28081:9;28075:4;28071:20;28065:3;28054:9;28050:19;28043:49;28109:76;28180:4;28171:6;28109:76;:::i;:::-;28101:84;;27441:751;;;;;;;;:::o;28198:373::-;28341:4;28379:2;28368:9;28364:18;28356:26;;28428:9;28422:4;28418:20;28414:1;28403:9;28399:17;28392:47;28456:108;28559:4;28550:6;28456:108;:::i;:::-;28448:116;;28198:373;;;;:::o;28577:634::-;28798:4;28836:2;28825:9;28821:18;28813:26;;28885:9;28879:4;28875:20;28871:1;28860:9;28856:17;28849:47;28913:108;29016:4;29007:6;28913:108;:::i;:::-;28905:116;;29068:9;29062:4;29058:20;29053:2;29042:9;29038:18;29031:48;29096:108;29199:4;29190:6;29096:108;:::i;:::-;29088:116;;28577:634;;;;;:::o;29217:210::-;29304:4;29342:2;29331:9;29327:18;29319:26;;29355:65;29417:1;29406:9;29402:17;29393:6;29355:65;:::i;:::-;29217:210;;;;:::o;29433:313::-;29546:4;29584:2;29573:9;29569:18;29561:26;;29633:9;29627:4;29623:20;29619:1;29608:9;29604:17;29597:47;29661:78;29734:4;29725:6;29661:78;:::i;:::-;29653:86;;29433:313;;;;:::o;29752:419::-;29918:4;29956:2;29945:9;29941:18;29933:26;;30005:9;29999:4;29995:20;29991:1;29980:9;29976:17;29969:47;30033:131;30159:4;30033:131;:::i;:::-;30025:139;;29752:419;;;:::o;30177:::-;30343:4;30381:2;30370:9;30366:18;30358:26;;30430:9;30424:4;30420:20;30416:1;30405:9;30401:17;30394:47;30458:131;30584:4;30458:131;:::i;:::-;30450:139;;30177:419;;;:::o;30602:::-;30768:4;30806:2;30795:9;30791:18;30783:26;;30855:9;30849:4;30845:20;30841:1;30830:9;30826:17;30819:47;30883:131;31009:4;30883:131;:::i;:::-;30875:139;;30602:419;;;:::o;31027:::-;31193:4;31231:2;31220:9;31216:18;31208:26;;31280:9;31274:4;31270:20;31266:1;31255:9;31251:17;31244:47;31308:131;31434:4;31308:131;:::i;:::-;31300:139;;31027:419;;;:::o;31452:::-;31618:4;31656:2;31645:9;31641:18;31633:26;;31705:9;31699:4;31695:20;31691:1;31680:9;31676:17;31669:47;31733:131;31859:4;31733:131;:::i;:::-;31725:139;;31452:419;;;:::o;31877:::-;32043:4;32081:2;32070:9;32066:18;32058:26;;32130:9;32124:4;32120:20;32116:1;32105:9;32101:17;32094:47;32158:131;32284:4;32158:131;:::i;:::-;32150:139;;31877:419;;;:::o;32302:::-;32468:4;32506:2;32495:9;32491:18;32483:26;;32555:9;32549:4;32545:20;32541:1;32530:9;32526:17;32519:47;32583:131;32709:4;32583:131;:::i;:::-;32575:139;;32302:419;;;:::o;32727:::-;32893:4;32931:2;32920:9;32916:18;32908:26;;32980:9;32974:4;32970:20;32966:1;32955:9;32951:17;32944:47;33008:131;33134:4;33008:131;:::i;:::-;33000:139;;32727:419;;;:::o;33152:::-;33318:4;33356:2;33345:9;33341:18;33333:26;;33405:9;33399:4;33395:20;33391:1;33380:9;33376:17;33369:47;33433:131;33559:4;33433:131;:::i;:::-;33425:139;;33152:419;;;:::o;33577:::-;33743:4;33781:2;33770:9;33766:18;33758:26;;33830:9;33824:4;33820:20;33816:1;33805:9;33801:17;33794:47;33858:131;33984:4;33858:131;:::i;:::-;33850:139;;33577:419;;;:::o;34002:::-;34168:4;34206:2;34195:9;34191:18;34183:26;;34255:9;34249:4;34245:20;34241:1;34230:9;34226:17;34219:47;34283:131;34409:4;34283:131;:::i;:::-;34275:139;;34002:419;;;:::o;34427:::-;34593:4;34631:2;34620:9;34616:18;34608:26;;34680:9;34674:4;34670:20;34666:1;34655:9;34651:17;34644:47;34708:131;34834:4;34708:131;:::i;:::-;34700:139;;34427:419;;;:::o;34852:::-;35018:4;35056:2;35045:9;35041:18;35033:26;;35105:9;35099:4;35095:20;35091:1;35080:9;35076:17;35069:47;35133:131;35259:4;35133:131;:::i;:::-;35125:139;;34852:419;;;:::o;35277:::-;35443:4;35481:2;35470:9;35466:18;35458:26;;35530:9;35524:4;35520:20;35516:1;35505:9;35501:17;35494:47;35558:131;35684:4;35558:131;:::i;:::-;35550:139;;35277:419;;;:::o;35702:::-;35868:4;35906:2;35895:9;35891:18;35883:26;;35955:9;35949:4;35945:20;35941:1;35930:9;35926:17;35919:47;35983:131;36109:4;35983:131;:::i;:::-;35975:139;;35702:419;;;:::o;36127:::-;36293:4;36331:2;36320:9;36316:18;36308:26;;36380:9;36374:4;36370:20;36366:1;36355:9;36351:17;36344:47;36408:131;36534:4;36408:131;:::i;:::-;36400:139;;36127:419;;;:::o;36552:::-;36718:4;36756:2;36745:9;36741:18;36733:26;;36805:9;36799:4;36795:20;36791:1;36780:9;36776:17;36769:47;36833:131;36959:4;36833:131;:::i;:::-;36825:139;;36552:419;;;:::o;36977:::-;37143:4;37181:2;37170:9;37166:18;37158:26;;37230:9;37224:4;37220:20;37216:1;37205:9;37201:17;37194:47;37258:131;37384:4;37258:131;:::i;:::-;37250:139;;36977:419;;;:::o;37402:::-;37568:4;37606:2;37595:9;37591:18;37583:26;;37655:9;37649:4;37645:20;37641:1;37630:9;37626:17;37619:47;37683:131;37809:4;37683:131;:::i;:::-;37675:139;;37402:419;;;:::o;37827:::-;37993:4;38031:2;38020:9;38016:18;38008:26;;38080:9;38074:4;38070:20;38066:1;38055:9;38051:17;38044:47;38108:131;38234:4;38108:131;:::i;:::-;38100:139;;37827:419;;;:::o;38252:::-;38418:4;38456:2;38445:9;38441:18;38433:26;;38505:9;38499:4;38495:20;38491:1;38480:9;38476:17;38469:47;38533:131;38659:4;38533:131;:::i;:::-;38525:139;;38252:419;;;:::o;38677:222::-;38770:4;38808:2;38797:9;38793:18;38785:26;;38821:71;38889:1;38878:9;38874:17;38865:6;38821:71;:::i;:::-;38677:222;;;;:::o;38905:332::-;39026:4;39064:2;39053:9;39049:18;39041:26;;39077:71;39145:1;39134:9;39130:17;39121:6;39077:71;:::i;:::-;39158:72;39226:2;39215:9;39211:18;39202:6;39158:72;:::i;:::-;38905:332;;;;;:::o;39243:129::-;39277:6;39304:20;;:::i;:::-;39294:30;;39333:33;39361:4;39353:6;39333:33;:::i;:::-;39243:129;;;:::o;39378:75::-;39411:6;39444:2;39438:9;39428:19;;39378:75;:::o;39459:311::-;39536:4;39626:18;39618:6;39615:30;39612:56;;;39648:18;;:::i;:::-;39612:56;39698:4;39690:6;39686:17;39678:25;;39758:4;39752;39748:15;39740:23;;39459:311;;;:::o;39776:::-;39853:4;39943:18;39935:6;39932:30;39929:56;;;39965:18;;:::i;:::-;39929:56;40015:4;40007:6;40003:17;39995:25;;40075:4;40069;40065:15;40057:23;;39776:311;;;:::o;40093:307::-;40154:4;40244:18;40236:6;40233:30;40230:56;;;40266:18;;:::i;:::-;40230:56;40304:29;40326:6;40304:29;:::i;:::-;40296:37;;40388:4;40382;40378:15;40370:23;;40093:307;;;:::o;40406:308::-;40468:4;40558:18;40550:6;40547:30;40544:56;;;40580:18;;:::i;:::-;40544:56;40618:29;40640:6;40618:29;:::i;:::-;40610:37;;40702:4;40696;40692:15;40684:23;;40406:308;;;:::o;40720:132::-;40787:4;40810:3;40802:11;;40840:4;40835:3;40831:14;40823:22;;40720:132;;;:::o;40858:114::-;40925:6;40959:5;40953:12;40943:22;;40858:114;;;:::o;40978:98::-;41029:6;41063:5;41057:12;41047:22;;40978:98;;;:::o;41082:99::-;41134:6;41168:5;41162:12;41152:22;;41082:99;;;:::o;41187:113::-;41257:4;41289;41284:3;41280:14;41272:22;;41187:113;;;:::o;41306:184::-;41405:11;41439:6;41434:3;41427:19;41479:4;41474:3;41470:14;41455:29;;41306:184;;;;:::o;41496:168::-;41579:11;41613:6;41608:3;41601:19;41653:4;41648:3;41644:14;41629:29;;41496:168;;;;:::o;41670:147::-;41771:11;41808:3;41793:18;;41670:147;;;;:::o;41823:169::-;41907:11;41941:6;41936:3;41929:19;41981:4;41976:3;41972:14;41957:29;;41823:169;;;;:::o;41998:148::-;42100:11;42137:3;42122:18;;41998:148;;;;:::o;42152:305::-;42192:3;42211:20;42229:1;42211:20;:::i;:::-;42206:25;;42245:20;42263:1;42245:20;:::i;:::-;42240:25;;42399:1;42331:66;42327:74;42324:1;42321:81;42318:107;;;42405:18;;:::i;:::-;42318:107;42449:1;42446;42442:9;42435:16;;42152:305;;;;:::o;42463:237::-;42501:3;42520:18;42536:1;42520:18;:::i;:::-;42515:23;;42552:18;42568:1;42552:18;:::i;:::-;42547:23;;42642:1;42636:4;42632:12;42629:1;42626:19;42623:45;;;42648:18;;:::i;:::-;42623:45;42692:1;42689;42685:9;42678:16;;42463:237;;;;:::o;42706:185::-;42746:1;42763:20;42781:1;42763:20;:::i;:::-;42758:25;;42797:20;42815:1;42797:20;:::i;:::-;42792:25;;42836:1;42826:35;;42841:18;;:::i;:::-;42826:35;42883:1;42880;42876:9;42871:14;;42706:185;;;;:::o;42897:348::-;42937:7;42960:20;42978:1;42960:20;:::i;:::-;42955:25;;42994:20;43012:1;42994:20;:::i;:::-;42989:25;;43182:1;43114:66;43110:74;43107:1;43104:81;43099:1;43092:9;43085:17;43081:105;43078:131;;;43189:18;;:::i;:::-;43078:131;43237:1;43234;43230:9;43219:20;;42897:348;;;;:::o;43251:191::-;43291:4;43311:20;43329:1;43311:20;:::i;:::-;43306:25;;43345:20;43363:1;43345:20;:::i;:::-;43340:25;;43384:1;43381;43378:8;43375:34;;;43389:18;;:::i;:::-;43375:34;43434:1;43431;43427:9;43419:17;;43251:191;;;;:::o;43448:96::-;43485:7;43514:24;43532:5;43514:24;:::i;:::-;43503:35;;43448:96;;;:::o;43550:90::-;43584:7;43627:5;43620:13;43613:21;43602:32;;43550:90;;;:::o;43646:149::-;43682:7;43722:66;43715:5;43711:78;43700:89;;43646:149;;;:::o;43801:126::-;43838:7;43878:42;43871:5;43867:54;43856:65;;43801:126;;;:::o;43933:77::-;43970:7;43999:5;43988:16;;43933:77;;;:::o;44016:86::-;44051:7;44091:4;44084:5;44080:16;44069:27;;44016:86;;;:::o;44108:154::-;44192:6;44187:3;44182;44169:30;44254:1;44245:6;44240:3;44236:16;44229:27;44108:154;;;:::o;44268:307::-;44336:1;44346:113;44360:6;44357:1;44354:13;44346:113;;;44445:1;44440:3;44436:11;44430:18;44426:1;44421:3;44417:11;44410:39;44382:2;44379:1;44375:10;44370:15;;44346:113;;;44477:6;44474:1;44471:13;44468:101;;;44557:1;44548:6;44543:3;44539:16;44532:27;44468:101;44317:258;44268:307;;;:::o;44581:320::-;44625:6;44662:1;44656:4;44652:12;44642:22;;44709:1;44703:4;44699:12;44730:18;44720:81;;44786:4;44778:6;44774:17;44764:27;;44720:81;44848:2;44840:6;44837:14;44817:18;44814:38;44811:84;;;44867:18;;:::i;:::-;44811:84;44632:269;44581:320;;;:::o;44907:281::-;44990:27;45012:4;44990:27;:::i;:::-;44982:6;44978:40;45120:6;45108:10;45105:22;45084:18;45072:10;45069:34;45066:62;45063:88;;;45131:18;;:::i;:::-;45063:88;45171:10;45167:2;45160:22;44950:238;44907:281;;:::o;45194:233::-;45233:3;45256:24;45274:5;45256:24;:::i;:::-;45247:33;;45302:66;45295:5;45292:77;45289:103;;;45372:18;;:::i;:::-;45289:103;45419:1;45412:5;45408:13;45401:20;;45194:233;;;:::o;45433:180::-;45481:77;45478:1;45471:88;45578:4;45575:1;45568:15;45602:4;45599:1;45592:15;45619:180;45667:77;45664:1;45657:88;45764:4;45761:1;45754:15;45788:4;45785:1;45778:15;45805:180;45853:77;45850:1;45843:88;45950:4;45947:1;45940:15;45974:4;45971:1;45964:15;45991:180;46039:77;46036:1;46029:88;46136:4;46133:1;46126:15;46160:4;46157:1;46150:15;46177:180;46225:77;46222:1;46215:88;46322:4;46319:1;46312:15;46346:4;46343:1;46336:15;46363:180;46411:77;46408:1;46401:88;46508:4;46505:1;46498:15;46532:4;46529:1;46522:15;46549:183;46584:3;46622:1;46604:16;46601:23;46598:128;;;46660:1;46657;46654;46639:23;46682:34;46713:1;46707:8;46682:34;:::i;:::-;46675:41;;46598:128;46549:183;:::o;46738:117::-;46847:1;46844;46837:12;46861:117;46970:1;46967;46960:12;46984:117;47093:1;47090;47083:12;47107:117;47216:1;47213;47206:12;47230:117;47339:1;47336;47329:12;47353:102;47394:6;47445:2;47441:7;47436:2;47429:5;47425:14;47421:28;47411:38;;47353:102;;;:::o;47461:106::-;47505:8;47554:5;47549:3;47545:15;47524:36;;47461:106;;;:::o;47573:239::-;47713:34;47709:1;47701:6;47697:14;47690:58;47782:22;47777:2;47769:6;47765:15;47758:47;47573:239;:::o;47818:227::-;47958:34;47954:1;47946:6;47942:14;47935:58;48027:10;48022:2;48014:6;48010:15;48003:35;47818:227;:::o;48051:230::-;48191:34;48187:1;48179:6;48175:14;48168:58;48260:13;48255:2;48247:6;48243:15;48236:38;48051:230;:::o;48287:225::-;48427:34;48423:1;48415:6;48411:14;48404:58;48496:8;48491:2;48483:6;48479:15;48472:33;48287:225;:::o;48518:223::-;48658:34;48654:1;48646:6;48642:14;48635:58;48727:6;48722:2;48714:6;48710:15;48703:31;48518:223;:::o;48747:222::-;48887:34;48883:1;48875:6;48871:14;48864:58;48956:5;48951:2;48943:6;48939:15;48932:30;48747:222;:::o;48975:228::-;49115:34;49111:1;49103:6;49099:14;49092:58;49184:11;49179:2;49171:6;49167:15;49160:36;48975:228;:::o;49209:166::-;49349:18;49345:1;49337:6;49333:14;49326:42;49209:166;:::o;49381:::-;49521:18;49517:1;49509:6;49505:14;49498:42;49381:166;:::o;49553:245::-;49693:34;49689:1;49681:6;49677:14;49670:58;49762:28;49757:2;49749:6;49745:15;49738:53;49553:245;:::o;49804:179::-;49944:31;49940:1;49932:6;49928:14;49921:55;49804:179;:::o;49989:224::-;50129:34;50125:1;50117:6;50113:14;50106:58;50198:7;50193:2;50185:6;50181:15;50174:32;49989:224;:::o;50219:237::-;50359:34;50355:1;50347:6;50343:14;50336:58;50428:20;50423:2;50415:6;50411:15;50404:45;50219:237;:::o;50462:174::-;50602:26;50598:1;50590:6;50586:14;50579:50;50462:174;:::o;50642:222::-;50782:34;50778:1;50770:6;50766:14;50759:58;50851:5;50846:2;50838:6;50834:15;50827:30;50642:222;:::o;50870:229::-;51010:34;51006:1;50998:6;50994:14;50987:58;51079:12;51074:2;51066:6;51062:15;51055:37;50870:229;:::o;51105:182::-;51245:34;51241:1;51233:6;51229:14;51222:58;51105:182;:::o;51293:172::-;51433:24;51429:1;51421:6;51417:14;51410:48;51293:172;:::o;51471:114::-;;:::o;51591:228::-;51731:34;51727:1;51719:6;51715:14;51708:58;51800:11;51795:2;51787:6;51783:15;51776:36;51591:228;:::o;51825:::-;51965:34;51961:1;51953:6;51949:14;51942:58;52034:11;52029:2;52021:6;52017:15;52010:36;51825:228;:::o;52059:227::-;52199:34;52195:1;52187:6;52183:14;52176:58;52268:10;52263:2;52255:6;52251:15;52244:35;52059:227;:::o;52292:220::-;52432:34;52428:1;52420:6;52416:14;52409:58;52501:3;52496:2;52488:6;52484:15;52477:28;52292:220;:::o;52518:173::-;52658:25;52654:1;52646:6;52642:14;52635:49;52518:173;:::o;52697:711::-;52736:3;52774:4;52756:16;52753:26;52750:39;;;52782:5;;52750:39;52811:20;;:::i;:::-;52886:1;52868:16;52864:24;52861:1;52855:4;52840:49;52919:4;52913:11;53018:16;53011:4;53003:6;52999:17;52996:39;52963:18;52955:6;52952:30;52936:113;52933:146;;;53064:5;;;;52933:146;53110:6;53104:4;53100:17;53146:3;53140:10;53173:18;53165:6;53162:30;53159:43;;;53195:5;;;;;;53159:43;53243:6;53236:4;53231:3;53227:14;53223:27;53302:1;53284:16;53280:24;53274:4;53270:35;53265:3;53262:44;53259:57;;;53309:5;;;;;;;53259:57;53326;53374:6;53368:4;53364:17;53356:6;53352:30;53346:4;53326:57;:::i;:::-;53399:3;53392:10;;52740:668;;;;;52697:711;;:::o;53414:122::-;53487:24;53505:5;53487:24;:::i;:::-;53480:5;53477:35;53467:63;;53526:1;53523;53516:12;53467:63;53414:122;:::o;53542:116::-;53612:21;53627:5;53612:21;:::i;:::-;53605:5;53602:32;53592:60;;53648:1;53645;53638:12;53592:60;53542:116;:::o;53664:120::-;53736:23;53753:5;53736:23;:::i;:::-;53729:5;53726:34;53716:62;;53774:1;53771;53764:12;53716:62;53664:120;:::o;53790:122::-;53863:24;53881:5;53863:24;:::i;:::-;53856:5;53853:35;53843:63;;53902:1;53899;53892:12;53843:63;53790:122;:::o

Swarm Source

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