ETH Price: $2,970.08 (-4.03%)
Gas: 2 Gwei

Token

 

Overview

Max Total Supply

2,159

Holders

2,070

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
cosmoshub.eth
0x5bd79a5af48b8519c13f0262d06c668feaa78e0a
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
FiveDegrees

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 6 of 13: FiveDegrees.sol
pragma solidity >= 0.8.0;

import "./ERC1155.sol";
import "./Ownable.sol";
import "./Base64.sol";
import "./Strings.sol";
import "./IPayProxy.sol";

contract FiveDegrees is ERC1155, Ownable {

    using Strings for uint256;

    struct TokenURIInfo {
        string name;
        string image;
        uint256 maxSupply;
        string properties;
    }

    mapping(uint256 => TokenURIInfo) private _uri;
    //followers: token => supply
    mapping(uint256 => uint256) private _tokenSupply;
    //followings: address(token) => balances
    mapping(uint256 => uint256) private _totalBalance;

    //Web3 Ascii code 87+101+98+51 = 8195
    uint256 private _max_supply = 8195;
    address public PAY_PROXY;

    event Mint(address indexed account, address indexed owner, uint256 tokenId);
    event MintBatch(address[] indexed accounts, address indexed owner, uint256[] tokenIds);
    event Burn(address indexed account, address indexed owner, uint256 tokenId);
    event BurnBatch(address[] indexed accounts, address indexed owner, uint256[] tokenIds);

    constructor() ERC1155("") Ownable() public {
        uint256 tokenId = uint256(uint160(address(this)));
        _uri[tokenId].maxSupply = 2022;
    }

    function setProtocolInfo(string memory name, string memory image, string memory properties) public onlyOwner {
        uint256 tokenId = uint256(uint160(address(this)));
        _uri[tokenId].name = name;
        _uri[tokenId].image = image;
        _uri[tokenId].properties = properties;
        emit URI(uri(tokenId), tokenId);
    }

    function uri(uint256 tokenId) public view virtual override returns (string memory) {
        TokenURIInfo memory info = _uri[tokenId];
        if (info.maxSupply == 0) {
            info.maxSupply = _max_supply;
        }
        uint256 followers = _tokenSupply[tokenId];
        uint256 followings = _totalBalance[tokenId];
        string memory json = Base64.encode(
            bytes(
                string(
                    abi.encodePacked(
                        '{ "name": "',
                        info.name,
                        '", ',
                        '"image": "',
                        info.image,
                        '", ',
                        '"maxSupply": "',
                        info.maxSupply.toString(),
                        '", ',
                        '"tokenSupply": "',
                        followers.toString(),
                        '", ',
                        '"totalBalance": "',
                        followings.toString(),
                        '", ',
                        '"properties": "',
                        info.properties,
                        '" }'
                    )
                )
            )
        );
        return string(abi.encodePacked("data:application/json;base64,", json));
    }

    function baseInfo(address account) public view returns (string memory name, string memory image) {
        TokenURIInfo memory info = _uri[uint256(uint160(account))];
        name = info.name;
        image = info.image;
    }

    function metrics(address account) public view virtual returns (uint256 tokenSupply, uint256 totalBalance) {
        tokenSupply = _tokenSupply[uint256(uint160(account))];
        totalBalance = _totalBalance[uint256(uint160(account))];
    }

    /** transaction */

    function setPayProxy(address proxy) public onlyOwner {
        PAY_PROXY = proxy;
    }

    function setInfo(string memory name, string memory image, string memory properties) public {
        uint256 tokenId = uint256(uint160(msg.sender));
        _uri[tokenId].name = name;
        _uri[tokenId].image = image;
        _uri[tokenId].properties = properties;
        emit URI(uri(tokenId), tokenId);
    }

    function increaseMaxSupply(uint256 newMax) public payable {
        uint256 tokenId = uint256(uint160(msg.sender));
        TokenURIInfo memory info = _uri[tokenId];
        if (info.maxSupply == 0) {
            info.maxSupply = _max_supply;
        }
        uint256 theMax = info.maxSupply;
        require(theMax < newMax, "5Degrees: support increase only");
        if (PAY_PROXY != address(0)) {
            (address token, address receiver, uint256 amount) = IPayProxy(PAY_PROXY).queryPay(msg.sender, newMax, theMax);
            if (amount > 0) {
                if (token == address(0)) {
                    require(msg.value >= amount, "5Degrees: invalid msg.value");
                    payable(receiver).transfer(msg.value);
                } else {
                    (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, msg.sender, receiver, amount));
                    require(success && (data.length == 0 || abi.decode(data, (bool))), 'transfer_from_failed');
                }
            }
        }
        _uri[tokenId].maxSupply = newMax;
        emit URI(uri(tokenId), tokenId);
    }

    function decreaseMaxSupply(uint256 newMax) public {
        uint256 tokenId = uint256(uint160(msg.sender));
        TokenURIInfo memory info = _uri[tokenId];
        if (info.maxSupply == 0) {
            info.maxSupply = _max_supply;
        }
        require(newMax >= _tokenSupply[tokenId], "5Degrees: must be larger than the supply");
        require(info.maxSupply > newMax, "5Degrees: support decrease only");
        _uri[tokenId].maxSupply = newMax;
        emit URI(uri(tokenId), tokenId);
    }

    function mint(address account) public {
        address operator = msg.sender;
        _internal_mint(account, operator);
    }

    function mintByOrigin(address account) public {
        address operator = tx.origin;
        _internal_mint(account, operator);
    }

    function _internal_mint(address account, address operator) internal {
        uint256 tokenId = uint256(uint160(account));
        require(operator != account, "5Degrees: cannot mint your own NFT");
        require(super.balanceOf(operator, tokenId) == 0, "5Degrees: already minted");
        if (_uri[tokenId].maxSupply == 0) {
            _uri[tokenId].maxSupply = _max_supply;
        } else {
            require(_tokenSupply[tokenId] + 1 <= _uri[tokenId].maxSupply, "5Degrees: larger than max supply");
        }
        _mint(operator, tokenId, 1, "");
        _totalBalance[uint256(uint160(operator))] += 1;
        _tokenSupply[tokenId] += 1;
        emit Mint(account, operator, tokenId);
    }

    function mintBatch(address[] memory accounts) public {
        address operator = msg.sender;
        _internal_mintBatch(operator, accounts);
    }

    function mintBatchByOrigin(address[] memory accounts) public {
        address operator = tx.origin;
        _internal_mintBatch(operator, accounts);
    }

    function _internal_mintBatch(address operator, address[] memory accounts) internal {
        uint256[] memory ids = new uint256[](accounts.length);
        uint256[] memory amounts = new uint256[](accounts.length);
        for (uint256 i; i < accounts.length; i++) {
            uint256 tokenId = uint256(uint160(accounts[i]));
            if (operator == accounts[i] || super.balanceOf(operator, tokenId) > 0 || _tokenSupply[tokenId] + 1 > _uri[tokenId].maxSupply) {
                continue;
            }
            if (_uri[tokenId].maxSupply == 0) {
                _uri[tokenId].maxSupply = _max_supply;
            }
            _totalBalance[uint256(uint160(operator))] += 1;
            _tokenSupply[tokenId] += 1;
            ids[i] = tokenId;
            amounts[i] = 1;
        }
        _mintBatch(operator, ids, amounts, "");
        emit MintBatch(accounts, operator, ids);
    }

    function burn(address account) public {
        address operator = msg.sender;
        _internal_burn(account, operator);
    }

    function burnOrigin(address account) public {
        address operator = tx.origin;
        _internal_burn(account, operator);
    }

    function _internal_burn(address account, address operator) internal {
        uint256 tokenId = uint256(uint160(account));
        require(super.balanceOf(operator, tokenId) > 0, "5Degrees: token not existed");
        _burn(operator, tokenId, 1);
        _totalBalance[uint256(uint160(operator))] -= 1;
        _tokenSupply[tokenId] -= 1;
        emit Burn(account, operator, tokenId);
    }

    function burnBatch(address[] memory accounts) public {
        address operator = msg.sender;
        _internal_brunBatch(operator, accounts);
    }

    function burnBatchByOrigin(address[] memory accounts) public {
        address operator = tx.origin;
        _internal_brunBatch(operator, accounts);
    }

    function _internal_brunBatch(address operator, address[] memory accounts) internal {
        uint256[] memory ids = new uint256[](accounts.length);
        uint256[] memory amounts = new uint256[](accounts.length);
        for (uint256 i; i < accounts.length; i++) {
            uint256 tokenId = uint256(uint160(accounts[i]));
            if (super.balanceOf(operator, tokenId) == 0) {
                continue;
            }
            _totalBalance[uint256(uint160(operator))] -= 1;
            _tokenSupply[tokenId] -= 1;
            ids[i] = tokenId;
            amounts[i] = 1;
        }
        _burnBatch(operator, ids, amounts);
        emit BurnBatch(accounts, operator, ids);
    }

    //check transfer
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) public override {
        require(super.balanceOf(to, id) == 0, "5Degrees: already minted");
        require(super.balanceOf(to, uint256(uint160(msg.sender))) > 0, "5Degrees: receiver hasn't minted sender's NFT");
        super.safeTransferFrom(from, to, id, amount, data);
        _totalBalance[uint256(uint160(from))] -= amount;
        _totalBalance[uint256(uint160(to))] += amount;
    }

    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) public override {
        require(ids.length == amounts.length, "5Degrees: length of ids and amounts mismatch");
        uint256 amount = 0;
        for (uint256 i = 0; i < ids.length; i++) {
            require(super.balanceOf(to, ids[i]) == 0, "5Degrees: already minted");
            amount += amounts[i];
        }
        require(super.balanceOf(to, uint256(uint160(msg.sender))) > 0, "5Degrees: receiver hasn't minted sender's NFT");
        super.safeBatchTransferFrom(from, to, ids, amounts, data);
        _totalBalance[uint256(uint160(from))] -= amount;
        _totalBalance[uint256(uint160(to))] += amount;
    }

    function toString(bytes memory data) private pure returns (string memory) {
        bytes memory alphabet = "0123456789abcdef";

        bytes memory str = new bytes(2 + data.length * 2);
        str[0] = "0";
        str[1] = "x";
        for (uint i = 0; i < data.length; i++) {
            str[2 + i * 2] = alphabet[uint(uint8(data[i] >> 4))];
            str[3 + i * 2] = alphabet[uint(uint8(data[i] & 0x0f))];
        }
        return string(str);
    }
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
// 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 2 of 13: Base64.sol
pragma solidity ^0.8.0;

library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)
                )
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

File 3 of 13: Context.sol
// SPDX-License-Identifier: MIT
// 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 4 of 13: ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./IERC1155MetadataURI.sol";
import "./Address.sol";
import "./Context.sol";
import "./ERC165.sol";

/**
 * @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 5 of 13: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 7 of 13: IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 8 of 13: IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";

/**
 * @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 9 of 13: IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 10 of 13: IERC165.sol
// SPDX-License-Identifier: MIT
// 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 11 of 13: IPayProxy.sol
pragma solidity >= 0.8.0;

interface IPayProxy {
    function queryPay(address account, uint256 newMax, uint256 theMax) view external returns (address token, address receiver, uint amount);
}


File 12 of 13: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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 13 of 13: Strings.sol
pragma solidity ^0.8.0;

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    function toString(uint256 value) internal pure returns (string memory) {
        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);
    }

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

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

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":"account","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"BurnBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"MintBatch","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":"PAY_PROXY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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"}],"name":"baseInfo","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"image","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"burnBatchByOrigin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"burnOrigin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"decreaseMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"increaseMaxSupply","outputs":[],"stateMutability":"payable","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":"address","name":"account","type":"address"}],"name":"metrics","outputs":[{"internalType":"uint256","name":"tokenSupply","type":"uint256"},{"internalType":"uint256","name":"totalBalance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"mintBatchByOrigin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"mintByOrigin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"string","name":"name","type":"string"},{"internalType":"string","name":"image","type":"string"},{"internalType":"string","name":"properties","type":"string"}],"name":"setInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxy","type":"address"}],"name":"setPayProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"image","type":"string"},{"internalType":"string","name":"properties","type":"string"}],"name":"setProtocolInfo","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526120036007553480156200001757600080fd5b5060408051602081019091526000815262000032816200005c565b506200003e3362000075565b3060009081526004602052604090206107e6600290910155620001aa565b805162000071906002906020840190620000c7565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000d5906200016d565b90600052602060002090601f016020900481019282620000f9576000855562000144565b82601f106200011457805160ff191683800117855562000144565b8280016001018555821562000144579182015b828111156200014457825182559160200191906001019062000127565b506200015292915062000156565b5090565b5b8082111562000152576000815560010162000157565b600181811c908216806200018257607f821691505b60208210811415620001a457634e487b7160e01b600052602260045260246000fd5b50919050565b613f1b80620001ba6000396000f3fe60806040526004361061019b5760003560e01c806389afcb44116100ec578063a22cb4651161008a578063d0e64ec511610064578063d0e64ec5146104c7578063e985e9c51461051f578063f242432a14610568578063f2fde38b1461058857600080fd5b8063a22cb46514610467578063ad1a6d5114610487578063b1c00adc146104a757600080fd5b806390edbfee116100c657806390edbfee146103f457806391ff4a7314610407578063927f59ba1461042757806399e23e721461044757600080fd5b806389afcb44146103825780638da5cb5b146103a25780638df50e01146103d457600080fd5b8063285d9a281161015957806367ad35031161013357806367ad35031461030d5780636a6278421461032d5780636dec7a931461034d578063715018a61461036d57600080fd5b8063285d9a28146102a05780632eb2c2d6146102c05780634e1273f4146102e057600080fd5b8062fdd58e146101a057806301ffc9a7146101d35780630832f5a4146102035780630e89341c1461022557806310c3a4f914610252578063116719ec14610272575b600080fd5b3480156101ac57600080fd5b506101c06101bb3660046133da565b6105a8565b6040519081526020015b60405180910390f35b3480156101df57600080fd5b506101f36101ee366004613522565b61063f565b60405190151581526020016101ca565b34801561020f57600080fd5b5061022361021e36600461355c565b610691565b005b34801561023157600080fd5b506102456102403660046135e3565b61076e565b6040516101ca919061394c565b34801561025e57600080fd5b5061022361026d366004613406565b610a0c565b34801561027e57600080fd5b5061029261028d3660046131d3565b610a1b565b6040516101ca92919061395f565b3480156102ac57600080fd5b506102236102bb3660046131d3565b610c1d565b3480156102cc57600080fd5b506102236102db366004613230565b610c69565b3480156102ec57600080fd5b506103006102fb36600461343a565b610e82565b6040516101ca919061390b565b34801561031957600080fd5b50610223610328366004613406565b610fab565b34801561033957600080fd5b506102236103483660046131d3565b610fb6565b34801561035957600080fd5b5061022361036836600461355c565b610fc1565b34801561037957600080fd5b50610223610fe1565b34801561038e57600080fd5b5061022361039d3660046131d3565b611017565b3480156103ae57600080fd5b506003546001600160a01b03165b6040516001600160a01b0390911681526020016101ca565b3480156103e057600080fd5b506008546103bc906001600160a01b031681565b6102236104023660046135e3565b611022565b34801561041357600080fd5b506102236104223660046135e3565b611502565b34801561043357600080fd5b50610223610442366004613406565b61180d565b34801561045357600080fd5b50610223610462366004613406565b611818565b34801561047357600080fd5b506102236104823660046133ac565b611823565b34801561049357600080fd5b506102236104a23660046131d3565b61182e565b3480156104b357600080fd5b506102236104c23660046131d3565b611839565b3480156104d357600080fd5b5061050a6104e23660046131d3565b6001600160a01b03166000908152600560209081526040808320546006909252909120549091565b604080519283526020830191909152016101ca565b34801561052b57600080fd5b506101f361053a3660046131f7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561057457600080fd5b50610223610583366004613331565b611844565b34801561059457600080fd5b506102236105a33660046131d3565b611939565b60006001600160a01b0383166106195760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061067057506001600160e01b031982166303a24d0760e21b145b8061068b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146106bb5760405162461bcd60e51b815260040161061090613ae2565b30600081815260046020908152604090912085516106db92870190612fbb565b506000818152600460209081526040909120845161070192600190920191860190612fbb565b506000818152600460209081526040909120835161072792600390920191850190612fbb565b50807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b6107538361076e565b604051610760919061394c565b60405180910390a250505050565b60606000600460008481526020019081526020016000206040518060800160405290816000820180546107a090613cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546107cc90613cd9565b80156108195780601f106107ee57610100808354040283529160200191610819565b820191906000526020600020905b8154815290600101906020018083116107fc57829003601f168201915b5050505050815260200160018201805461083290613cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461085e90613cd9565b80156108ab5780601f10610880576101008083540402835291602001916108ab565b820191906000526020600020905b81548152906001019060200180831161088e57829003601f168201915b50505050508152602001600282015481526020016003820180546108ce90613cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546108fa90613cd9565b80156109475780601f1061091c57610100808354040283529160200191610947565b820191906000526020600020905b81548152906001019060200180831161092a57829003601f168201915b50505050508152505090508060400151600014156109685760075460408201525b6000838152600560209081526040808320546006835281842054855193860151928601519194909390926109df9261099f906119d4565b6109a8876119d4565b6109b1876119d4565b89606001516040516020016109cb969594939291906136da565b604051602081830303815290604052611ad9565b9050806040516020016109f29190613823565b604051602081830303815290604052945050505050919050565b32610a178183611c3e565b5050565b606080600060046000856001600160a01b03168152602001908152602001600020604051806080016040529081600082018054610a5790613cd9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8390613cd9565b8015610ad05780601f10610aa557610100808354040283529160200191610ad0565b820191906000526020600020905b815481529060010190602001808311610ab357829003601f168201915b50505050508152602001600182018054610ae990613cd9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1590613cd9565b8015610b625780601f10610b3757610100808354040283529160200191610b62565b820191906000526020600020905b815481529060010190602001808311610b4557829003601f168201915b5050505050815260200160028201548152602001600382018054610b8590613cd9565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb190613cd9565b8015610bfe5780601f10610bd357610100808354040283529160200191610bfe565b820191906000526020600020905b815481529060010190602001808311610be157829003601f168201915b5050505050815250509050806000015192508060200151915050915091565b6003546001600160a01b03163314610c475760405162461bcd60e51b815260040161061090613ae2565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b848314610ccd5760405162461bcd60e51b815260206004820152602c60248201527f35446567726565733a206c656e677468206f662069647320616e6420616d6f7560448201526b0dce8e640dad2e6dac2e8c6d60a31b6064820152608401610610565b6000805b86811015610d5057610cfb89898984818110610cef57610cef613d9b565b905060200201356105a8565b15610d185760405162461bcd60e51b815260040161061090613bed565b858582818110610d2a57610d2a613d9b565b9050602002013582610d3c9190613c47565b915080610d4881613d40565b915050610cd1565b506000610d5d89336105a8565b11610d7a5760405162461bcd60e51b815260040161061090613b17565b610e1d898989898080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808d0282810182019093528c82529093508c92508b91829185019084908082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a9150899081908401838280828437600092019190915250611ec992505050565b6001600160a01b03891660009081526006602052604081208054839290610e45908490613c92565b90915550506001600160a01b03881660009081526006602052604081208054839290610e72908490613c47565b9091555050505050505050505050565b60608151835114610ee75760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610610565b600083516001600160401b03811115610f0257610f02613db1565b604051908082528060200260200182016040528015610f2b578160200160208202803683370190505b50905060005b8451811015610fa357610f76858281518110610f4f57610f4f613d9b565b6020026020010151858381518110610f6957610f69613d9b565b60200260200101516105a8565b828281518110610f8857610f88613d9b565b6020908102919091010152610f9c81613d40565b9050610f31565b509392505050565b33610a178183611f60565b33610a178282612137565b33600081815260046020908152604090912085516106db92870190612fbb565b6003546001600160a01b0316331461100b5760405162461bcd60e51b815260040161061090613ae2565b611015600061232f565b565b33610a178282612381565b3360008181526004602052604080822081516080810190925280548290829061104a90613cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461107690613cd9565b80156110c35780601f10611098576101008083540402835291602001916110c3565b820191906000526020600020905b8154815290600101906020018083116110a657829003601f168201915b505050505081526020016001820180546110dc90613cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461110890613cd9565b80156111555780601f1061112a57610100808354040283529160200191611155565b820191906000526020600020905b81548152906001019060200180831161113857829003601f168201915b505050505081526020016002820154815260200160038201805461117890613cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546111a490613cd9565b80156111f15780601f106111c6576101008083540402835291602001916111f1565b820191906000526020600020905b8154815290600101906020018083116111d457829003601f168201915b50505050508152505090508060400151600014156112125760075460408201525b60408101518381106112665760405162461bcd60e51b815260206004820152601f60248201527f35446567726565733a20737570706f727420696e637265617365206f6e6c79006044820152606401610610565b6008546001600160a01b0316156114c357600854604051630abf7d5560e11b81523360048201526024810186905260448101839052600091829182916001600160a01b03169063157efaaa9060640160606040518083038186803b1580156112cd57600080fd5b505afa1580156112e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130591906132ee565b9194509250905080156114bf576001600160a01b0383166113ab57803410156113705760405162461bcd60e51b815260206004820152601b60248201527f35446567726565733a20696e76616c6964206d73672e76616c756500000000006044820152606401610610565b6040516001600160a01b038316903480156108fc02916000818181858888f193505050501580156113a5573d6000803e3d6000fd5b506114bf565b604080513360248201526001600160a01b038481166044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b179052915160009283929087169161140d91906136be565b6000604051808303816000865af19150503d806000811461144a576040519150601f19603f3d011682016040523d82523d6000602084013e61144f565b606091505b50915091508180156114795750805115806114795750808060200190518101906114799190613505565b6114bc5760405162461bcd60e51b81526020600482015260146024820152731d1c985b9cd9995c97d99c9bdb57d9985a5b195960621b6044820152606401610610565b50505b5050505b6000838152600460205260409020600201849055827f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b6107538261076e565b3360008181526004602052604080822081516080810190925280548290829061152a90613cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461155690613cd9565b80156115a35780601f10611578576101008083540402835291602001916115a3565b820191906000526020600020905b81548152906001019060200180831161158657829003601f168201915b505050505081526020016001820180546115bc90613cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546115e890613cd9565b80156116355780601f1061160a57610100808354040283529160200191611635565b820191906000526020600020905b81548152906001019060200180831161161857829003601f168201915b505050505081526020016002820154815260200160038201805461165890613cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461168490613cd9565b80156116d15780601f106116a6576101008083540402835291602001916116d1565b820191906000526020600020905b8154815290600101906020018083116116b457829003601f168201915b50505050508152505090508060400151600014156116f25760075460408201525b6000828152600560205260409020548310156117615760405162461bcd60e51b815260206004820152602860248201527f35446567726565733a206d757374206265206c6172676572207468616e2074686044820152676520737570706c7960c01b6064820152608401610610565b828160400151116117b45760405162461bcd60e51b815260206004820152601f60248201527f35446567726565733a20737570706f7274206465637265617365206f6e6c79006044820152606401610610565b6000828152600460205260409020600201839055817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b6117f38261076e565b604051611800919061394c565b60405180910390a2505050565b33610a178183611c3e565b32610a178183611f60565b610a17338383612489565b32610a178282612381565b32610a178282612137565b61184e85856105a8565b1561186b5760405162461bcd60e51b815260040161061090613bed565b600061187786336105a8565b116118945760405162461bcd60e51b815260040161061090613b17565b6118d78686868686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061256292505050565b6001600160a01b038616600090815260066020526040812080548592906118ff908490613c92565b90915550506001600160a01b0385166000908152600660205260408120805485929061192c908490613c47565b9091555050505050505050565b6003546001600160a01b031633146119635760405162461bcd60e51b815260040161061090613ae2565b6001600160a01b0381166119c85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610610565b6119d18161232f565b50565b6060816119f85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a225780611a0c81613d40565b9150611a1b9050600a83613c5f565b91506119fc565b6000816001600160401b03811115611a3c57611a3c613db1565b6040519080825280601f01601f191660200182016040528015611a66576020820181803683370190505b5090505b8415611ad157611a7b600183613c92565b9150611a88600a86613d5b565b611a93906030613c47565b60f81b818381518110611aa857611aa8613d9b565b60200101906001600160f81b031916908160001a905350611aca600a86613c5f565b9450611a6a565b949350505050565b805160609080611af9575050604080516020810190915260008152919050565b60006003611b08836002613c47565b611b129190613c5f565b611b1d906004613c73565b90506000611b2c826020613c47565b6001600160401b03811115611b4357611b43613db1565b6040519080825280601f01601f191660200182016040528015611b6d576020820181803683370190505b5090506000604051806060016040528060408152602001613ea6604091399050600181016020830160005b86811015611bf9576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101611b98565b506003860660018114611c135760028114611c2457611c30565b613d3d60f01b600119830152611c30565b603d60f81b6000198301525b505050918152949350505050565b600081516001600160401b03811115611c5957611c59613db1565b604051908082528060200260200182016040528015611c82578160200160208202803683370190505b509050600082516001600160401b03811115611ca057611ca0613db1565b604051908082528060200260200182016040528015611cc9578160200160208202803683370190505b50905060005b8351811015611e50576000848281518110611cec57611cec613d9b565b60200260200101516001600160a01b03169050848281518110611d1157611d11613d9b565b60200260200101516001600160a01b0316866001600160a01b03161480611d4157506000611d3f87836105a8565b115b80611d725750600081815260046020908152604080832060020154600590925290912054611d70906001613c47565b115b15611d7d5750611e3e565b600081815260046020526040902060020154611da9576007546000828152600460205260409020600201555b6001600160a01b0386166000908152600660205260408120805460019290611dd2908490613c47565b90915550506000818152600560205260408120805460019290611df6908490613c47565b9250508190555080848381518110611e1057611e10613d9b565b6020026020010181815250506001838381518110611e3057611e30613d9b565b602002602001018181525050505b80611e4881613d40565b915050611ccf565b50611e6c848383604051806020016040528060008152506125e9565b836001600160a01b031683604051611e84919061367f565b60405180910390207faf4805d98123d9bc481216a904ea136e7fa251bf1d5f547d32effd3bcc4b056884604051611ebb919061390b565b60405180910390a350505050565b6001600160a01b038516331480611ee55750611ee5853361053a565b611f4c5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610610565b611f598585858585612734565b5050505050565b600081516001600160401b03811115611f7b57611f7b613db1565b604051908082528060200260200182016040528015611fa4578160200160208202803683370190505b509050600082516001600160401b03811115611fc257611fc2613db1565b604051908082528060200260200182016040528015611feb578160200160208202803683370190505b50905060005b83518110156120dc57600084828151811061200e5761200e613d9b565b60200260200101516001600160a01b0316905061202b86826105a8565b61203557506120ca565b6001600160a01b038616600090815260066020526040812080546001929061205e908490613c92565b90915550506000818152600560205260408120805460019290612082908490613c92565b925050819055508084838151811061209c5761209c613d9b565b60200260200101818152505060018383815181106120bc576120bc613d9b565b602002602001018181525050505b806120d481613d40565b915050611ff1565b506120e88483836128d0565b836001600160a01b031683604051612100919061367f565b60405180910390207f6545f33dd9fe7308328f55cd65832c94ac22fad9ceff6790be226dc1832769a384604051611ebb919061390b565b6001600160a01b0380831690821681141561219f5760405162461bcd60e51b815260206004820152602260248201527f35446567726565733a2063616e6e6f74206d696e7420796f7572206f776e204e604482015261119560f21b6064820152608401610610565b6121a982826105a8565b156121c65760405162461bcd60e51b815260040161061090613bed565b6000818152600460205260409020600201546121f65760075460008281526004602052604090206002015561226d565b60008181526004602090815260408083206002015460059092529091205461221f906001613c47565b111561226d5760405162461bcd60e51b815260206004820181905260248201527f35446567726565733a206c6172676572207468616e206d617820737570706c796044820152606401610610565b6122898282600160405180602001604052806000815250612a4c565b6001600160a01b03821660009081526006602052604081208054600192906122b2908490613c47565b909155505060008181526005602052604081208054600192906122d6908490613c47565b92505081905550816001600160a01b0316836001600160a01b03167fab8530f87dc9b59234c4623bf917212bb2536d647574c8e7e5da92c2ede0c9f88360405161232291815260200190565b60405180910390a3505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600061239783836105a8565b116123e45760405162461bcd60e51b815260206004820152601b60248201527f35446567726565733a20746f6b656e206e6f74206578697374656400000000006044820152606401610610565b6123f082826001612b1c565b6001600160a01b0382166000908152600660205260408120805460019290612419908490613c92565b9091555050600081815260056020526040812080546001929061243d908490613c92565b92505081905550816001600160a01b0316836001600160a01b03167fbac40739b0d4ca32fa2d82fc91630465ba3eddd1598da6fca393b26fb63b94538360405161232291815260200190565b816001600160a01b0316836001600160a01b031614156124fd5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610610565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319101612322565b6001600160a01b03851633148061257e575061257e853361053a565b6125dc5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610610565b611f598585858585612c1e565b6001600160a01b03841661260f5760405162461bcd60e51b815260040161061090613bac565b81518351146126305760405162461bcd60e51b815260040161061090613b64565b3360005b84518110156126cc5783818151811061264f5761264f613d9b565b602002602001015160008087848151811061266c5761266c613d9b565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546126b49190613c47565b909155508190506126c481613d40565b915050612634565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161271d92919061391e565b60405180910390a4611f5981600087878787612d3b565b81518351146127555760405162461bcd60e51b815260040161061090613b64565b6001600160a01b03841661277b5760405162461bcd60e51b815260040161061090613a10565b3360005b845181101561286257600085828151811061279c5761279c613d9b565b6020026020010151905060008583815181106127ba576127ba613d9b565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561280a5760405162461bcd60e51b815260040161061090613a98565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290612847908490613c47565b925050819055505050508061285b90613d40565b905061277f565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516128b292919061391e565b60405180910390a46128c8818787878787612d3b565b505050505050565b6001600160a01b0383166128f65760405162461bcd60e51b815260040161061090613a55565b80518251146129175760405162461bcd60e51b815260040161061090613b64565b604080516020810190915260009081905233905b83518110156129ed57600084828151811061294857612948613d9b565b60200260200101519050600084838151811061296657612966613d9b565b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156129b65760405162461bcd60e51b8152600401610610906139cc565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806129e581613d40565b91505061292b565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612a3e92919061391e565b60405180910390a450505050565b6001600160a01b038416612a725760405162461bcd60e51b815260040161061090613bac565b33612a8c81600087612a8388612ea6565b611f5988612ea6565b6000848152602081815260408083206001600160a01b038916845290915281208054859290612abc908490613c47565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611f5981600087878787612ef1565b6001600160a01b038316612b425760405162461bcd60e51b815260040161061090613a55565b33612b7281856000612b5387612ea6565b612b5c87612ea6565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b038816845290915290205482811015612bb35760405162461bcd60e51b8152600401610610906139cc565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6001600160a01b038416612c445760405162461bcd60e51b815260040161061090613a10565b33612c54818787612a8388612ea6565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015612c955760405162461bcd60e51b815260040161061090613a98565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290612cd2908490613c47565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612d32828888888888612ef1565b50505050505050565b6001600160a01b0384163b156128c85760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190612d7f9089908990889088908890600401613868565b602060405180830381600087803b158015612d9957600080fd5b505af1925050508015612dc9575060408051601f3d908101601f19168201909252612dc69181019061353f565b60015b612e7657612dd5613dc7565b806308c379a01415612e0f5750612dea613de3565b80612df55750612e11565b8060405162461bcd60e51b8152600401610610919061394c565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610610565b6001600160e01b0319811663bc197c8160e01b14612d325760405162461bcd60e51b815260040161061090613984565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612ee057612ee0613d9b565b602090810291909101015292915050565b6001600160a01b0384163b156128c85760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612f3590899089908890889088906004016138c6565b602060405180830381600087803b158015612f4f57600080fd5b505af1925050508015612f7f575060408051601f3d908101601f19168201909252612f7c9181019061353f565b60015b612f8b57612dd5613dc7565b6001600160e01b0319811663f23a6e6160e01b14612d325760405162461bcd60e51b815260040161061090613984565b828054612fc790613cd9565b90600052602060002090601f016020900481019282612fe9576000855561302f565b82601f1061300257805160ff191683800117855561302f565b8280016001018555821561302f579182015b8281111561302f578251825591602001919060010190613014565b5061303b92915061303f565b5090565b5b8082111561303b5760008155600101613040565b600082601f83011261306557600080fd5b8135602061307282613c24565b60405161307f8282613d14565b8381528281019150858301600585901b8701840188101561309f57600080fd5b60005b858110156130c75781356130b581613e6c565b845292840192908401906001016130a2565b5090979650505050505050565b60008083601f8401126130e657600080fd5b5081356001600160401b038111156130fd57600080fd5b6020830191508360208260051b850101111561311857600080fd5b9250929050565b60008083601f84011261313157600080fd5b5081356001600160401b0381111561314857600080fd5b60208301915083602082850101111561311857600080fd5b600082601f83011261317157600080fd5b81356001600160401b0381111561318a5761318a613db1565b6040516131a1601f8301601f191660200182613d14565b8181528460208386010111156131b657600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156131e557600080fd5b81356131f081613e6c565b9392505050565b6000806040838503121561320a57600080fd5b823561321581613e6c565b9150602083013561322581613e6c565b809150509250929050565b60008060008060008060008060a0898b03121561324c57600080fd5b883561325781613e6c565b9750602089013561326781613e6c565b965060408901356001600160401b038082111561328357600080fd5b61328f8c838d016130d4565b909850965060608b01359150808211156132a857600080fd5b6132b48c838d016130d4565b909650945060808b01359150808211156132cd57600080fd5b506132da8b828c0161311f565b999c989b5096995094979396929594505050565b60008060006060848603121561330357600080fd5b835161330e81613e6c565b602085015190935061331f81613e6c565b80925050604084015190509250925092565b60008060008060008060a0878903121561334a57600080fd5b863561335581613e6c565b9550602087013561336581613e6c565b9450604087013593506060870135925060808701356001600160401b0381111561338e57600080fd5b61339a89828a0161311f565b979a9699509497509295939492505050565b600080604083850312156133bf57600080fd5b82356133ca81613e6c565b9150602083013561322581613e81565b600080604083850312156133ed57600080fd5b82356133f881613e6c565b946020939093013593505050565b60006020828403121561341857600080fd5b81356001600160401b0381111561342e57600080fd5b611ad184828501613054565b6000806040838503121561344d57600080fd5b82356001600160401b038082111561346457600080fd5b61347086838701613054565b935060209150818501358181111561348757600080fd5b85019050601f8101861361349a57600080fd5b80356134a581613c24565b6040516134b28282613d14565b8281528481019150838501600584901b850186018a10156134d257600080fd5b600094505b838510156134f55780358352600194909401939185019185016134d7565b5080955050505050509250929050565b60006020828403121561351757600080fd5b81516131f081613e81565b60006020828403121561353457600080fd5b81356131f081613e8f565b60006020828403121561355157600080fd5b81516131f081613e8f565b60008060006060848603121561357157600080fd5b83356001600160401b038082111561358857600080fd5b61359487838801613160565b945060208601359150808211156135aa57600080fd5b6135b687838801613160565b935060408601359150808211156135cc57600080fd5b506135d986828701613160565b9150509250925092565b6000602082840312156135f557600080fd5b5035919050565b600081518084526020808501945080840160005b8381101561362c57815187529582019590820190600101613610565b509495945050505050565b6000815180845261364f816020860160208601613ca9565b601f01601f19169290920160200192915050565b60008151613675818560208601613ca9565b9290920192915050565b815160009082906020808601845b838110156136b25781516001600160a01b03168552938201939082019060010161368d565b50929695505050505050565b600082516136d0818460208701613ca9565b9190910192915050565b6a3d90113730b6b2911d101160a91b8152865160009061370181600b850160208c01613ca9565b6201116160ed1b600b918401918201819052691134b6b0b3b2911d101160b11b600e8301528851613739816018850160208d01613ca9565b601892019182018190526d1136b0bc29bab838363c911d101160911b601b830152875161376d816029850160208c01613ca9565b60299201918201526138166138076138016137e66137b46137e06137c3826137ae602c8a016f113a37b5b2b729bab838363c911d101160811b815260100190565b8e613663565b6201116160ed1b815260030190565b70113a37ba30b62130b630b731b2911d101160791b815260110190565b8a613663565b6e11383937b832b93a34b2b9911d101160891b8152600f0190565b86613663565b6222207d60e81b815260030190565b9998505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161385b81601d850160208701613ca9565b91909101601d0192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090613894908301866135fc565b82810360608401526138a681866135fc565b905082810360808401526138ba8185613637565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061390090830184613637565b979650505050505050565b6020815260006131f060208301846135fc565b60408152600061393160408301856135fc565b828103602084015261394381856135fc565b95945050505050565b6020815260006131f06020830184613637565b6040815260006139726040830185613637565b82810360208401526139438185613637565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602d908201527f35446567726565733a207265636569766572206861736e2774206d696e74656460408201526c081cd95b99195c89dcc8139195609a1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526018908201527f35446567726565733a20616c7265616479206d696e7465640000000000000000604082015260600190565b60006001600160401b03821115613c3d57613c3d613db1565b5060051b60200190565b60008219821115613c5a57613c5a613d6f565b500190565b600082613c6e57613c6e613d85565b500490565b6000816000190483118215151615613c8d57613c8d613d6f565b500290565b600082821015613ca457613ca4613d6f565b500390565b60005b83811015613cc4578181015183820152602001613cac565b83811115613cd3576000848401525b50505050565b600181811c90821680613ced57607f821691505b60208210811415613d0e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b0381118282101715613d3957613d39613db1565b6040525050565b6000600019821415613d5457613d54613d6f565b5060010190565b600082613d6a57613d6a613d85565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115613de05760046000803e5060005160e01c5b90565b600060443d1015613df15790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715613e2057505050505090565b8285019150815181811115613e385750505050505090565b843d8701016020828501011115613e525750505050505090565b613e6160208286010187613d14565b509095945050505050565b6001600160a01b03811681146119d157600080fd5b80151581146119d157600080fd5b6001600160e01b0319811681146119d157600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122031c6f8d64fa6b9f06ee98c08f0eb29e97a81ee45d88db331e1218953afbf2f0d64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061019b5760003560e01c806389afcb44116100ec578063a22cb4651161008a578063d0e64ec511610064578063d0e64ec5146104c7578063e985e9c51461051f578063f242432a14610568578063f2fde38b1461058857600080fd5b8063a22cb46514610467578063ad1a6d5114610487578063b1c00adc146104a757600080fd5b806390edbfee116100c657806390edbfee146103f457806391ff4a7314610407578063927f59ba1461042757806399e23e721461044757600080fd5b806389afcb44146103825780638da5cb5b146103a25780638df50e01146103d457600080fd5b8063285d9a281161015957806367ad35031161013357806367ad35031461030d5780636a6278421461032d5780636dec7a931461034d578063715018a61461036d57600080fd5b8063285d9a28146102a05780632eb2c2d6146102c05780634e1273f4146102e057600080fd5b8062fdd58e146101a057806301ffc9a7146101d35780630832f5a4146102035780630e89341c1461022557806310c3a4f914610252578063116719ec14610272575b600080fd5b3480156101ac57600080fd5b506101c06101bb3660046133da565b6105a8565b6040519081526020015b60405180910390f35b3480156101df57600080fd5b506101f36101ee366004613522565b61063f565b60405190151581526020016101ca565b34801561020f57600080fd5b5061022361021e36600461355c565b610691565b005b34801561023157600080fd5b506102456102403660046135e3565b61076e565b6040516101ca919061394c565b34801561025e57600080fd5b5061022361026d366004613406565b610a0c565b34801561027e57600080fd5b5061029261028d3660046131d3565b610a1b565b6040516101ca92919061395f565b3480156102ac57600080fd5b506102236102bb3660046131d3565b610c1d565b3480156102cc57600080fd5b506102236102db366004613230565b610c69565b3480156102ec57600080fd5b506103006102fb36600461343a565b610e82565b6040516101ca919061390b565b34801561031957600080fd5b50610223610328366004613406565b610fab565b34801561033957600080fd5b506102236103483660046131d3565b610fb6565b34801561035957600080fd5b5061022361036836600461355c565b610fc1565b34801561037957600080fd5b50610223610fe1565b34801561038e57600080fd5b5061022361039d3660046131d3565b611017565b3480156103ae57600080fd5b506003546001600160a01b03165b6040516001600160a01b0390911681526020016101ca565b3480156103e057600080fd5b506008546103bc906001600160a01b031681565b6102236104023660046135e3565b611022565b34801561041357600080fd5b506102236104223660046135e3565b611502565b34801561043357600080fd5b50610223610442366004613406565b61180d565b34801561045357600080fd5b50610223610462366004613406565b611818565b34801561047357600080fd5b506102236104823660046133ac565b611823565b34801561049357600080fd5b506102236104a23660046131d3565b61182e565b3480156104b357600080fd5b506102236104c23660046131d3565b611839565b3480156104d357600080fd5b5061050a6104e23660046131d3565b6001600160a01b03166000908152600560209081526040808320546006909252909120549091565b604080519283526020830191909152016101ca565b34801561052b57600080fd5b506101f361053a3660046131f7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561057457600080fd5b50610223610583366004613331565b611844565b34801561059457600080fd5b506102236105a33660046131d3565b611939565b60006001600160a01b0383166106195760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061067057506001600160e01b031982166303a24d0760e21b145b8061068b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146106bb5760405162461bcd60e51b815260040161061090613ae2565b30600081815260046020908152604090912085516106db92870190612fbb565b506000818152600460209081526040909120845161070192600190920191860190612fbb565b506000818152600460209081526040909120835161072792600390920191850190612fbb565b50807f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b6107538361076e565b604051610760919061394c565b60405180910390a250505050565b60606000600460008481526020019081526020016000206040518060800160405290816000820180546107a090613cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546107cc90613cd9565b80156108195780601f106107ee57610100808354040283529160200191610819565b820191906000526020600020905b8154815290600101906020018083116107fc57829003601f168201915b5050505050815260200160018201805461083290613cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461085e90613cd9565b80156108ab5780601f10610880576101008083540402835291602001916108ab565b820191906000526020600020905b81548152906001019060200180831161088e57829003601f168201915b50505050508152602001600282015481526020016003820180546108ce90613cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546108fa90613cd9565b80156109475780601f1061091c57610100808354040283529160200191610947565b820191906000526020600020905b81548152906001019060200180831161092a57829003601f168201915b50505050508152505090508060400151600014156109685760075460408201525b6000838152600560209081526040808320546006835281842054855193860151928601519194909390926109df9261099f906119d4565b6109a8876119d4565b6109b1876119d4565b89606001516040516020016109cb969594939291906136da565b604051602081830303815290604052611ad9565b9050806040516020016109f29190613823565b604051602081830303815290604052945050505050919050565b32610a178183611c3e565b5050565b606080600060046000856001600160a01b03168152602001908152602001600020604051806080016040529081600082018054610a5790613cd9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8390613cd9565b8015610ad05780601f10610aa557610100808354040283529160200191610ad0565b820191906000526020600020905b815481529060010190602001808311610ab357829003601f168201915b50505050508152602001600182018054610ae990613cd9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1590613cd9565b8015610b625780601f10610b3757610100808354040283529160200191610b62565b820191906000526020600020905b815481529060010190602001808311610b4557829003601f168201915b5050505050815260200160028201548152602001600382018054610b8590613cd9565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb190613cd9565b8015610bfe5780601f10610bd357610100808354040283529160200191610bfe565b820191906000526020600020905b815481529060010190602001808311610be157829003601f168201915b5050505050815250509050806000015192508060200151915050915091565b6003546001600160a01b03163314610c475760405162461bcd60e51b815260040161061090613ae2565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b848314610ccd5760405162461bcd60e51b815260206004820152602c60248201527f35446567726565733a206c656e677468206f662069647320616e6420616d6f7560448201526b0dce8e640dad2e6dac2e8c6d60a31b6064820152608401610610565b6000805b86811015610d5057610cfb89898984818110610cef57610cef613d9b565b905060200201356105a8565b15610d185760405162461bcd60e51b815260040161061090613bed565b858582818110610d2a57610d2a613d9b565b9050602002013582610d3c9190613c47565b915080610d4881613d40565b915050610cd1565b506000610d5d89336105a8565b11610d7a5760405162461bcd60e51b815260040161061090613b17565b610e1d898989898080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808d0282810182019093528c82529093508c92508b91829185019084908082843760009201919091525050604080516020601f8c018190048102820181019092528a815292508a9150899081908401838280828437600092019190915250611ec992505050565b6001600160a01b03891660009081526006602052604081208054839290610e45908490613c92565b90915550506001600160a01b03881660009081526006602052604081208054839290610e72908490613c47565b9091555050505050505050505050565b60608151835114610ee75760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610610565b600083516001600160401b03811115610f0257610f02613db1565b604051908082528060200260200182016040528015610f2b578160200160208202803683370190505b50905060005b8451811015610fa357610f76858281518110610f4f57610f4f613d9b565b6020026020010151858381518110610f6957610f69613d9b565b60200260200101516105a8565b828281518110610f8857610f88613d9b565b6020908102919091010152610f9c81613d40565b9050610f31565b509392505050565b33610a178183611f60565b33610a178282612137565b33600081815260046020908152604090912085516106db92870190612fbb565b6003546001600160a01b0316331461100b5760405162461bcd60e51b815260040161061090613ae2565b611015600061232f565b565b33610a178282612381565b3360008181526004602052604080822081516080810190925280548290829061104a90613cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461107690613cd9565b80156110c35780601f10611098576101008083540402835291602001916110c3565b820191906000526020600020905b8154815290600101906020018083116110a657829003601f168201915b505050505081526020016001820180546110dc90613cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461110890613cd9565b80156111555780601f1061112a57610100808354040283529160200191611155565b820191906000526020600020905b81548152906001019060200180831161113857829003601f168201915b505050505081526020016002820154815260200160038201805461117890613cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546111a490613cd9565b80156111f15780601f106111c6576101008083540402835291602001916111f1565b820191906000526020600020905b8154815290600101906020018083116111d457829003601f168201915b50505050508152505090508060400151600014156112125760075460408201525b60408101518381106112665760405162461bcd60e51b815260206004820152601f60248201527f35446567726565733a20737570706f727420696e637265617365206f6e6c79006044820152606401610610565b6008546001600160a01b0316156114c357600854604051630abf7d5560e11b81523360048201526024810186905260448101839052600091829182916001600160a01b03169063157efaaa9060640160606040518083038186803b1580156112cd57600080fd5b505afa1580156112e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130591906132ee565b9194509250905080156114bf576001600160a01b0383166113ab57803410156113705760405162461bcd60e51b815260206004820152601b60248201527f35446567726565733a20696e76616c6964206d73672e76616c756500000000006044820152606401610610565b6040516001600160a01b038316903480156108fc02916000818181858888f193505050501580156113a5573d6000803e3d6000fd5b506114bf565b604080513360248201526001600160a01b038481166044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b179052915160009283929087169161140d91906136be565b6000604051808303816000865af19150503d806000811461144a576040519150601f19603f3d011682016040523d82523d6000602084013e61144f565b606091505b50915091508180156114795750805115806114795750808060200190518101906114799190613505565b6114bc5760405162461bcd60e51b81526020600482015260146024820152731d1c985b9cd9995c97d99c9bdb57d9985a5b195960621b6044820152606401610610565b50505b5050505b6000838152600460205260409020600201849055827f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b6107538261076e565b3360008181526004602052604080822081516080810190925280548290829061152a90613cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461155690613cd9565b80156115a35780601f10611578576101008083540402835291602001916115a3565b820191906000526020600020905b81548152906001019060200180831161158657829003601f168201915b505050505081526020016001820180546115bc90613cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546115e890613cd9565b80156116355780601f1061160a57610100808354040283529160200191611635565b820191906000526020600020905b81548152906001019060200180831161161857829003601f168201915b505050505081526020016002820154815260200160038201805461165890613cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461168490613cd9565b80156116d15780601f106116a6576101008083540402835291602001916116d1565b820191906000526020600020905b8154815290600101906020018083116116b457829003601f168201915b50505050508152505090508060400151600014156116f25760075460408201525b6000828152600560205260409020548310156117615760405162461bcd60e51b815260206004820152602860248201527f35446567726565733a206d757374206265206c6172676572207468616e2074686044820152676520737570706c7960c01b6064820152608401610610565b828160400151116117b45760405162461bcd60e51b815260206004820152601f60248201527f35446567726565733a20737570706f7274206465637265617365206f6e6c79006044820152606401610610565b6000828152600460205260409020600201839055817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b6117f38261076e565b604051611800919061394c565b60405180910390a2505050565b33610a178183611c3e565b32610a178183611f60565b610a17338383612489565b32610a178282612381565b32610a178282612137565b61184e85856105a8565b1561186b5760405162461bcd60e51b815260040161061090613bed565b600061187786336105a8565b116118945760405162461bcd60e51b815260040161061090613b17565b6118d78686868686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061256292505050565b6001600160a01b038616600090815260066020526040812080548592906118ff908490613c92565b90915550506001600160a01b0385166000908152600660205260408120805485929061192c908490613c47565b9091555050505050505050565b6003546001600160a01b031633146119635760405162461bcd60e51b815260040161061090613ae2565b6001600160a01b0381166119c85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610610565b6119d18161232f565b50565b6060816119f85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a225780611a0c81613d40565b9150611a1b9050600a83613c5f565b91506119fc565b6000816001600160401b03811115611a3c57611a3c613db1565b6040519080825280601f01601f191660200182016040528015611a66576020820181803683370190505b5090505b8415611ad157611a7b600183613c92565b9150611a88600a86613d5b565b611a93906030613c47565b60f81b818381518110611aa857611aa8613d9b565b60200101906001600160f81b031916908160001a905350611aca600a86613c5f565b9450611a6a565b949350505050565b805160609080611af9575050604080516020810190915260008152919050565b60006003611b08836002613c47565b611b129190613c5f565b611b1d906004613c73565b90506000611b2c826020613c47565b6001600160401b03811115611b4357611b43613db1565b6040519080825280601f01601f191660200182016040528015611b6d576020820181803683370190505b5090506000604051806060016040528060408152602001613ea6604091399050600181016020830160005b86811015611bf9576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101611b98565b506003860660018114611c135760028114611c2457611c30565b613d3d60f01b600119830152611c30565b603d60f81b6000198301525b505050918152949350505050565b600081516001600160401b03811115611c5957611c59613db1565b604051908082528060200260200182016040528015611c82578160200160208202803683370190505b509050600082516001600160401b03811115611ca057611ca0613db1565b604051908082528060200260200182016040528015611cc9578160200160208202803683370190505b50905060005b8351811015611e50576000848281518110611cec57611cec613d9b565b60200260200101516001600160a01b03169050848281518110611d1157611d11613d9b565b60200260200101516001600160a01b0316866001600160a01b03161480611d4157506000611d3f87836105a8565b115b80611d725750600081815260046020908152604080832060020154600590925290912054611d70906001613c47565b115b15611d7d5750611e3e565b600081815260046020526040902060020154611da9576007546000828152600460205260409020600201555b6001600160a01b0386166000908152600660205260408120805460019290611dd2908490613c47565b90915550506000818152600560205260408120805460019290611df6908490613c47565b9250508190555080848381518110611e1057611e10613d9b565b6020026020010181815250506001838381518110611e3057611e30613d9b565b602002602001018181525050505b80611e4881613d40565b915050611ccf565b50611e6c848383604051806020016040528060008152506125e9565b836001600160a01b031683604051611e84919061367f565b60405180910390207faf4805d98123d9bc481216a904ea136e7fa251bf1d5f547d32effd3bcc4b056884604051611ebb919061390b565b60405180910390a350505050565b6001600160a01b038516331480611ee55750611ee5853361053a565b611f4c5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610610565b611f598585858585612734565b5050505050565b600081516001600160401b03811115611f7b57611f7b613db1565b604051908082528060200260200182016040528015611fa4578160200160208202803683370190505b509050600082516001600160401b03811115611fc257611fc2613db1565b604051908082528060200260200182016040528015611feb578160200160208202803683370190505b50905060005b83518110156120dc57600084828151811061200e5761200e613d9b565b60200260200101516001600160a01b0316905061202b86826105a8565b61203557506120ca565b6001600160a01b038616600090815260066020526040812080546001929061205e908490613c92565b90915550506000818152600560205260408120805460019290612082908490613c92565b925050819055508084838151811061209c5761209c613d9b565b60200260200101818152505060018383815181106120bc576120bc613d9b565b602002602001018181525050505b806120d481613d40565b915050611ff1565b506120e88483836128d0565b836001600160a01b031683604051612100919061367f565b60405180910390207f6545f33dd9fe7308328f55cd65832c94ac22fad9ceff6790be226dc1832769a384604051611ebb919061390b565b6001600160a01b0380831690821681141561219f5760405162461bcd60e51b815260206004820152602260248201527f35446567726565733a2063616e6e6f74206d696e7420796f7572206f776e204e604482015261119560f21b6064820152608401610610565b6121a982826105a8565b156121c65760405162461bcd60e51b815260040161061090613bed565b6000818152600460205260409020600201546121f65760075460008281526004602052604090206002015561226d565b60008181526004602090815260408083206002015460059092529091205461221f906001613c47565b111561226d5760405162461bcd60e51b815260206004820181905260248201527f35446567726565733a206c6172676572207468616e206d617820737570706c796044820152606401610610565b6122898282600160405180602001604052806000815250612a4c565b6001600160a01b03821660009081526006602052604081208054600192906122b2908490613c47565b909155505060008181526005602052604081208054600192906122d6908490613c47565b92505081905550816001600160a01b0316836001600160a01b03167fab8530f87dc9b59234c4623bf917212bb2536d647574c8e7e5da92c2ede0c9f88360405161232291815260200190565b60405180910390a3505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600061239783836105a8565b116123e45760405162461bcd60e51b815260206004820152601b60248201527f35446567726565733a20746f6b656e206e6f74206578697374656400000000006044820152606401610610565b6123f082826001612b1c565b6001600160a01b0382166000908152600660205260408120805460019290612419908490613c92565b9091555050600081815260056020526040812080546001929061243d908490613c92565b92505081905550816001600160a01b0316836001600160a01b03167fbac40739b0d4ca32fa2d82fc91630465ba3eddd1598da6fca393b26fb63b94538360405161232291815260200190565b816001600160a01b0316836001600160a01b031614156124fd5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610610565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319101612322565b6001600160a01b03851633148061257e575061257e853361053a565b6125dc5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610610565b611f598585858585612c1e565b6001600160a01b03841661260f5760405162461bcd60e51b815260040161061090613bac565b81518351146126305760405162461bcd60e51b815260040161061090613b64565b3360005b84518110156126cc5783818151811061264f5761264f613d9b565b602002602001015160008087848151811061266c5761266c613d9b565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546126b49190613c47565b909155508190506126c481613d40565b915050612634565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161271d92919061391e565b60405180910390a4611f5981600087878787612d3b565b81518351146127555760405162461bcd60e51b815260040161061090613b64565b6001600160a01b03841661277b5760405162461bcd60e51b815260040161061090613a10565b3360005b845181101561286257600085828151811061279c5761279c613d9b565b6020026020010151905060008583815181106127ba576127ba613d9b565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561280a5760405162461bcd60e51b815260040161061090613a98565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290612847908490613c47565b925050819055505050508061285b90613d40565b905061277f565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516128b292919061391e565b60405180910390a46128c8818787878787612d3b565b505050505050565b6001600160a01b0383166128f65760405162461bcd60e51b815260040161061090613a55565b80518251146129175760405162461bcd60e51b815260040161061090613b64565b604080516020810190915260009081905233905b83518110156129ed57600084828151811061294857612948613d9b565b60200260200101519050600084838151811061296657612966613d9b565b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156129b65760405162461bcd60e51b8152600401610610906139cc565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806129e581613d40565b91505061292b565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612a3e92919061391e565b60405180910390a450505050565b6001600160a01b038416612a725760405162461bcd60e51b815260040161061090613bac565b33612a8c81600087612a8388612ea6565b611f5988612ea6565b6000848152602081815260408083206001600160a01b038916845290915281208054859290612abc908490613c47565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611f5981600087878787612ef1565b6001600160a01b038316612b425760405162461bcd60e51b815260040161061090613a55565b33612b7281856000612b5387612ea6565b612b5c87612ea6565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b038816845290915290205482811015612bb35760405162461bcd60e51b8152600401610610906139cc565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6001600160a01b038416612c445760405162461bcd60e51b815260040161061090613a10565b33612c54818787612a8388612ea6565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015612c955760405162461bcd60e51b815260040161061090613a98565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290612cd2908490613c47565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612d32828888888888612ef1565b50505050505050565b6001600160a01b0384163b156128c85760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190612d7f9089908990889088908890600401613868565b602060405180830381600087803b158015612d9957600080fd5b505af1925050508015612dc9575060408051601f3d908101601f19168201909252612dc69181019061353f565b60015b612e7657612dd5613dc7565b806308c379a01415612e0f5750612dea613de3565b80612df55750612e11565b8060405162461bcd60e51b8152600401610610919061394c565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610610565b6001600160e01b0319811663bc197c8160e01b14612d325760405162461bcd60e51b815260040161061090613984565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612ee057612ee0613d9b565b602090810291909101015292915050565b6001600160a01b0384163b156128c85760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612f3590899089908890889088906004016138c6565b602060405180830381600087803b158015612f4f57600080fd5b505af1925050508015612f7f575060408051601f3d908101601f19168201909252612f7c9181019061353f565b60015b612f8b57612dd5613dc7565b6001600160e01b0319811663f23a6e6160e01b14612d325760405162461bcd60e51b815260040161061090613984565b828054612fc790613cd9565b90600052602060002090601f016020900481019282612fe9576000855561302f565b82601f1061300257805160ff191683800117855561302f565b8280016001018555821561302f579182015b8281111561302f578251825591602001919060010190613014565b5061303b92915061303f565b5090565b5b8082111561303b5760008155600101613040565b600082601f83011261306557600080fd5b8135602061307282613c24565b60405161307f8282613d14565b8381528281019150858301600585901b8701840188101561309f57600080fd5b60005b858110156130c75781356130b581613e6c565b845292840192908401906001016130a2565b5090979650505050505050565b60008083601f8401126130e657600080fd5b5081356001600160401b038111156130fd57600080fd5b6020830191508360208260051b850101111561311857600080fd5b9250929050565b60008083601f84011261313157600080fd5b5081356001600160401b0381111561314857600080fd5b60208301915083602082850101111561311857600080fd5b600082601f83011261317157600080fd5b81356001600160401b0381111561318a5761318a613db1565b6040516131a1601f8301601f191660200182613d14565b8181528460208386010111156131b657600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156131e557600080fd5b81356131f081613e6c565b9392505050565b6000806040838503121561320a57600080fd5b823561321581613e6c565b9150602083013561322581613e6c565b809150509250929050565b60008060008060008060008060a0898b03121561324c57600080fd5b883561325781613e6c565b9750602089013561326781613e6c565b965060408901356001600160401b038082111561328357600080fd5b61328f8c838d016130d4565b909850965060608b01359150808211156132a857600080fd5b6132b48c838d016130d4565b909650945060808b01359150808211156132cd57600080fd5b506132da8b828c0161311f565b999c989b5096995094979396929594505050565b60008060006060848603121561330357600080fd5b835161330e81613e6c565b602085015190935061331f81613e6c565b80925050604084015190509250925092565b60008060008060008060a0878903121561334a57600080fd5b863561335581613e6c565b9550602087013561336581613e6c565b9450604087013593506060870135925060808701356001600160401b0381111561338e57600080fd5b61339a89828a0161311f565b979a9699509497509295939492505050565b600080604083850312156133bf57600080fd5b82356133ca81613e6c565b9150602083013561322581613e81565b600080604083850312156133ed57600080fd5b82356133f881613e6c565b946020939093013593505050565b60006020828403121561341857600080fd5b81356001600160401b0381111561342e57600080fd5b611ad184828501613054565b6000806040838503121561344d57600080fd5b82356001600160401b038082111561346457600080fd5b61347086838701613054565b935060209150818501358181111561348757600080fd5b85019050601f8101861361349a57600080fd5b80356134a581613c24565b6040516134b28282613d14565b8281528481019150838501600584901b850186018a10156134d257600080fd5b600094505b838510156134f55780358352600194909401939185019185016134d7565b5080955050505050509250929050565b60006020828403121561351757600080fd5b81516131f081613e81565b60006020828403121561353457600080fd5b81356131f081613e8f565b60006020828403121561355157600080fd5b81516131f081613e8f565b60008060006060848603121561357157600080fd5b83356001600160401b038082111561358857600080fd5b61359487838801613160565b945060208601359150808211156135aa57600080fd5b6135b687838801613160565b935060408601359150808211156135cc57600080fd5b506135d986828701613160565b9150509250925092565b6000602082840312156135f557600080fd5b5035919050565b600081518084526020808501945080840160005b8381101561362c57815187529582019590820190600101613610565b509495945050505050565b6000815180845261364f816020860160208601613ca9565b601f01601f19169290920160200192915050565b60008151613675818560208601613ca9565b9290920192915050565b815160009082906020808601845b838110156136b25781516001600160a01b03168552938201939082019060010161368d565b50929695505050505050565b600082516136d0818460208701613ca9565b9190910192915050565b6a3d90113730b6b2911d101160a91b8152865160009061370181600b850160208c01613ca9565b6201116160ed1b600b918401918201819052691134b6b0b3b2911d101160b11b600e8301528851613739816018850160208d01613ca9565b601892019182018190526d1136b0bc29bab838363c911d101160911b601b830152875161376d816029850160208c01613ca9565b60299201918201526138166138076138016137e66137b46137e06137c3826137ae602c8a016f113a37b5b2b729bab838363c911d101160811b815260100190565b8e613663565b6201116160ed1b815260030190565b70113a37ba30b62130b630b731b2911d101160791b815260110190565b8a613663565b6e11383937b832b93a34b2b9911d101160891b8152600f0190565b86613663565b6222207d60e81b815260030190565b9998505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161385b81601d850160208701613ca9565b91909101601d0192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090613894908301866135fc565b82810360608401526138a681866135fc565b905082810360808401526138ba8185613637565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061390090830184613637565b979650505050505050565b6020815260006131f060208301846135fc565b60408152600061393160408301856135fc565b828103602084015261394381856135fc565b95945050505050565b6020815260006131f06020830184613637565b6040815260006139726040830185613637565b82810360208401526139438185613637565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602d908201527f35446567726565733a207265636569766572206861736e2774206d696e74656460408201526c081cd95b99195c89dcc8139195609a1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526018908201527f35446567726565733a20616c7265616479206d696e7465640000000000000000604082015260600190565b60006001600160401b03821115613c3d57613c3d613db1565b5060051b60200190565b60008219821115613c5a57613c5a613d6f565b500190565b600082613c6e57613c6e613d85565b500490565b6000816000190483118215151615613c8d57613c8d613d6f565b500290565b600082821015613ca457613ca4613d6f565b500390565b60005b83811015613cc4578181015183820152602001613cac565b83811115613cd3576000848401525b50505050565b600181811c90821680613ced57607f821691505b60208210811415613d0e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b0381118282101715613d3957613d39613db1565b6040525050565b6000600019821415613d5457613d54613d6f565b5060010190565b600082613d6a57613d6a613d85565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115613de05760046000803e5060005160e01c5b90565b600060443d1015613df15790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715613e2057505050505090565b8285019150815181811115613e385750505050505090565b843d8701016020828501011115613e525750505050505090565b613e6160208286010187613d14565b509095945050505050565b6001600160a01b03811681146119d157600080fd5b80151581146119d157600080fd5b6001600160e01b0319811681146119d157600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122031c6f8d64fa6b9f06ee98c08f0eb29e97a81ee45d88db331e1218953afbf2f0d64736f6c63430008070033

Deployed Bytecode Sourcemap

149:10987:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2115:228:3;;;;;;;;;;-1:-1:-1;2115:228:3;;;;;:::i;:::-;;:::i;:::-;;;29248:25:13;;;29236:2;29221:18;2115:228:3;;;;;;;;1166:305;;;;;;;;;;-1:-1:-1;1166:305:3;;;;;:::i;:::-;;:::i;:::-;;;18202:14:13;;18195:22;18177:41;;18165:2;18150:18;1166:305:3;18037:187:13;1213:335:5;;;;;;;;;;-1:-1:-1;1213:335:5;;;;;:::i;:::-;;:::i;:::-;;1554:1293;;;;;;;;;;-1:-1:-1;1554:1293:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6560:155::-;;;;;;;;;;-1:-1:-1;6560:155:5;;;;;:::i;:::-;;:::i;2853:226::-;;;;;;;;;;-1:-1:-1;2853:226:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;3356:87::-;;;;;;;;;;-1:-1:-1;3356:87:5;;;;;:::i;:::-;;:::i;9870:800::-;;;;;;;;;;-1:-1:-1;9870:800:5;;;;;:::i;:::-;;:::i;2500:508:3:-;;;;;;;;;;-1:-1:-1;2500:508:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;8291:148:5:-;;;;;;;;;;-1:-1:-1;8291:148:5;;;;;:::i;:::-;;:::i;5424:127::-;;;;;;;;;;-1:-1:-1;5424:127:5;;;;;:::i;:::-;;:::i;3449:314::-;;;;;;;;;;-1:-1:-1;3449:314:5;;;;;:::i;:::-;;:::i;1661:101:11:-;;;;;;;;;;;;;:::i;7622:127:5:-;;;;;;;;;;-1:-1:-1;7622:127:5;;;;;:::i;:::-;;:::i;1029:85:11:-;;;;;;;;;;-1:-1:-1;1101:6:11;;-1:-1:-1;;;;;1101:6:11;1029:85;;;-1:-1:-1;;;;;15109:32:13;;;15091:51;;15079:2;15064:18;1029:85:11;14945:203:13;680:24:5;;;;;;;;;;-1:-1:-1;680:24:5;;;;-1:-1:-1;;;;;680:24:5;;;3769:1139;;;;;;:::i;:::-;;:::i;4914:504::-;;;;;;;;;;-1:-1:-1;4914:504:5;;;;;:::i;:::-;;:::i;6406:148::-;;;;;;;;;;-1:-1:-1;6406:148:5;;;;;:::i;:::-;;:::i;8445:155::-;;;;;;;;;;-1:-1:-1;8445:155:5;;;;;:::i;:::-;;:::i;3076:153:3:-;;;;;;;;;;-1:-1:-1;3076:153:3;;;;;:::i;:::-;;:::i;7755:132:5:-;;;;;;;;;;-1:-1:-1;7755:132:5;;;;;:::i;:::-;;:::i;5557:134::-;;;;;;;;;;-1:-1:-1;5557:134:5;;;;;:::i;:::-;;:::i;3085:241::-;;;;;;;;;;-1:-1:-1;3085:241:5;;;;;:::i;:::-;-1:-1:-1;;;;;3228:25:5;3148:19;3215:39;;;:12;:39;;;;;;;;;3279:13;:40;;;;;;;3215:39;;3085:241;;;;;29458:25:13;;;29514:2;29499:18;;29492:34;;;;29431:18;3085:241:5;29284:248:13;3296:166:3;;;;;;;;;;-1:-1:-1;3296:166:3;;;;;:::i;:::-;-1:-1:-1;;;;;3418:27:3;;;3395:4;3418:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;3296:166;9326:538:5;;;;;;;;;;-1:-1:-1;9326:538:5;;;;;:::i;:::-;;:::i;1911:198:11:-;;;;;;;;;;-1:-1:-1;1911:198:11;;;;;:::i;:::-;;:::i;2115:228:3:-;2201:7;-1:-1:-1;;;;;2228:21:3;;2220:77;;;;-1:-1:-1;;;2220:77:3;;19904:2:13;2220:77:3;;;19886:21:13;19943:2;19923:18;;;19916:30;19982:34;19962:18;;;19955:62;-1:-1:-1;;;20033:18:13;;;20026:41;20084:19;;2220:77:3;;;;;;;;;-1:-1:-1;2314:9:3;:13;;;;;;;;;;;-1:-1:-1;;;;;2314:22:3;;;;;;;;;;;;2115:228::o;1166:305::-;1268:4;-1:-1:-1;;;;;;1303:41:3;;-1:-1:-1;;;1303:41:3;;:109;;-1:-1:-1;;;;;;;1360:52:3;;-1:-1:-1;;;1360:52:3;1303:109;:161;;;-1:-1:-1;;;;;;;;;;937:40:4;;;1428:36:3;1284:180;1166:305;-1:-1:-1;;1166:305:3:o;1213:335:5:-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:2;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1374:4:5::1;1332:15;1391:13:::0;;;:4:::1;:13;::::0;;;;;;;:25;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;1426:13:5::1;::::0;;;:4:::1;:13;::::0;;;;;;;:27;;::::1;::::0;:19:::1;::::0;;::::1;::::0;:27;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;1463:13:5::1;::::0;;;:4:::1;:13;::::0;;;;;;;:37;;::::1;::::0;:24:::1;::::0;;::::1;::::0;:37;::::1;::::0;::::1;:::i;:::-;;1533:7;1515:26;1519:12;1523:7;1519:3;:12::i;:::-;1515:26;;;;;;:::i;:::-;;;;;;;;1322:226;1213:335:::0;;;:::o;1554:1293::-;1622:13;1647:24;1674:4;:13;1679:7;1674:13;;;;;;;;;;;1647:40;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1701:4;:14;;;1719:1;1701:19;1697:78;;;1753:11;;1736:14;;;:28;1697:78;1784:17;1804:21;;;:12;:21;;;;;;;;;1856:13;:22;;;;;;2068:9;;2172:10;;;;2281:14;;;;1804:21;;1856:22;;1784:17;;1909:851;;2281:25;;:23;:25::i;:::-;2407:20;:9;:18;:20::i;:::-;2529:21;:10;:19;:21::i;:::-;2650:4;:15;;;1987:731;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1909:13;:851::i;:::-;1888:872;;2834:4;2784:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;2770:70;;;;;;1554:1293;;;:::o;6560:155::-;6650:9;6669:39;6650:9;6699:8;6669:19;:39::i;:::-;6621:94;6560:155;:::o;2853:226::-;2909:18;2929:19;2960:24;2987:4;:31;3008:7;-1:-1:-1;;;;;2992:25:5;2987:31;;;;;;;;;;;2960:58;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3035:4;:9;;;3028:16;;3062:4;:10;;;3054:18;;2950:129;2853:226;;;:::o;3356:87::-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:2;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;3419:9:5::1;:17:::0;;-1:-1:-1;;;;;;3419:17:5::1;-1:-1:-1::0;;;;;3419:17:5;;;::::1;::::0;;;::::1;::::0;;3356:87::o;9870:800::-;10080:28;;;10072:85;;;;-1:-1:-1;;;10072:85:5;;25792:2:13;10072:85:5;;;25774:21:13;25831:2;25811:18;;;25804:30;25870:34;25850:18;;;25843:62;-1:-1:-1;;;25921:18:13;;;25914:42;25973:19;;10072:85:5;25590:408:13;10072:85:5;10167:14;10200:9;10195:169;10215:14;;;10195:169;;;10258:27;10274:2;10278:3;;10282:1;10278:6;;;;;;;:::i;:::-;;;;;;;10258:15;:27::i;:::-;:32;10250:69;;;;-1:-1:-1;;;10250:69:5;;;;;;;:::i;:::-;10343:7;;10351:1;10343:10;;;;;;;:::i;:::-;;;;;;;10333:20;;;;;:::i;:::-;;-1:-1:-1;10231:3:5;;;;:::i;:::-;;;;10195:169;;;-1:-1:-1;10433:1:5;10381:49;10397:2;10417:10;10381:15;:49::i;:::-;:53;10373:111;;;;-1:-1:-1;;;10373:111:5;;;;;;;:::i;:::-;10494:57;10522:4;10528:2;10532:3;;10494:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;10494:57:5;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10537:7:5;;-1:-1:-1;10537:7:5;;;;10494:57;;;10537:7;;10494:57;10537:7;10494:57;;;;;;;;;-1:-1:-1;;10494:57:5;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10546:4:5;;-1:-1:-1;10546:4:5;;;;10494:57;;10546:4;;;;10494:57;;;;;;;;;-1:-1:-1;10494:27:5;;-1:-1:-1;;;10494:57:5:i;:::-;-1:-1:-1;;;;;10575:22:5;;10561:37;;;;:13;:37;;;;;:47;;10602:6;;10561:37;:47;;10602:6;;10561:47;:::i;:::-;;;;-1:-1:-1;;;;;;;10632:20:5;;10618:35;;;;:13;:35;;;;;:45;;10657:6;;10618:35;:45;;10657:6;;10618:45;:::i;:::-;;;;-1:-1:-1;;;;;;;;;;;9870:800:5:o;2500:508:3:-;2651:16;2710:3;:10;2691:8;:15;:29;2683:83;;;;-1:-1:-1;;;2683:83:3;;26615:2:13;2683:83:3;;;26597:21:13;26654:2;26634:18;;;26627:30;26693:34;26673:18;;;26666:62;-1:-1:-1;;;26744:18:13;;;26737:39;26793:19;;2683:83:3;26413:405:13;2683:83:3;2777:30;2824:8;:15;-1:-1:-1;;;;;2810:30:3;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2810:30:3;;2777:63;;2856:9;2851:120;2875:8;:15;2871:1;:19;2851:120;;;2930:30;2940:8;2949:1;2940:11;;;;;;;;:::i;:::-;;;;;;;2953:3;2957:1;2953:6;;;;;;;;:::i;:::-;;;;;;;2930:9;:30::i;:::-;2911:13;2925:1;2911:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;2892:3;;;:::i;:::-;;;2851:120;;;-1:-1:-1;2988:13:3;2500:508;-1:-1:-1;;;2500:508:3:o;8291:148:5:-;8373:10;8393:39;8373:10;8423:8;8393:19;:39::i;5424:127::-;5491:10;5511:33;5526:7;5491:10;5511:14;:33::i;3449:314::-;3584:10;3550:15;3606:13;;;:4;:13;;;;;;;;:25;;;;;;;;:::i;1661:101:11:-;1101:6;;-1:-1:-1;;;;;1101:6:11;719:10:2;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;7622:127:5:-;7689:10;7709:33;7724:7;7689:10;7709:14;:33::i;3769:1139::-;3871:10;3837:15;3920:13;;;:4;:13;;;;;;3893:40;;;;;;;;;;;;3920:13;;3893:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3947:4;:14;;;3965:1;3947:19;3943:78;;;3999:11;;3982:14;;;:28;3943:78;4047:14;;;;4079:15;;;4071:59;;;;-1:-1:-1;;;4071:59:5;;21898:2:13;4071:59:5;;;21880:21:13;21937:2;21917:18;;;21910:30;21976:33;21956:18;;;21949:61;22027:18;;4071:59:5;21696:355:13;4071:59:5;4144:9;;-1:-1:-1;;;;;4144:9:5;:23;4140:679;;4245:9;;4235:57;;-1:-1:-1;;;4235:57:5;;4265:10;4235:57;;;17153:51:13;17220:18;;;17213:34;;;17263:18;;;17256:34;;;4184:13:5;;;;;;-1:-1:-1;;;;;4245:9:5;;4235:29;;17126:18:13;;4235:57:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4183:109;;-1:-1:-1;4183:109:5;-1:-1:-1;4183:109:5;-1:-1:-1;4310:10:5;;4306:503;;-1:-1:-1;;;;;4344:19:5;;4340:455;;4408:6;4395:9;:19;;4387:59;;;;-1:-1:-1;;;4387:59:5;;28948:2:13;4387:59:5;;;28930:21:13;28987:2;28967:18;;;28960:30;29026:29;29006:18;;;28999:57;29073:18;;4387:59:5;28746:351:13;4387:59:5;4468:37;;-1:-1:-1;;;;;4468:26:5;;;4495:9;4468:37;;;;;;;;;4495:9;4468:26;:37;;;;;;;;;;;;;;;;;;;;;4340:455;;;4599:64;;;4634:10;4599:64;;;16235:34:13;-1:-1:-1;;;;;16305:15:13;;;16285:18;;;16278:43;16337:18;;;;16330:34;;;4599:64:5;;;;;;;;;;16170:18:13;;;;4599:64:5;;;;;;;-1:-1:-1;;;;;4599:64:5;-1:-1:-1;;;4599:64:5;;;4588:76;;-1:-1:-1;;;;4588:10:5;;;;:76;;4599:64;4588:76;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4552:112;;;;4694:7;:57;;;;-1:-1:-1;4706:11:5;;:16;;:44;;;4737:4;4726:24;;;;;;;;;;;;:::i;:::-;4686:90;;;;-1:-1:-1;;;4686:90:5;;23492:2:13;4686:90:5;;;23474:21:13;23531:2;23511:18;;;23504:30;-1:-1:-1;;;23550:18:13;;;23543:50;23610:18;;4686:90:5;23290:344:13;4686:90:5;4530:265;;4340:455;4169:650;;;4140:679;4828:13;;;;:4;:13;;;;;:23;;:32;;;4833:7;4875:26;4879:12;4833:7;4879:3;:12::i;4914:504::-;5008:10;4974:15;5057:13;;;:4;:13;;;;;;5030:40;;;;;;;;;;;;5057:13;;5030:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5084:4;:14;;;5102:1;5084:19;5080:78;;;5136:11;;5119:14;;;:28;5080:78;5185:21;;;;:12;:21;;;;;;5175:31;;;5167:84;;;;-1:-1:-1;;;5167:84:5;;22258:2:13;5167:84:5;;;22240:21:13;22297:2;22277:18;;;22270:30;22336:34;22316:18;;;22309:62;-1:-1:-1;;;22387:18:13;;;22380:38;22435:19;;5167:84:5;22056:404:13;5167:84:5;5286:6;5269:4;:14;;;:23;5261:67;;;;-1:-1:-1;;;5261:67:5;;21128:2:13;5261:67:5;;;21110:21:13;21167:2;21147:18;;;21140:30;21206:33;21186:18;;;21179:61;21257:18;;5261:67:5;20926:355:13;5261:67:5;5338:13;;;;:4;:13;;;;;:23;;:32;;;5343:7;5385:26;5389:12;5343:7;5389:3;:12::i;:::-;5385:26;;;;;;:::i;:::-;;;;;;;;4964:454;;4914:504;:::o;6406:148::-;6488:10;6508:39;6488:10;6538:8;6508:19;:39::i;8445:155::-;8535:9;8554:39;8535:9;8584:8;8554:19;:39::i;3076:153:3:-;3170:52;719:10:2;3203:8:3;3213;3170:18;:52::i;7755:132:5:-;7828:9;7847:33;7862:7;7828:9;7847:14;:33::i;5557:134::-;5632:9;5651:33;5666:7;5632:9;5651:14;:33::i;9326:538::-;9507:23;9523:2;9527;9507:15;:23::i;:::-;:28;9499:65;;;;-1:-1:-1;;;9499:65:5;;;;;;;:::i;:::-;9634:1;9582:49;9598:2;9618:10;9582:15;:49::i;:::-;:53;9574:111;;;;-1:-1:-1;;;9574:111:5;;;;;;;:::i;:::-;9695:50;9718:4;9724:2;9728;9732:6;9740:4;;9695:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9695:22:5;;-1:-1:-1;;;9695:50:5:i;:::-;-1:-1:-1;;;;;9769:22:5;;9755:37;;;;:13;:37;;;;;:47;;9796:6;;9755:37;:47;;9796:6;;9755:47;:::i;:::-;;;;-1:-1:-1;;;;;;;9826:20:5;;9812:35;;;;:13;:35;;;;;:45;;9851:6;;9812:35;:45;;9851:6;;9812:45;:::i;:::-;;;;-1:-1:-1;;;;;;;;9326:538:5:o;1911:198:11:-;1101:6;;-1:-1:-1;;;;;1101:6:11;719:10:2;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:11;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:11;;20316:2:13;1991:73:11::1;::::0;::::1;20298:21:13::0;20355:2;20335:18;;;20328:30;20394:34;20374:18;;;20367:62;-1:-1:-1;;;20445:18:13;;;20438:36;20491:19;;1991:73:11::1;20114:402:13::0;1991:73:11::1;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;112:515:12:-;168:13;197:10;193:51;;-1:-1:-1;;223:10:12;;;;;;;;;;;;-1:-1:-1;;;223:10:12;;;;;112:515::o;193:51::-;268:5;253:12;307:75;314:9;;307:75;;339:8;;;;:::i;:::-;;-1:-1:-1;361:10:12;;-1:-1:-1;369:2:12;361:10;;:::i;:::-;;;307:75;;;391:19;423:6;-1:-1:-1;;;;;413:17:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;413:17:12;;391:39;;440:150;447:10;;440:150;;473:11;483:1;473:11;;:::i;:::-;;-1:-1:-1;541:10:12;549:2;541:5;:10;:::i;:::-;528:24;;:2;:24;:::i;:::-;515:39;;498:6;505;498:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;498:56:12;;;;;;;;-1:-1:-1;568:11:12;577:2;568:11;;:::i;:::-;;;440:150;;;613:6;112:515;-1:-1:-1;;;;112:515:12:o;151:1731:1:-;248:11;;209:13;;273:8;269:23;;-1:-1:-1;;283:9:1;;;;;;;;;-1:-1:-1;283:9:1;;;151:1731;-1:-1:-1;151:1731:1:o;269:23::-;341:18;379:1;368:7;:3;374:1;368:7;:::i;:::-;367:13;;;;:::i;:::-;362:19;;:1;:19;:::i;:::-;341:40;-1:-1:-1;436:19:1;468:15;341:40;481:2;468:15;:::i;:::-;-1:-1:-1;;;;;458:26:1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;458:26:1;;436:48;;495:18;516:5;;;;;;;;;;;;;;;;;495:26;;582:1;575:5;571:13;626:2;618:6;614:15;674:1;643:931;696:3;693:1;690:10;643:931;;;748:1;790:12;;;;;784:19;883:4;871:2;867:14;;;;;849:40;;843:47;1031:2;1027:14;;;1023:25;;1009:40;;1003:47;1216:1;1212:13;;;1208:24;;1194:39;;1188:46;1392:16;;;;1378:31;;1372:38;918:1;914:11;;;1052:4;999:58;;;949:126;1099:11;;1184:57;;;1134:125;;;;1283:11;;1368:49;;1318:117;1463:3;1459:13;1490:22;;1558:1;1543:17;;;;741:9;643:931;;;647:42;1604:1;1599:3;1595:11;1624:1;1619:82;;;;1719:1;1714:80;;;;1588:206;;1619:82;-1:-1:-1;;;;;1651:17:1;;1644:43;1619:82;;1714:80;-1:-1:-1;;;;;1746:17:1;;1739:41;1588:206;-1:-1:-1;;;1808:26:1;;;1815:6;151:1731;-1:-1:-1;;;;151:1731:1:o;6721:895:5:-;6814:20;6851:8;:15;-1:-1:-1;;;;;6837:30:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6837:30:5;;6814:53;;6877:24;6918:8;:15;-1:-1:-1;;;;;6904:30:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6904:30:5;;6877:57;;6949:9;6944:569;6964:8;:15;6960:1;:19;6944:569;;;7000:15;7034:8;7043:1;7034:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;7018:29:5;7000:47;;7077:8;7086:1;7077:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;7065:23:5;:8;-1:-1:-1;;;;;7065:23:5;;:65;;;;7129:1;7092:34;7108:8;7118:7;7092:15;:34::i;:::-;:38;7065:65;:120;;;-1:-1:-1;7162:13:5;;;;:4;:13;;;;;;;;:23;;;7134:12;:21;;;;;;;:25;;7158:1;7134:25;:::i;:::-;:51;7065:120;7061:167;;;7205:8;;;7061:167;7245:13;;;;:4;:13;;;;;:23;;;7241:104;;7319:11;;7293:13;;;;:4;:13;;;;;:23;;:37;7241:104;-1:-1:-1;;;;;7372:26:5;;7358:41;;;;:13;:41;;;;;:46;;7403:1;;7358:41;:46;;7403:1;;7358:46;:::i;:::-;;;;-1:-1:-1;;7418:21:5;;;;:12;:21;;;;;:26;;7443:1;;7418:21;:26;;7443:1;;7418:26;:::i;:::-;;;;;;;;7467:7;7458:3;7462:1;7458:6;;;;;;;;:::i;:::-;;;;;;:16;;;;;7501:1;7488:7;7496:1;7488:10;;;;;;;;:::i;:::-;;;;;;:14;;;;;6986:527;6944:569;6981:3;;;;:::i;:::-;;;;6944:569;;;;7522:38;7533:8;7543:3;7548:7;7522:38;;;;;;;;;;;;:10;:38::i;:::-;7595:8;-1:-1:-1;;;;;7575:34:5;7585:8;7575:34;;;;;;:::i;:::-;;;;;;;;;7605:3;7575:34;;;;;;:::i;:::-;;;;;;;;6804:812;;6721:895;;:::o;3990:430:3:-;-1:-1:-1;;;;;4215:20:3;;719:10:2;4215:20:3;;:60;;-1:-1:-1;4239:36:3;4256:4;719:10:2;3296:166:3;:::i;4239:36::-;4194:157;;;;-1:-1:-1;;;4194:157:3;;23073:2:13;4194:157:3;;;23055:21:13;23112:2;23092:18;;;23085:30;23151:34;23131:18;;;23124:62;-1:-1:-1;;;23202:18:13;;;23195:48;23260:19;;4194:157:3;22871:414:13;4194:157:3;4361:52;4384:4;4390:2;4394:3;4399:7;4408:4;4361:22;:52::i;:::-;3990:430;;;;;:::o;8606:693:5:-;8699:20;8736:8;:15;-1:-1:-1;;;;;8722:30:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8722:30:5;;8699:53;;8762:24;8803:8;:15;-1:-1:-1;;;;;8789:30:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8789:30:5;;8762:57;;8834:9;8829:371;8849:8;:15;8845:1;:19;8829:371;;;8885:15;8919:8;8928:1;8919:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;8903:29:5;8885:47;;8950:34;8966:8;8976:7;8950:15;:34::i;:::-;8946:86;;9009:8;;;8946:86;-1:-1:-1;;;;;9059:26:5;;9045:41;;;;:13;:41;;;;;:46;;9090:1;;9045:41;:46;;9090:1;;9045:46;:::i;:::-;;;;-1:-1:-1;;9105:21:5;;;;:12;:21;;;;;:26;;9130:1;;9105:21;:26;;9130:1;;9105:26;:::i;:::-;;;;;;;;9154:7;9145:3;9149:1;9145:6;;;;;;;;:::i;:::-;;;;;;:16;;;;;9188:1;9175:7;9183:1;9175:10;;;;;;;;:::i;:::-;;;;;;:14;;;;;8871:329;8829:371;8866:3;;;;:::i;:::-;;;;8829:371;;;;9209:34;9220:8;9230:3;9235:7;9209:10;:34::i;:::-;9278:8;-1:-1:-1;;;;;9258:34:5;9268:8;9258:34;;;;;;:::i;:::-;;;;;;;;;9288:3;9258:34;;;;;;:::i;5697:703::-;-1:-1:-1;;;;;5793:25:5;;;;5836:19;;;;;5828:66;;;;-1:-1:-1;;;5828:66:5;;28545:2:13;5828:66:5;;;28527:21:13;28584:2;28564:18;;;28557:30;28623:34;28603:18;;;28596:62;-1:-1:-1;;;28674:18:13;;;28667:32;28716:19;;5828:66:5;28343:398:13;5828:66:5;5912:34;5928:8;5938:7;5912:15;:34::i;:::-;:39;5904:76;;;;-1:-1:-1;;;5904:76:5;;;;;;;:::i;:::-;5994:13;;;;:4;:13;;;;;:23;;;5990:224;;6064:11;;6038:13;;;;:4;:13;;;;;:23;;:37;5990:224;;;6143:13;;;;:4;:13;;;;;;;;:23;;;6114:12;:21;;;;;;;:25;;6138:1;6114:25;:::i;:::-;:52;;6106:97;;;;-1:-1:-1;;;6106:97:5;;25431:2:13;6106:97:5;;;25413:21:13;;;25450:18;;;25443:30;25509:34;25489:18;;;25482:62;25561:18;;6106:97:5;25229:356:13;6106:97:5;6223:31;6229:8;6239:7;6248:1;6223:31;;;;;;;;;;;;:5;:31::i;:::-;-1:-1:-1;;;;;6278:26:5;;6264:41;;;;:13;:41;;;;;:46;;6309:1;;6264:41;:46;;6309:1;;6264:46;:::i;:::-;;;;-1:-1:-1;;6320:21:5;;;;:12;:21;;;;;:26;;6345:1;;6320:21;:26;;6345:1;;6320:26;:::i;:::-;;;;;;;;6375:8;-1:-1:-1;;;;;6361:32:5;6366:7;-1:-1:-1;;;;;6361:32:5;;6385:7;6361:32;;;;29248:25:13;;29236:2;29221:18;;29102:177;6361:32:5;;;;;;;;5765:635;5697:703;;:::o;2263:187:11:-;2355:6;;;-1:-1:-1;;;;;2371:17:11;;;-1:-1:-1;;;;;;2371:17:11;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;7893:392:5:-;-1:-1:-1;;;;;7989:25:5;;7971:15;8032:34;8048:8;7989:25;8032:15;:34::i;:::-;:38;8024:78;;;;-1:-1:-1;;;8024:78:5;;28189:2:13;8024:78:5;;;28171:21:13;28228:2;28208:18;;;28201:30;28267:29;28247:18;;;28240:57;28314:18;;8024:78:5;27987:351:13;8024:78:5;8112:27;8118:8;8128:7;8137:1;8112:5;:27::i;:::-;-1:-1:-1;;;;;8163:26:5;;8149:41;;;;:13;:41;;;;;:46;;8194:1;;8149:41;:46;;8194:1;;8149:46;:::i;:::-;;;;-1:-1:-1;;8205:21:5;;;;:12;:21;;;;;:26;;8230:1;;8205:21;:26;;8230:1;;8205:26;:::i;:::-;;;;;;;;8260:8;-1:-1:-1;;;;;8246:32:5;8251:7;-1:-1:-1;;;;;8246:32:5;;8270:7;8246:32;;;;29248:25:13;;29236:2;29221:18;;29102:177;12019:323:3;12169:8;-1:-1:-1;;;;;12160:17:3;:5;-1:-1:-1;;;;;12160:17:3;;;12152:71;;;;-1:-1:-1;;;12152:71:3;;26205:2:13;12152:71:3;;;26187:21:13;26244:2;26224:18;;;26217:30;26283:34;26263:18;;;26256:62;-1:-1:-1;;;26334:18:13;;;26327:39;26383:19;;12152:71:3;26003:405:13;12152:71:3;-1:-1:-1;;;;;12233:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;12233:46:3;;;;;;;;;;12294:41;;18177::13;;;12294::3;;18150:18:13;12294:41:3;18037:187:13;3529:389:3;-1:-1:-1;;;;;3729:20:3;;719:10:2;3729:20:3;;:60;;-1:-1:-1;3753:36:3;3770:4;719:10:2;3296:166:3;:::i;3753:36::-;3708:148;;;;-1:-1:-1;;;3708:148:3;;21488:2:13;3708:148:3;;;21470:21:13;21527:2;21507:18;;;21500:30;21566:34;21546:18;;;21539:62;-1:-1:-1;;;21617:18:13;;;21610:39;21666:19;;3708:148:3;21286:405:13;3708:148:3;3866:45;3884:4;3890:2;3894;3898:6;3906:4;3866:17;:45::i;9238:715::-;-1:-1:-1;;;;;9410:16:3;;9402:62;;;;-1:-1:-1;;;9402:62:3;;;;;;;:::i;:::-;9496:7;:14;9482:3;:10;:28;9474:81;;;;-1:-1:-1;;;9474:81:3;;;;;;;:::i;:::-;719:10:2;9566:16:3;9685:101;9709:3;:10;9705:1;:14;9685:101;;;9765:7;9773:1;9765:10;;;;;;;;:::i;:::-;;;;;;;9740:9;:17;9750:3;9754:1;9750:6;;;;;;;;:::i;:::-;;;;;;;9740:17;;;;;;;;;;;:21;9758:2;-1:-1:-1;;;;;9740:21:3;-1:-1:-1;;;;;9740:21:3;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;9721:3:3;;-1:-1:-1;9721:3:3;;;:::i;:::-;;;;9685:101;;;;9837:2;-1:-1:-1;;;;;9801:53:3;9833:1;-1:-1:-1;;;;;9801:53:3;9815:8;-1:-1:-1;;;;;9801:53:3;;9841:3;9846:7;9801:53;;;;;;;:::i;:::-;;;;;;;;9865:81;9901:8;9919:1;9923:2;9927:3;9932:7;9941:4;9865:35;:81::i;6013:1045::-;6233:7;:14;6219:3;:10;:28;6211:81;;;;-1:-1:-1;;;6211:81:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;6310:16:3;;6302:66;;;;-1:-1:-1;;;6302:66:3;;;;;;;:::i;:::-;719:10:2;6379:16:3;6492:411;6516:3;:10;6512:1;:14;6492:411;;;6547:10;6560:3;6564:1;6560:6;;;;;;;;:::i;:::-;;;;;;;6547:19;;6580:14;6597:7;6605:1;6597:10;;;;;;;;:::i;:::-;;;;;;;;;;;;6622:19;6644:13;;;;;;;;;;-1:-1:-1;;;;;6644:19:3;;;;;;;;;;;;6597:10;;-1:-1:-1;6685:21:3;;;;6677:76;;;;-1:-1:-1;;;6677:76:3;;;;;;;:::i;:::-;6795:9;:13;;;;;;;;;;;-1:-1:-1;;;;;6795:19:3;;;;;;;;;;6817:20;;;6795:42;;6865:17;;;;;;;:27;;6817:20;;6795:9;6865:27;;6817:20;;6865:27;:::i;:::-;;;;;;;;6533:370;;;6528:3;;;;:::i;:::-;;;6492:411;;;;6948:2;-1:-1:-1;;;;;6918:47:3;6942:4;-1:-1:-1;;;;;6918:47:3;6932:8;-1:-1:-1;;;;;6918:47:3;;6952:3;6957:7;6918:47;;;;;;;:::i;:::-;;;;;;;;6976:75;7012:8;7022:4;7028:2;7032:3;7037:7;7046:4;6976:35;:75::i;:::-;6201:857;6013:1045;;;;;:::o;11017:867::-;-1:-1:-1;;;;;11164:18:3;;11156:66;;;;-1:-1:-1;;;11156:66:3;;;;;;;:::i;:::-;11254:7;:14;11240:3;:10;:28;11232:81;;;;-1:-1:-1;;;11232:81:3;;;;;;;:::i;:::-;11366:66;;;;;;;;;11324:16;11366:66;;;;719:10:2;;11443:364:3;11467:3;:10;11463:1;:14;11443:364;;;11498:10;11511:3;11515:1;11511:6;;;;;;;;:::i;:::-;;;;;;;11498:19;;11531:14;11548:7;11556:1;11548:10;;;;;;;;:::i;:::-;;;;;;;;;;;;11573:19;11595:13;;;;;;;;;;-1:-1:-1;;;;;11595:19:3;;;;;;;;;;;;11548:10;;-1:-1:-1;11636:21:3;;;;11628:70;;;;-1:-1:-1;;;11628:70:3;;;;;;;:::i;:::-;11740:9;:13;;;;;;;;;;;-1:-1:-1;;;;;11740:19:3;;;;;;;;;;11762:20;;11740:42;;11479:3;;;;:::i;:::-;;;;11443:364;;;;11860:1;-1:-1:-1;;;;;11822:55:3;11846:4;-1:-1:-1;;;;;11822:55:3;11836:8;-1:-1:-1;;;;;11822:55:3;;11864:3;11869:7;11822:55;;;;;;;:::i;:::-;;;;;;;;11146:738;11017:867;;;:::o;8340:553::-;-1:-1:-1;;;;;8487:16:3;;8479:62;;;;-1:-1:-1;;;8479:62:3;;;;;;;:::i;:::-;719:10:2;8594:102:3;719:10:2;8552:16:3;8637:2;8641:21;8659:2;8641:17;:21::i;:::-;8664:25;8682:6;8664:17;:25::i;8594:102::-;8707:9;:13;;;;;;;;;;;-1:-1:-1;;;;;8707:17:3;;;;;;;;;:27;;8728:6;;8707:9;:27;;8728:6;;8707:27;:::i;:::-;;;;-1:-1:-1;;8749:52:3;;;29458:25:13;;;29514:2;29499:18;;29492:34;;;-1:-1:-1;;;;;8749:52:3;;;;8782:1;;8749:52;;;;;;29431:18:13;8749:52:3;;;;;;;8812:74;8843:8;8861:1;8865:2;8869;8873:6;8881:4;8812:30;:74::i;10193:630::-;-1:-1:-1;;;;;10315:18:3;;10307:66;;;;-1:-1:-1;;;10307:66:3;;;;;;;:::i;:::-;719:10:2;10426:102:3;719:10:2;10457:4:3;10384:16;10475:21;10493:2;10475:17;:21::i;:::-;10498:25;10516:6;10498:17;:25::i;:::-;-1:-1:-1;;10426:102:3;;;;;;;;;-1:-1:-1;10426:102:3;;-1:-1:-1;;;6013:1045:3;10426:102;10539:19;10561:13;;;;;;;;;;;-1:-1:-1;;;;;10561:19:3;;;;;;;;;;10598:21;;;;10590:70;;;;-1:-1:-1;;;10590:70:3;;;;;;;:::i;:::-;10694:9;:13;;;;;;;;;;;-1:-1:-1;;;;;10694:19:3;;;;;;;;;;;;10716:20;;;10694:42;;10762:54;;29458:25:13;;;29499:18;;;29492:34;;;10694:19:3;;10762:54;;;;;;29431:18:13;10762:54:3;;;;;;;10297:526;;10193:630;;;:::o;4870:797::-;-1:-1:-1;;;;;5051:16:3;;5043:66;;;;-1:-1:-1;;;5043:66:3;;;;;;;:::i;:::-;719:10:2;5162:96:3;719:10:2;5193:4:3;5199:2;5203:21;5221:2;5203:17;:21::i;5162:96::-;5269:19;5291:13;;;;;;;;;;;-1:-1:-1;;;;;5291:19:3;;;;;;;;;;5328:21;;;;5320:76;;;;-1:-1:-1;;;5320:76:3;;;;;;;:::i;:::-;5430:9;:13;;;;;;;;;;;-1:-1:-1;;;;;5430:19:3;;;;;;;;;;5452:20;;;5430:42;;5492:17;;;;;;;:27;;5452:20;;5430:9;5492:27;;5452:20;;5492:27;:::i;:::-;;;;-1:-1:-1;;5535:46:3;;;29458:25:13;;;29514:2;29499:18;;29492:34;;;-1:-1:-1;;;;;5535:46:3;;;;;;;;;;;;;;29431:18:13;5535:46:3;;;;;;;5592:68;5623:8;5633:4;5639:2;5643;5647:6;5655:4;5592:30;:68::i;:::-;5033:634;;4870:797;;;;;:::o;14227:792::-;-1:-1:-1;;;;;14459:13:3;;1465:19:0;:23;14455:558:3;;14494:79;;-1:-1:-1;;;14494:79:3;;-1:-1:-1;;;;;14494:43:3;;;;;:79;;14538:8;;14548:4;;14554:3;;14559:7;;14568:4;;14494:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14494:79:3;;;;;;;;-1:-1:-1;;14494:79:3;;;;;;;;;;;;:::i;:::-;;;14490:513;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;14879:6;14872:14;;-1:-1:-1;;;14872:14:3;;;;;;;;:::i;14490:513::-;;;14926:62;;-1:-1:-1;;;14926:62:3;;19074:2:13;14926:62:3;;;19056:21:13;19113:2;19093:18;;;19086:30;19152:34;19132:18;;;19125:62;-1:-1:-1;;;19203:18:13;;;19196:50;19263:19;;14926:62:3;18872:416:13;14490:513:3;-1:-1:-1;;;;;;14652:60:3;;-1:-1:-1;;;14652:60:3;14648:157;;14736:50;;-1:-1:-1;;;14736:50:3;;;;;;;:::i;15025:193::-;15144:16;;;15158:1;15144:16;;;;;;;;;15091;;15119:22;;15144:16;;;;;;;;;;;;-1:-1:-1;15144:16:3;15119:41;;15181:7;15170:5;15176:1;15170:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;15206:5;15025:193;-1:-1:-1;;15025:193:3:o;13496:725::-;-1:-1:-1;;;;;13703:13:3;;1465:19:0;:23;13699:516:3;;13738:72;;-1:-1:-1;;;13738:72:3;;-1:-1:-1;;;;;13738:38:3;;;;;:72;;13777:8;;13787:4;;13793:2;;13797:6;;13805:4;;13738:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13738:72:3;;;;;;;;-1:-1:-1;;13738:72:3;;;;;;;;;;;;:::i;:::-;;;13734:471;;;;:::i;:::-;-1:-1:-1;;;;;;13859:55:3;;-1:-1:-1;;;13859:55:3;13855:152;;13938:50;;-1:-1:-1;;;13938:50:3;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:810:13;68:5;121:3;114:4;106:6;102:17;98:27;88:55;;139:1;136;129:12;88:55;175:6;162:20;201:4;224:43;264:2;224:43;:::i;:::-;296:2;290:9;308:31;336:2;328:6;308:31;:::i;:::-;374:18;;;408:15;;;;-1:-1:-1;443:15:13;;;493:1;489:10;;;477:23;;473:32;;470:41;-1:-1:-1;467:61:13;;;524:1;521;514:12;467:61;546:1;556:238;570:2;567:1;564:9;556:238;;;641:3;628:17;658:31;683:5;658:31;:::i;:::-;702:18;;740:12;;;;772;;;;588:1;581:9;556:238;;;-1:-1:-1;812:6:13;;14:810;-1:-1:-1;;;;;;;14:810:13:o;829:367::-;892:8;902:6;956:3;949:4;941:6;937:17;933:27;923:55;;974:1;971;964:12;923:55;-1:-1:-1;997:20:13;;-1:-1:-1;;;;;1029:30:13;;1026:50;;;1072:1;1069;1062:12;1026:50;1109:4;1101:6;1097:17;1085:29;;1169:3;1162:4;1152:6;1149:1;1145:14;1137:6;1133:27;1129:38;1126:47;1123:67;;;1186:1;1183;1176:12;1123:67;829:367;;;;;:::o;1201:347::-;1252:8;1262:6;1316:3;1309:4;1301:6;1297:17;1293:27;1283:55;;1334:1;1331;1324:12;1283:55;-1:-1:-1;1357:20:13;;-1:-1:-1;;;;;1389:30:13;;1386:50;;;1432:1;1429;1422:12;1386:50;1469:4;1461:6;1457:17;1445:29;;1521:3;1514:4;1505:6;1497;1493:19;1489:30;1486:39;1483:59;;;1538:1;1535;1528:12;1553:556;1596:5;1649:3;1642:4;1634:6;1630:17;1626:27;1616:55;;1667:1;1664;1657:12;1616:55;1703:6;1690:20;-1:-1:-1;;;;;1725:2:13;1722:26;1719:52;;;1751:18;;:::i;:::-;1800:2;1794:9;1812:67;1867:2;1848:13;;-1:-1:-1;;1844:27:13;1873:4;1840:38;1794:9;1812:67;:::i;:::-;1903:2;1895:6;1888:18;1949:3;1942:4;1937:2;1929:6;1925:15;1921:26;1918:35;1915:55;;;1966:1;1963;1956:12;1915:55;2030:2;2023:4;2015:6;2011:17;2004:4;1996:6;1992:17;1979:54;2077:1;2053:15;;;2070:4;2049:26;2042:37;;;;2057:6;1553:556;-1:-1:-1;;;1553:556:13:o;2114:247::-;2173:6;2226:2;2214:9;2205:7;2201:23;2197:32;2194:52;;;2242:1;2239;2232:12;2194:52;2281:9;2268:23;2300:31;2325:5;2300:31;:::i;:::-;2350:5;2114:247;-1:-1:-1;;;2114:247:13:o;2366:388::-;2434:6;2442;2495:2;2483:9;2474:7;2470:23;2466:32;2463:52;;;2511:1;2508;2501:12;2463:52;2550:9;2537:23;2569:31;2594:5;2569:31;:::i;:::-;2619:5;-1:-1:-1;2676:2:13;2661:18;;2648:32;2689:33;2648:32;2689:33;:::i;:::-;2741:7;2731:17;;;2366:388;;;;;:::o;2759:1338::-;2919:6;2927;2935;2943;2951;2959;2967;2975;3028:3;3016:9;3007:7;3003:23;2999:33;2996:53;;;3045:1;3042;3035:12;2996:53;3084:9;3071:23;3103:31;3128:5;3103:31;:::i;:::-;3153:5;-1:-1:-1;3210:2:13;3195:18;;3182:32;3223:33;3182:32;3223:33;:::i;:::-;3275:7;-1:-1:-1;3333:2:13;3318:18;;3305:32;-1:-1:-1;;;;;3386:14:13;;;3383:34;;;3413:1;3410;3403:12;3383:34;3452:70;3514:7;3505:6;3494:9;3490:22;3452:70;:::i;:::-;3541:8;;-1:-1:-1;3426:96:13;-1:-1:-1;3629:2:13;3614:18;;3601:32;;-1:-1:-1;3645:16:13;;;3642:36;;;3674:1;3671;3664:12;3642:36;3713:72;3777:7;3766:8;3755:9;3751:24;3713:72;:::i;:::-;3804:8;;-1:-1:-1;3687:98:13;-1:-1:-1;3892:3:13;3877:19;;3864:33;;-1:-1:-1;3909:16:13;;;3906:36;;;3938:1;3935;3928:12;3906:36;;3977:60;4029:7;4018:8;4007:9;4003:24;3977:60;:::i;:::-;2759:1338;;;;-1:-1:-1;2759:1338:13;;-1:-1:-1;2759:1338:13;;;;;;4056:8;-1:-1:-1;;;2759:1338:13:o;4102:446::-;4190:6;4198;4206;4259:2;4247:9;4238:7;4234:23;4230:32;4227:52;;;4275:1;4272;4265:12;4227:52;4307:9;4301:16;4326:31;4351:5;4326:31;:::i;:::-;4426:2;4411:18;;4405:25;4376:5;;-1:-1:-1;4439:33:13;4405:25;4439:33;:::i;:::-;4491:7;4481:17;;;4538:2;4527:9;4523:18;4517:25;4507:35;;4102:446;;;;;:::o;4553:823::-;4659:6;4667;4675;4683;4691;4699;4752:3;4740:9;4731:7;4727:23;4723:33;4720:53;;;4769:1;4766;4759:12;4720:53;4808:9;4795:23;4827:31;4852:5;4827:31;:::i;:::-;4877:5;-1:-1:-1;4934:2:13;4919:18;;4906:32;4947:33;4906:32;4947:33;:::i;:::-;4999:7;-1:-1:-1;5053:2:13;5038:18;;5025:32;;-1:-1:-1;5104:2:13;5089:18;;5076:32;;-1:-1:-1;5159:3:13;5144:19;;5131:33;-1:-1:-1;;;;;5176:30:13;;5173:50;;;5219:1;5216;5209:12;5173:50;5258:58;5308:7;5299:6;5288:9;5284:22;5258:58;:::i;:::-;4553:823;;;;-1:-1:-1;4553:823:13;;-1:-1:-1;4553:823:13;;5335:8;;4553:823;-1:-1:-1;;;4553:823:13:o;5381:382::-;5446:6;5454;5507:2;5495:9;5486:7;5482:23;5478:32;5475:52;;;5523:1;5520;5513:12;5475:52;5562:9;5549:23;5581:31;5606:5;5581:31;:::i;:::-;5631:5;-1:-1:-1;5688:2:13;5673:18;;5660:32;5701:30;5660:32;5701:30;:::i;5768:315::-;5836:6;5844;5897:2;5885:9;5876:7;5872:23;5868:32;5865:52;;;5913:1;5910;5903:12;5865:52;5952:9;5939:23;5971:31;5996:5;5971:31;:::i;:::-;6021:5;6073:2;6058:18;;;;6045:32;;-1:-1:-1;;;5768:315:13:o;6088:348::-;6172:6;6225:2;6213:9;6204:7;6200:23;6196:32;6193:52;;;6241:1;6238;6231:12;6193:52;6281:9;6268:23;-1:-1:-1;;;;;6306:6:13;6303:30;6300:50;;;6346:1;6343;6336:12;6300:50;6369:61;6422:7;6413:6;6402:9;6398:22;6369:61;:::i;6441:1211::-;6559:6;6567;6620:2;6608:9;6599:7;6595:23;6591:32;6588:52;;;6636:1;6633;6626:12;6588:52;6676:9;6663:23;-1:-1:-1;;;;;6746:2:13;6738:6;6735:14;6732:34;;;6762:1;6759;6752:12;6732:34;6785:61;6838:7;6829:6;6818:9;6814:22;6785:61;:::i;:::-;6775:71;;6865:2;6855:12;;6920:2;6909:9;6905:18;6892:32;6949:2;6939:8;6936:16;6933:36;;;6965:1;6962;6955:12;6933:36;6988:24;;;-1:-1:-1;7043:4:13;7035:13;;7031:27;-1:-1:-1;7021:55:13;;7072:1;7069;7062:12;7021:55;7108:2;7095:16;7130:43;7170:2;7130:43;:::i;:::-;7202:2;7196:9;7214:31;7242:2;7234:6;7214:31;:::i;:::-;7280:18;;;7314:15;;;;-1:-1:-1;7349:11:13;;;7391:1;7387:10;;;7379:19;;7375:28;;7372:41;-1:-1:-1;7369:61:13;;;7426:1;7423;7416:12;7369:61;7448:1;7439:10;;7458:163;7472:2;7469:1;7466:9;7458:163;;;7529:17;;7517:30;;7490:1;7483:9;;;;;7567:12;;;;7599;;7458:163;;;7462:3;7640:6;7630:16;;;;;;;6441:1211;;;;;:::o;7657:245::-;7724:6;7777:2;7765:9;7756:7;7752:23;7748:32;7745:52;;;7793:1;7790;7783:12;7745:52;7825:9;7819:16;7844:28;7866:5;7844:28;:::i;7907:245::-;7965:6;8018:2;8006:9;7997:7;7993:23;7989:32;7986:52;;;8034:1;8031;8024:12;7986:52;8073:9;8060:23;8092:30;8116:5;8092:30;:::i;8157:249::-;8226:6;8279:2;8267:9;8258:7;8254:23;8250:32;8247:52;;;8295:1;8292;8285:12;8247:52;8327:9;8321:16;8346:30;8370:5;8346:30;:::i;8411:743::-;8518:6;8526;8534;8587:2;8575:9;8566:7;8562:23;8558:32;8555:52;;;8603:1;8600;8593:12;8555:52;8643:9;8630:23;-1:-1:-1;;;;;8713:2:13;8705:6;8702:14;8699:34;;;8729:1;8726;8719:12;8699:34;8752:50;8794:7;8785:6;8774:9;8770:22;8752:50;:::i;:::-;8742:60;;8855:2;8844:9;8840:18;8827:32;8811:48;;8884:2;8874:8;8871:16;8868:36;;;8900:1;8897;8890:12;8868:36;8923:52;8967:7;8956:8;8945:9;8941:24;8923:52;:::i;:::-;8913:62;;9028:2;9017:9;9013:18;9000:32;8984:48;;9057:2;9047:8;9044:16;9041:36;;;9073:1;9070;9063:12;9041:36;;9096:52;9140:7;9129:8;9118:9;9114:24;9096:52;:::i;:::-;9086:62;;;8411:743;;;;;:::o;9159:180::-;9218:6;9271:2;9259:9;9250:7;9246:23;9242:32;9239:52;;;9287:1;9284;9277:12;9239:52;-1:-1:-1;9310:23:13;;9159:180;-1:-1:-1;9159:180:13:o;9344:435::-;9397:3;9435:5;9429:12;9462:6;9457:3;9450:19;9488:4;9517:2;9512:3;9508:12;9501:19;;9554:2;9547:5;9543:14;9575:1;9585:169;9599:6;9596:1;9593:13;9585:169;;;9660:13;;9648:26;;9694:12;;;;9729:15;;;;9621:1;9614:9;9585:169;;;-1:-1:-1;9770:3:13;;9344:435;-1:-1:-1;;;;;9344:435:13:o;9784:268::-;9836:3;9874:5;9868:12;9901:6;9896:3;9889:19;9917:63;9973:6;9966:4;9961:3;9957:14;9950:4;9943:5;9939:16;9917:63;:::i;:::-;10034:2;10013:15;-1:-1:-1;;10009:29:13;10000:39;;;;10041:4;9996:50;;9784:268;-1:-1:-1;;9784:268:13:o;10057:184::-;10098:3;10136:5;10130:12;10151:52;10196:6;10191:3;10184:4;10177:5;10173:16;10151:52;:::i;:::-;10219:16;;;;;10057:184;-1:-1:-1;;10057:184:13:o;10993:569::-;11211:13;;11154:3;;11185;;11264:4;11291:15;;;11154:3;11334:201;11348:6;11345:1;11342:13;11334:201;;;11415:13;;-1:-1:-1;;;;;11411:39:13;11397:54;;11473:14;;;;11510:15;;;;11447:1;11363:9;11334:201;;;-1:-1:-1;11551:5:13;;10993:569;-1:-1:-1;;;;;;10993:569:13:o;11567:274::-;11696:3;11734:6;11728:13;11750:53;11796:6;11791:3;11784:4;11776:6;11772:17;11750:53;:::i;:::-;11819:16;;;;;11567:274;-1:-1:-1;;11567:274:13:o;11846:2641::-;-1:-1:-1;;;13447:47:13;;13517:13;;13429:3;;13539:62;13517:13;13589:2;13580:12;;13573:4;13561:17;;13539:62;:::i;:::-;-1:-1:-1;;;13694:2:13;13620:16;;;13686:11;;;13679:23;;;-1:-1:-1;;;13726:2:13;13718:11;;13711:53;13789:13;;13811:63;13789:13;13860:2;13852:11;;13845:4;13833:17;;13811:63;:::i;:::-;13934:2;13893:17;;13926:11;;;13919:23;;;-1:-1:-1;;;13966:2:13;13958:11;;13951:61;14037:13;;14059:63;14037:13;14108:2;14100:11;;14093:4;14081:17;;14059:63;:::i;:::-;14182:2;14141:17;;14174:11;;;14167:23;14206:275;14236:244;14261:218;14291:187;14321:156;14346:130;14376:99;14321:156;14431:42;14469:2;14461:11;;-1:-1:-1;;;10311:57:13;;10393:2;10384:12;;10246:156;14431:42;14423:6;14406:68;:::i;:::-;-1:-1:-1;;;10927:28:13;;10980:1;10971:11;;10862:126;14376:99;-1:-1:-1;;;10764:59:13;;10848:2;10839:12;;10699:158;14346:130;14338:6;14321:156;:::i;14291:187::-;-1:-1:-1;;;10605:55:13;;10685:2;10676:12;;10540:154;14261:218;14253:6;14236:244;:::i;:::-;-1:-1:-1;;;10472:30:13;;10527:1;10518:11;;10407:128;14206:275;14199:282;11846:2641;-1:-1:-1;;;;;;;;;11846:2641:13:o;14492:448::-;14754:31;14749:3;14742:44;14724:3;14815:6;14809:13;14831:62;14886:6;14881:2;14876:3;14872:12;14865:4;14857:6;14853:17;14831:62;:::i;:::-;14913:16;;;;14931:2;14909:25;;14492:448;-1:-1:-1;;14492:448:13:o;15153:837::-;-1:-1:-1;;;;;15550:15:13;;;15532:34;;15602:15;;15597:2;15582:18;;15575:43;15512:3;15649:2;15634:18;;15627:31;;;15475:4;;15681:57;;15718:19;;15710:6;15681:57;:::i;:::-;15786:9;15778:6;15774:22;15769:2;15758:9;15754:18;15747:50;15820:44;15857:6;15849;15820:44;:::i;:::-;15806:58;;15913:9;15905:6;15901:22;15895:3;15884:9;15880:19;15873:51;15941:43;15977:6;15969;15941:43;:::i;:::-;15933:51;15153:837;-1:-1:-1;;;;;;;;15153:837:13:o;16375:571::-;-1:-1:-1;;;;;16672:15:13;;;16654:34;;16724:15;;16719:2;16704:18;;16697:43;16771:2;16756:18;;16749:34;;;16814:2;16799:18;;16792:34;;;16634:3;16857;16842:19;;16835:32;;;16597:4;;16884:56;;16920:19;;16912:6;16884:56;:::i;:::-;16876:64;16375:571;-1:-1:-1;;;;;;;16375:571:13:o;17301:261::-;17480:2;17469:9;17462:21;17443:4;17500:56;17552:2;17541:9;17537:18;17529:6;17500:56;:::i;17567:465::-;17824:2;17813:9;17806:21;17787:4;17850:56;17902:2;17891:9;17887:18;17879:6;17850:56;:::i;:::-;17954:9;17946:6;17942:22;17937:2;17926:9;17922:18;17915:50;17982:44;18019:6;18011;17982:44;:::i;:::-;17974:52;17567:465;-1:-1:-1;;;;;17567:465:13:o;18229:230::-;18378:2;18367:9;18360:21;18341:4;18398:55;18449:2;18438:9;18434:18;18426:6;18398:55;:::i;18464:403::-;18661:2;18650:9;18643:21;18624:4;18687:55;18738:2;18727:9;18723:18;18715:6;18687:55;:::i;:::-;18790:9;18782:6;18778:22;18773:2;18762:9;18758:18;18751:50;18818:43;18854:6;18846;18818:43;:::i;19293:404::-;19495:2;19477:21;;;19534:2;19514:18;;;19507:30;19573:34;19568:2;19553:18;;19546:62;-1:-1:-1;;;19639:2:13;19624:18;;19617:38;19687:3;19672:19;;19293:404::o;20521:400::-;20723:2;20705:21;;;20762:2;20742:18;;;20735:30;20801:34;20796:2;20781:18;;20774:62;-1:-1:-1;;;20867:2:13;20852:18;;20845:34;20911:3;20896:19;;20521:400::o;22465:401::-;22667:2;22649:21;;;22706:2;22686:18;;;22679:30;22745:34;22740:2;22725:18;;22718:62;-1:-1:-1;;;22811:2:13;22796:18;;22789:35;22856:3;22841:19;;22465:401::o;23639:399::-;23841:2;23823:21;;;23880:2;23860:18;;;23853:30;23919:34;23914:2;23899:18;;23892:62;-1:-1:-1;;;23985:2:13;23970:18;;23963:33;24028:3;24013:19;;23639:399::o;24043:406::-;24245:2;24227:21;;;24284:2;24264:18;;;24257:30;24323:34;24318:2;24303:18;;24296:62;-1:-1:-1;;;24389:2:13;24374:18;;24367:40;24439:3;24424:19;;24043:406::o;24454:356::-;24656:2;24638:21;;;24675:18;;;24668:30;24734:34;24729:2;24714:18;;24707:62;24801:2;24786:18;;24454:356::o;24815:409::-;25017:2;24999:21;;;25056:2;25036:18;;;25029:30;25095:34;25090:2;25075:18;;25068:62;-1:-1:-1;;;25161:2:13;25146:18;;25139:43;25214:3;25199:19;;24815:409::o;26823:404::-;27025:2;27007:21;;;27064:2;27044:18;;;27037:30;27103:34;27098:2;27083:18;;27076:62;-1:-1:-1;;;27169:2:13;27154:18;;27147:38;27217:3;27202:19;;26823:404::o;27232:397::-;27434:2;27416:21;;;27473:2;27453:18;;;27446:30;27512:34;27507:2;27492:18;;27485:62;-1:-1:-1;;;27578:2:13;27563:18;;27556:31;27619:3;27604:19;;27232:397::o;27634:348::-;27836:2;27818:21;;;27875:2;27855:18;;;27848:30;27914:26;27909:2;27894:18;;27887:54;27973:2;27958:18;;27634:348::o;29537:183::-;29597:4;-1:-1:-1;;;;;29622:6:13;29619:30;29616:56;;;29652:18;;:::i;:::-;-1:-1:-1;29697:1:13;29693:14;29709:4;29689:25;;29537:183::o;29725:128::-;29765:3;29796:1;29792:6;29789:1;29786:13;29783:39;;;29802:18;;:::i;:::-;-1:-1:-1;29838:9:13;;29725:128::o;29858:120::-;29898:1;29924;29914:35;;29929:18;;:::i;:::-;-1:-1:-1;29963:9:13;;29858:120::o;29983:168::-;30023:7;30089:1;30085;30081:6;30077:14;30074:1;30071:21;30066:1;30059:9;30052:17;30048:45;30045:71;;;30096:18;;:::i;:::-;-1:-1:-1;30136:9:13;;29983:168::o;30156:125::-;30196:4;30224:1;30221;30218:8;30215:34;;;30229:18;;:::i;:::-;-1:-1:-1;30266:9:13;;30156:125::o;30286:258::-;30358:1;30368:113;30382:6;30379:1;30376:13;30368:113;;;30458:11;;;30452:18;30439:11;;;30432:39;30404:2;30397:10;30368:113;;;30499:6;30496:1;30493:13;30490:48;;;30534:1;30525:6;30520:3;30516:16;30509:27;30490:48;;30286:258;;;:::o;30549:380::-;30628:1;30624:12;;;;30671;;;30692:61;;30746:4;30738:6;30734:17;30724:27;;30692:61;30799:2;30791:6;30788:14;30768:18;30765:38;30762:161;;;30845:10;30840:3;30836:20;30833:1;30826:31;30880:4;30877:1;30870:15;30908:4;30905:1;30898:15;30762:161;;30549:380;;;:::o;30934:249::-;31044:2;31025:13;;-1:-1:-1;;31021:27:13;31009:40;;-1:-1:-1;;;;;31064:34:13;;31100:22;;;31061:62;31058:88;;;31126:18;;:::i;:::-;31162:2;31155:22;-1:-1:-1;;30934:249:13:o;31188:135::-;31227:3;-1:-1:-1;;31248:17:13;;31245:43;;;31268:18;;:::i;:::-;-1:-1:-1;31315:1:13;31304:13;;31188:135::o;31328:112::-;31360:1;31386;31376:35;;31391:18;;:::i;:::-;-1:-1:-1;31425:9:13;;31328:112::o;31445:127::-;31506:10;31501:3;31497:20;31494:1;31487:31;31537:4;31534:1;31527:15;31561:4;31558:1;31551:15;31577:127;31638:10;31633:3;31629:20;31626:1;31619:31;31669:4;31666:1;31659:15;31693:4;31690:1;31683:15;31709:127;31770:10;31765:3;31761:20;31758:1;31751:31;31801:4;31798:1;31791:15;31825:4;31822:1;31815:15;31841:127;31902:10;31897:3;31893:20;31890:1;31883:31;31933:4;31930:1;31923:15;31957:4;31954:1;31947:15;31973:179;32008:3;32050:1;32032:16;32029:23;32026:120;;;32096:1;32093;32090;32075:23;-1:-1:-1;32133:1:13;32127:8;32122:3;32118:18;32026:120;31973:179;:::o;32157:671::-;32196:3;32238:4;32220:16;32217:26;32214:39;;;32157:671;:::o;32214:39::-;32280:2;32274:9;-1:-1:-1;;32345:16:13;32341:25;;32338:1;32274:9;32317:50;32396:4;32390:11;32420:16;-1:-1:-1;;;;;32526:2:13;32519:4;32511:6;32507:17;32504:25;32499:2;32491:6;32488:14;32485:45;32482:58;;;32533:5;;;;;32157:671;:::o;32482:58::-;32570:6;32564:4;32560:17;32549:28;;32606:3;32600:10;32633:2;32625:6;32622:14;32619:27;;;32639:5;;;;;;32157:671;:::o;32619:27::-;32723:2;32704:16;32698:4;32694:27;32690:36;32683:4;32674:6;32669:3;32665:16;32661:27;32658:69;32655:82;;;32730:5;;;;;;32157:671;:::o;32655:82::-;32746:57;32797:4;32788:6;32780;32776:19;32772:30;32766:4;32746:57;:::i;:::-;-1:-1:-1;32819:3:13;;32157:671;-1:-1:-1;;;;;32157:671:13:o;32833:131::-;-1:-1:-1;;;;;32908:31:13;;32898:42;;32888:70;;32954:1;32951;32944:12;32969:118;33055:5;33048:13;33041:21;33034:5;33031:32;33021:60;;33077:1;33074;33067:12;33092:131;-1:-1:-1;;;;;;33166:32:13;;33156:43;;33146:71;;33213:1;33210;33203:12

Swarm Source

ipfs://31c6f8d64fa6b9f06ee98c08f0eb29e97a81ee45d88db331e1218953afbf2f0d
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.