ETH Price: $2,794.30 (+1.97%)
 

Overview

Max Total Supply

622

Holders

324

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
fffhhwd.eth
0x9de0bBB3D6401C70c105E985124bb2c0D91ca0D2
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:
GangWars

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : GangWars.sol
// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";

contract GangWars is ERC1155, Ownable {

    struct SaleRound {
        uint price; // wei
        uint32 quantity;
        uint32 timestamp;
        bool whitelist;
        string uri;
    }

    uint32 idCounter = 0;

    SaleRound[] public saleRounds;
    bool isMintStarted = true;
    bool isFrozen = false;
    uint32 userMintLimitPerRound = 5;

    mapping(uint32 => uint32) public cardRound; // card id => round id
    mapping(uint32 => uint32) public cardsSold; // round id => quantity
    mapping(address => mapping(uint32 => uint32)) userMintedPerRound; // user => round id => sales
    mapping(address => uint32[]) collection; // user > card ids

    string private placeholderURI;

    constructor(string memory _uri, SaleRound[] memory rounds) ERC1155(_uri) {
        placeholderURI = _uri;
        setRounds(rounds);
    }

    function setRounds(SaleRound[] memory rounds) public onlyOwner {
        require(isFrozen == false);
        if (saleRounds.length > 0) {
            delete saleRounds;
        }
        for (uint32 i = 0; i < rounds.length; i++) {
            saleRounds.push(rounds[i]);
        }
    }

    function froze() external onlyOwner {
        isFrozen = true;
    }

    function setConfigs(bool _isMintStarted, uint32 _userMintLimitPerRound) external onlyOwner {
        isMintStarted = _isMintStarted;
        userMintLimitPerRound = _userMintLimitPerRound;
    }

    function withdrawEther(uint amount, address payable to) external onlyOwner {
        to.transfer(amount);
    }

    function uri(uint256 id) public view virtual override returns (string memory) {
        if (block.timestamp >= saleRounds[saleRounds.length - 1].timestamp) {
            return saleRounds[saleRounds.length - 1].uri;
        }
        if (cardRound[uint32(id)] + 1 == saleRounds.length ||
            block.timestamp >= saleRounds[cardRound[uint32(id)] + 1].timestamp
        ) {
            return saleRounds[cardRound[uint32(id)]].uri;
        }
        return placeholderURI;
    }

    function mint(uint32 quantity, bytes32 hash, uint8 _v, bytes32 _r, bytes32 _s) payable external {

        require(isMintStarted, "stopped");
        require(block.timestamp >= saleRounds[0].timestamp, "time");

        uint32 currentRound;
        uint32 cardsNumber;
        for (uint32 i = 0; i < saleRounds.length; i++) {
            cardsNumber += saleRounds[i].quantity - cardsSold[i];
            if (saleRounds[i].timestamp <= block.timestamp) {
                if (i + 1 == saleRounds.length || saleRounds[i + 1].timestamp > block.timestamp) {
                    currentRound = i;
                    break;
                }
            }
            if (i + 1 == saleRounds.length - 1 && cardsNumber > 0) {
                currentRound = i;
                break;
            }
        }

        if (saleRounds[currentRound].whitelist) {
            require(
                owner() == ecrecover(
                    keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)), _v, _r, _s
                ) && keccak256(abi.encodePacked(msg.sender, currentRound)) == hash
            , "whitelist");
        }

        require(userMintedPerRound[msg.sender][currentRound] < userMintLimitPerRound, "limit");
        require(msg.value >= saleRounds[currentRound].price, "value");
        require(cardsNumber > 0, "sold out");

        uint32 times = msg.value == 0 ? quantity : uint32(msg.value / saleRounds[currentRound].price);
        uint32 limit = userMintLimitPerRound - userMintedPerRound[msg.sender][currentRound];
        if (limit < times) {
            times = limit;
        }
        if (cardsNumber < times) {
            times = cardsNumber;
        }
        if (msg.value > times * saleRounds[currentRound].price) {
            payable(msg.sender).transfer(msg.value - times * saleRounds[currentRound].price);
        }

        uint32 j = 0;
        while (times > 0) {
            idCounter++;
            j++;
            userMintedPerRound[msg.sender][currentRound]++;
            times--;

            uint32 totalQuantity;
            for (uint32 i = 0; i < saleRounds.length; i++) {
                totalQuantity += saleRounds[i].quantity;
                if (idCounter <= totalQuantity) {
                    cardRound[idCounter] = i;
                    cardsSold[i]++;
                    break;
                }
            }

            _mint(msg.sender, idCounter, 1, "");
        }
    }

    function _beforeTokenTransfer(
        address,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory,
        bytes memory
    ) internal virtual override(ERC1155) {
        if (to != address(0)) {// mint || transfer
            for (uint32 i = 0; i < ids.length; i++) {
                collection[to].push(uint32(ids[i]));
            }
        }
        if (from != address(0)) {// transfer
            for (uint32 i = 0; i < ids.length; i++) {
                for (uint32 j = 0; j < collection[from].length; j++) {
                    if (collection[from][j] == ids[i]) {
                        delete collection[from][j];
                    }
                }
            }
        }
    }

    function getCollection(address user) external view returns (uint32[] memory, string[] memory) {
        uint32[] memory ids = new uint32[](collection[user].length);
        string[] memory _uris = new string[](collection[user].length);
        for (uint32 i = 0; i < collection[user].length; i++) {
            ids[i] = collection[user][i];
            _uris[i] = uri(ids[i]);
        }
        return (ids, _uris);
    }

    receive() payable external {
        revert();
    }
}

File 2 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

File 3 of 10 : ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/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 {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

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

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

        _doSafeTransferAcceptanceCheck(operator, address(0), account, 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 `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

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

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

        emit TransferSingle(operator, account, 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 account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

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

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

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

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

    /**
     * @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 4 of 10 : Context.sol
// SPDX-License-Identifier: MIT

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 5 of 10 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/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 6 of 10 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/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.
        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. 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 7 of 10 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

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 8 of 10 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 10 : ERC165.sol
// SPDX-License-Identifier: MIT

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 10 of 10 : IERC165.sol
// SPDX-License-Identifier: MIT

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint32","name":"quantity","type":"uint32"},{"internalType":"uint32","name":"timestamp","type":"uint32"},{"internalType":"bool","name":"whitelist","type":"bool"},{"internalType":"string","name":"uri","type":"string"}],"internalType":"struct GangWars.SaleRound[]","name":"rounds","type":"tuple[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"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":"uint32","name":"","type":"uint32"}],"name":"cardRound","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"","type":"uint32"}],"name":"cardsSold","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"froze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getCollection","outputs":[{"internalType":"uint32[]","name":"","type":"uint32[]"},{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"quantity","type":"uint32"},{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"uint256","name":"","type":"uint256"}],"name":"saleRounds","outputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint32","name":"quantity","type":"uint32"},{"internalType":"uint32","name":"timestamp","type":"uint32"},{"internalType":"bool","name":"whitelist","type":"bool"},{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isMintStarted","type":"bool"},{"internalType":"uint32","name":"_userMintLimitPerRound","type":"uint32"}],"name":"setConfigs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint32","name":"quantity","type":"uint32"},{"internalType":"uint32","name":"timestamp","type":"uint32"},{"internalType":"bool","name":"whitelist","type":"bool"},{"internalType":"string","name":"uri","type":"string"}],"internalType":"struct GangWars.SaleRound[]","name":"rounds","type":"tuple[]"}],"name":"setRounds","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":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600360146101000a81548163ffffffff021916908363ffffffff1602179055506001600560006101000a81548160ff0219169083151502179055506000600560016101000a81548160ff02191690831515021790555060058060026101000a81548163ffffffff021916908363ffffffff1602179055503480156200008a57600080fd5b50604051620063f3380380620063f38339818101604052810190620000b09190620007e5565b81620000c2816200011560201b60201c565b50620000e3620000d76200013160201b60201c565b6200013960201b60201c565b81600a9080519060200190620000fb92919062000432565b506200010d81620001ff60201b60201c565b505062000b4f565b80600290805190602001906200012d92919062000432565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200020f6200013160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002356200040860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200028e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000285906200087f565b60405180910390fd5b60001515600560019054906101000a900460ff16151514620002af57600080fd5b60006004805490501115620002cf5760046000620002ce9190620004c3565b5b60005b81518163ffffffff16101562000404576004828263ffffffff168151811062000324577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190806001815401808255809150506001900390600052602060002090600302016000909190919091506000820151816000015560208201518160010160006101000a81548163ffffffff021916908363ffffffff16021790555060408201518160010160046101000a81548163ffffffff021916908363ffffffff16021790555060608201518160010160086101000a81548160ff0219169083151502179055506080820151816002019080519060200190620003eb92919062000432565b5050508080620003fb9062000a08565b915050620002d2565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000440906200099c565b90600052602060002090601f016020900481019282620004645760008555620004b0565b82601f106200047f57805160ff1916838001178555620004b0565b82800160010185558215620004b0579182015b82811115620004af57825182559160200191906001019062000492565b5b509050620004bf9190620004e9565b5090565b5080546000825560030290600052602060002090810190620004e6919062000508565b50565b5b8082111562000504576000816000905550600101620004ea565b5090565b5b8082111562000579576000808201600090556001820160006101000a81549063ffffffff02191690556001820160046101000a81549063ffffffff02191690556001820160086101000a81549060ff02191690556002820160006200056f91906200057d565b5060030162000509565b5090565b5080546200058b906200099c565b6000825580601f106200059f5750620005c0565b601f016020900490600052602060002090810190620005bf9190620004e9565b5b50565b6000620005da620005d484620008ca565b620008a1565b90508083825260208201905082856020860282011115620005fa57600080fd5b60005b858110156200064957815167ffffffffffffffff8111156200061e57600080fd5b8086016200062d898262000709565b85526020850194506020840193505050600181019050620005fd565b5050509392505050565b60006200066a6200066484620008f9565b620008a1565b9050828152602081018484840111156200068357600080fd5b6200069084828562000966565b509392505050565b600082601f830112620006aa57600080fd5b8151620006bc848260208601620005c3565b91505092915050565b600081519050620006d68162000b01565b92915050565b600082601f830112620006ee57600080fd5b81516200070084826020860162000653565b91505092915050565b600060a082840312156200071c57600080fd5b6200072860a0620008a1565b905060006200073a84828501620007b7565b60008301525060206200075084828501620007ce565b60208301525060406200076684828501620007ce565b60408301525060606200077c84828501620006c5565b606083015250608082015167ffffffffffffffff8111156200079d57600080fd5b620007ab84828501620006dc565b60808301525092915050565b600081519050620007c88162000b1b565b92915050565b600081519050620007df8162000b35565b92915050565b60008060408385031215620007f957600080fd5b600083015167ffffffffffffffff8111156200081457600080fd5b6200082285828601620006dc565b925050602083015167ffffffffffffffff8111156200084057600080fd5b6200084e8582860162000698565b9150509250929050565b6000620008676020836200092f565b9150620008748262000ad8565b602082019050919050565b600060208201905081810360008301526200089a8162000858565b9050919050565b6000620008ad620008c0565b9050620008bb8282620009d2565b919050565b6000604051905090565b600067ffffffffffffffff821115620008e857620008e762000a98565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000917576200091662000a98565b5b620009228262000ac7565b9050602081019050919050565b600082825260208201905092915050565b60008115159050919050565b6000819050919050565b600063ffffffff82169050919050565b60005b838110156200098657808201518184015260208101905062000969565b8381111562000996576000848401525b50505050565b60006002820490506001821680620009b557607f821691505b60208210811415620009cc57620009cb62000a69565b5b50919050565b620009dd8262000ac7565b810181811067ffffffffffffffff82111715620009ff57620009fe62000a98565b5b80604052505050565b600062000a158262000956565b915063ffffffff82141562000a2f5762000a2e62000a3a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000b0c8162000940565b811462000b1857600080fd5b50565b62000b26816200094c565b811462000b3257600080fd5b50565b62000b408162000956565b811462000b4c57600080fd5b50565b6158948062000b5f6000396000f3fe6080604052600436106101225760003560e01c80638da5cb5b116100a0578063ce56c45411610064578063ce56c454146103f9578063e40de88714610422578063e985e9c514610460578063f242432a1461049d578063f2fde38b146104c65761012c565b80638da5cb5b1461030f578063a22cb4651461033a578063ba7efdd614610363578063bf3ca855146103a0578063c6f0bfec146103dd5761012c565b806345199ce1116100e757806345199ce1146102285780634e1273f4146102695780636a9fc2a5146102a6578063715018a6146102cf5780638d411c7e146102e65761012c565b8062fdd58e1461013157806301ffc9a71461016e5780630e89341c146101ab5780632eb2c2d6146101e8578063442ba061146102115761012c565b3661012c57600080fd5b600080fd5b34801561013d57600080fd5b5061015860048036038101906101539190613dd0565b6104ef565b6040516101659190614a86565b60405180910390f35b34801561017a57600080fd5b5061019560048036038101906101909190613ef5565b6105b8565b6040516101a291906147a4565b60405180910390f35b3480156101b757600080fd5b506101d260048036038101906101cd9190613f47565b61069a565b6040516101df9190614804565b60405180910390f35b3480156101f457600080fd5b5061020f600480360381019061020a9190613c46565b610a9f565b005b34801561021d57600080fd5b50610226610b40565b005b34801561023457600080fd5b5061024f600480360381019061024a9190613f47565b610bd9565b604051610260959493929190614aca565b60405180910390f35b34801561027557600080fd5b50610290600480360381019061028b9190613e0c565b610cd4565b60405161029d9190614714565b60405180910390f35b3480156102b257600080fd5b506102cd60048036038101906102c89190613e78565b610e85565b005b3480156102db57600080fd5b506102e4611070565b005b3480156102f257600080fd5b5061030d60048036038101906103089190613eb9565b6110f8565b005b34801561031b57600080fd5b506103246111b3565b6040516103319190614637565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c9190613d94565b6111dd565b005b34801561036f57600080fd5b5061038a60048036038101906103859190613fac565b61135e565b6040516103979190614b24565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190613fac565b611381565b6040516103d49190614b24565b60405180910390f35b6103f760048036038101906103f29190613fd5565b6113a4565b005b34801561040557600080fd5b50610420600480360381019061041b9190613f70565b611f02565b005b34801561042e57600080fd5b5061044960048036038101906104449190613be1565b611fc9565b60405161045792919061476d565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190613c0a565b61234a565b60405161049491906147a4565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf9190613d05565b6123de565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190613be1565b61247f565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055790614886565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068357507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610693575061069282612577565b5b9050919050565b6060600460016004805490506106b09190614e64565b815481106106e7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906003020160010160049054906101000a900463ffffffff1663ffffffff16421061080157600460016004805490506107299190614e64565b81548110610760577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060030201600201805461077c90614fe5565b80601f01602080910402602001604051908101604052809291908181526020018280546107a890614fe5565b80156107f55780601f106107ca576101008083540402835291602001916107f5565b820191906000526020600020905b8154815290600101906020018083116107d857829003601f168201915b50505050509050610a9a565b6004805490506001600660008563ffffffff1663ffffffff16815260200190815260200160002060009054906101000a900463ffffffff166108439190614d9f565b63ffffffff1614806108f7575060046001600660008563ffffffff1663ffffffff16815260200190815260200160002060009054906101000a900463ffffffff1661088e9190614d9f565b63ffffffff16815481106108cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906003020160010160049054906101000a900463ffffffff1663ffffffff164210155b15610a0c576004600660008463ffffffff1663ffffffff16815260200190815260200160002060009054906101000a900463ffffffff1663ffffffff168154811061096b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060030201600201805461098790614fe5565b80601f01602080910402602001604051908101604052809291908181526020018280546109b390614fe5565b8015610a005780601f106109d557610100808354040283529160200191610a00565b820191906000526020600020905b8154815290600101906020018083116109e357829003601f168201915b50505050509050610a9a565b600a8054610a1990614fe5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4590614fe5565b8015610a925780601f10610a6757610100808354040283529160200191610a92565b820191906000526020600020905b815481529060010190602001808311610a7557829003601f168201915b505050505090505b919050565b610aa76125e1565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610aed5750610aec85610ae76125e1565b61234a565b5b610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390614946565b60405180910390fd5b610b3985858585856125e9565b5050505050565b610b486125e1565b73ffffffffffffffffffffffffffffffffffffffff16610b666111b3565b73ffffffffffffffffffffffffffffffffffffffff1614610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb3906149c6565b60405180910390fd5b6001600560016101000a81548160ff021916908315150217905550565b60048181548110610be957600080fd5b90600052602060002090600302016000915090508060000154908060010160009054906101000a900463ffffffff16908060010160049054906101000a900463ffffffff16908060010160089054906101000a900460ff1690806002018054610c5190614fe5565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7d90614fe5565b8015610cca5780601f10610c9f57610100808354040283529160200191610cca565b820191906000526020600020905b815481529060010190602001808311610cad57829003601f168201915b5050505050905085565b60608151835114610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190614a06565b60405180910390fd5b6000835167ffffffffffffffff811115610d5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d8b5781602001602082028036833780820191505090505b50905060005b8451811015610e7a57610e24858281518110610dd6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610e17577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516104ef565b828281518110610e5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610e7390615048565b9050610d91565b508091505092915050565b610e8d6125e1565b73ffffffffffffffffffffffffffffffffffffffff16610eab6111b3565b73ffffffffffffffffffffffffffffffffffffffff1614610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef8906149c6565b60405180910390fd5b60001515600560019054906101000a900460ff16151514610f2157600080fd5b60006004805490501115610f3e5760046000610f3d9190613660565b5b60005b81518163ffffffff16101561106c576004828263ffffffff1681518110610f91577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190806001815401808255809150506001900390600052602060002090600302016000909190919091506000820151816000015560208201518160010160006101000a81548163ffffffff021916908363ffffffff16021790555060408201518160010160046101000a81548163ffffffff021916908363ffffffff16021790555060608201518160010160086101000a81548160ff0219169083151502179055506080820151816002019080519060200190611056929190613684565b505050808061106490615091565b915050610f41565b5050565b6110786125e1565b73ffffffffffffffffffffffffffffffffffffffff166110966111b3565b73ffffffffffffffffffffffffffffffffffffffff16146110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e3906149c6565b60405180910390fd5b6110f66000612949565b565b6111006125e1565b73ffffffffffffffffffffffffffffffffffffffff1661111e6111b3565b73ffffffffffffffffffffffffffffffffffffffff1614611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b906149c6565b60405180910390fd5b81600560006101000a81548160ff02191690831515021790555080600560026101000a81548163ffffffff021916908363ffffffff1602179055505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff166111fc6125e1565b73ffffffffffffffffffffffffffffffffffffffff161415611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a906149e6565b60405180910390fd5b80600160006112606125e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661130d6125e1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135291906147a4565b60405180910390a35050565b60076020528060005260406000206000915054906101000a900463ffffffff1681565b60066020528060005260406000206000915054906101000a900463ffffffff1681565b600560009054906101000a900460ff166113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90614a26565b60405180910390fd5b600460008154811061142e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906003020160010160049054906101000a900463ffffffff1663ffffffff16421015611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90614866565b60405180910390fd5b60008060005b6004805490508163ffffffff1610156116c557600760008263ffffffff1663ffffffff16815260200190815260200160002060009054906101000a900463ffffffff1660048263ffffffff1681548110611521577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906003020160010160009054906101000a900463ffffffff1661154d9190614e98565b826115589190614d9f565b91504260048263ffffffff168154811061159b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906003020160010160049054906101000a900463ffffffff1663ffffffff161161166d576004805490506001826115db9190614d9f565b63ffffffff16148061165f57504260046001836115f89190614d9f565b63ffffffff1681548110611635577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906003020160010160049054906101000a900463ffffffff1663ffffffff16115b1561166c578092506116c5565b5b600160048054905061167f9190614e64565b60018261168c9190614d9f565b63ffffffff161480156116a5575060008263ffffffff16115b156116b2578092506116c5565b80806116bd90615091565b91505061149e565b5060048263ffffffff1681548110611706577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906003020160010160089054906101000a900460ff16156118475760018660405160200161173d9190614611565b604051602081830303815290604052805190602001208686866040516000815260200160405260405161177394939291906147bf565b6020604051602081039080840390855afa158015611795573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff166117bd6111b3565b73ffffffffffffffffffffffffffffffffffffffff1614801561180757508533836040516020016117ef9291906145e5565b60405160208183030381529060405280519060200120145b611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d906148e6565b60405180910390fd5b5b600560029054906101000a900463ffffffff1663ffffffff16600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008463ffffffff1663ffffffff16815260200190815260200160002060009054906101000a900463ffffffff1663ffffffff1610611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90614966565b60405180910390fd5b60048263ffffffff1681548110611953577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060030201600001543410156119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e90614986565b60405180910390fd5b60008163ffffffff16116119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790614906565b60405180910390fd5b6000803414611a5b5760048363ffffffff1681548110611a39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600302016000015434611a569190614dd9565b611a5d565b875b90506000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008563ffffffff1663ffffffff16815260200190815260200160002060009054906101000a900463ffffffff16600560029054906101000a900463ffffffff16611aeb9190614e98565b90508163ffffffff168163ffffffff161015611b05578091505b8163ffffffff168363ffffffff161015611b1d578291505b60048463ffffffff1681548110611b5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060030201600001548263ffffffff16611b809190614e0a565b341115611c3c573373ffffffffffffffffffffffffffffffffffffffff166108fc60048663ffffffff1681548110611be1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060030201600001548463ffffffff16611c049190614e0a565b34611c0f9190614e64565b9081150290604051600060405180830381858888f19350505050158015611c3a573d6000803e3d6000fd5b505b60005b60008363ffffffff161115611ef6576003601481819054906101000a900463ffffffff1680929190611c7090615091565b91906101000a81548163ffffffff021916908363ffffffff160217905550508080611c9a90615091565b915050600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff168152602001908152602001600020600081819054906101000a900463ffffffff1680929190611d1990615091565b91906101000a81548163ffffffff021916908363ffffffff160217905550508280611d4390614fbb565b935050600080600090505b6004805490508163ffffffff161015611ebb5760048163ffffffff1681548110611da1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906003020160010160009054906101000a900463ffffffff1682611dce9190614d9f565b91508163ffffffff16600360149054906101000a900463ffffffff1663ffffffff1611611ea8578060066000600360149054906101000a900463ffffffff1663ffffffff1663ffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff160217905550600760008263ffffffff1663ffffffff168152602001908152602001600020600081819054906101000a900463ffffffff1680929190611e8490615091565b91906101000a81548163ffffffff021916908363ffffffff16021790555050611ebb565b8080611eb390615091565b915050611d4e565b50611ef033600360149054906101000a900463ffffffff1663ffffffff16600160405180602001604052806000815250612a0f565b50611c3f565b50505050505050505050565b611f0a6125e1565b73ffffffffffffffffffffffffffffffffffffffff16611f286111b3565b73ffffffffffffffffffffffffffffffffffffffff1614611f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f75906149c6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611fc4573d6000803e3d6000fd5b505050565b6060806000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905067ffffffffffffffff811115612050577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561207e5781602001602082028036833780820191505090505b5090506000600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905067ffffffffffffffff811115612105577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561213857816020015b60608152602001906001900390816121235790505b50905060005b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508163ffffffff16101561233c57600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208163ffffffff168154811061220b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600891828204019190066004029054906101000a900463ffffffff16838263ffffffff1681518110612270577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019063ffffffff16908163ffffffff16815250506122df838263ffffffff16815181106122cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015163ffffffff1661069a565b828263ffffffff168151811061231e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181905250808061233490615091565b91505061213e565b508181935093505050915091565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123e66125e1565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061242c575061242b856124266125e1565b61234a565b5b61246b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612462906148c6565b60405180910390fd5b6124788585858585612ba5565b5050505050565b6124876125e1565b73ffffffffffffffffffffffffffffffffffffffff166124a56111b3565b73ffffffffffffffffffffffffffffffffffffffff16146124fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f2906149c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561256b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612562906148a6565b60405180910390fd5b61257481612949565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b815183511461262d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262490614a46565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561269d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269490614926565b60405180910390fd5b60006126a76125e1565b90506126b7818787878787612e27565b60005b84518110156128b45760008582815181106126fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110612743577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127db906149a6565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128999190614d49565b92505081905550505050806128ad90615048565b90506126ba565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161292b929190614736565b60405180910390a46129418187878787876131b9565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7690614a66565b60405180910390fd5b6000612a896125e1565b9050612aaa81600087612a9b886133a0565b612aa4886133a0565b87612e27565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b099190614d49565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612b87929190614aa1565b60405180910390a4612b9e81600087878787613466565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0c90614926565b60405180910390fd5b6000612c1f6125e1565b9050612c3f818787612c30886133a0565b612c39886133a0565b87612e27565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccd906149a6565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d8b9190614d49565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612e08929190614aa1565b60405180910390a4612e1e828888888888613466565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612f535760005b83518163ffffffff161015612f5157600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020848263ffffffff1681518110612eeb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190806001815401808255809150506001900390600052602060002090600891828204019190066004029091909190916101000a81548163ffffffff021916908363ffffffff1602179055508080612f4990615091565b915050612e5e565b505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146131b15760005b83518163ffffffff1610156131af5760005b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508163ffffffff16101561319b57848263ffffffff168151811061302b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff16815481106130b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600891828204019190066004029054906101000a900463ffffffff1663ffffffff16141561318857600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208163ffffffff168154811061315f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600891828204019190066004026101000a81549063ffffffff02191690555b808061319390615091565b915050612f9c565b5080806131a790615091565b915050612f8a565b505b505050505050565b6131d88473ffffffffffffffffffffffffffffffffffffffff1661364d565b15613398578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161321e959493929190614652565b602060405180830381600087803b15801561323857600080fd5b505af192505050801561326957506040513d601f19601f820116820180604052508101906132669190613f1e565b60015b61330f576132756151ba565b806308c379a014156132d2575061328a615710565b8061329557506132d4565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c99190614804565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330690614826565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338d90614846565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156133e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156134135781602001602082028036833780820191505090505b5090508281600081518110613451577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6134858473ffffffffffffffffffffffffffffffffffffffff1661364d565b15613645578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016134cb9594939291906146ba565b602060405180830381600087803b1580156134e557600080fd5b505af192505050801561351657506040513d601f19601f820116820180604052508101906135139190613f1e565b60015b6135bc576135226151ba565b806308c379a0141561357f5750613537615710565b806135425750613581565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135769190614804565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135b390614826565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363a90614846565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b5080546000825560030290600052602060002090810190613681919061370a565b50565b82805461369090614fe5565b90600052602060002090601f0160209004810192826136b257600085556136f9565b82601f106136cb57805160ff19168380011785556136f9565b828001600101855582156136f9579182015b828111156136f85782518255916020019190600101906136dd565b5b509050613706919061377b565b5090565b5b80821115613777576000808201600090556001820160006101000a81549063ffffffff02191690556001820160046101000a81549063ffffffff02191690556001820160086101000a81549060ff021916905560028201600061376e9190613798565b5060030161370b565b5090565b5b8082111561379457600081600090555060010161377c565b5090565b5080546137a490614fe5565b6000825580601f106137b657506137d5565b601f0160209004906000526020600020908101906137d4919061377b565b5b50565b60006137eb6137e684614b64565b614b3f565b9050808382526020820190508285602086028201111561380a57600080fd5b60005b8581101561383a578161382088826139b2565b84526020840193506020830192505060018101905061380d565b5050509392505050565b600061385761385284614b90565b614b3f565b9050808382526020820190508285602086028201111561387657600080fd5b60005b858110156138c057813567ffffffffffffffff81111561389857600080fd5b8086016138a58982613b02565b85526020850194506020840193505050600181019050613879565b5050509392505050565b60006138dd6138d884614bbc565b614b3f565b905080838252602082019050828560208602820111156138fc57600080fd5b60005b8581101561392c57816139128882613ba2565b8452602084019350602083019250506001810190506138ff565b5050509392505050565b600061394961394484614be8565b614b3f565b90508281526020810184848401111561396157600080fd5b61396c848285614f79565b509392505050565b600061398761398284614c19565b614b3f565b90508281526020810184848401111561399f57600080fd5b6139aa848285614f79565b509392505050565b6000813590506139c1816157a6565b92915050565b6000813590506139d6816157bd565b92915050565b600082601f8301126139ed57600080fd5b81356139fd8482602086016137d8565b91505092915050565b600082601f830112613a1757600080fd5b8135613a27848260208601613844565b91505092915050565b600082601f830112613a4157600080fd5b8135613a518482602086016138ca565b91505092915050565b600081359050613a69816157d4565b92915050565b600081359050613a7e816157eb565b92915050565b600081359050613a9381615802565b92915050565b600081519050613aa881615802565b92915050565b600082601f830112613abf57600080fd5b8135613acf848260208601613936565b91505092915050565b600082601f830112613ae957600080fd5b8135613af9848260208601613974565b91505092915050565b600060a08284031215613b1457600080fd5b613b1e60a0614b3f565b90506000613b2e84828501613ba2565b6000830152506020613b4284828501613bb7565b6020830152506040613b5684828501613bb7565b6040830152506060613b6a84828501613a5a565b606083015250608082013567ffffffffffffffff811115613b8a57600080fd5b613b9684828501613ad8565b60808301525092915050565b600081359050613bb181615819565b92915050565b600081359050613bc681615830565b92915050565b600081359050613bdb81615847565b92915050565b600060208284031215613bf357600080fd5b6000613c01848285016139b2565b91505092915050565b60008060408385031215613c1d57600080fd5b6000613c2b858286016139b2565b9250506020613c3c858286016139b2565b9150509250929050565b600080600080600060a08688031215613c5e57600080fd5b6000613c6c888289016139b2565b9550506020613c7d888289016139b2565b945050604086013567ffffffffffffffff811115613c9a57600080fd5b613ca688828901613a30565b935050606086013567ffffffffffffffff811115613cc357600080fd5b613ccf88828901613a30565b925050608086013567ffffffffffffffff811115613cec57600080fd5b613cf888828901613aae565b9150509295509295909350565b600080600080600060a08688031215613d1d57600080fd5b6000613d2b888289016139b2565b9550506020613d3c888289016139b2565b9450506040613d4d88828901613ba2565b9350506060613d5e88828901613ba2565b925050608086013567ffffffffffffffff811115613d7b57600080fd5b613d8788828901613aae565b9150509295509295909350565b60008060408385031215613da757600080fd5b6000613db5858286016139b2565b9250506020613dc685828601613a5a565b9150509250929050565b60008060408385031215613de357600080fd5b6000613df1858286016139b2565b9250506020613e0285828601613ba2565b9150509250929050565b60008060408385031215613e1f57600080fd5b600083013567ffffffffffffffff811115613e3957600080fd5b613e45858286016139dc565b925050602083013567ffffffffffffffff811115613e6257600080fd5b613e6e85828601613a30565b9150509250929050565b600060208284031215613e8a57600080fd5b600082013567ffffffffffffffff811115613ea457600080fd5b613eb084828501613a06565b91505092915050565b60008060408385031215613ecc57600080fd5b6000613eda85828601613a5a565b9250506020613eeb85828601613bb7565b9150509250929050565b600060208284031215613f0757600080fd5b6000613f1584828501613a84565b91505092915050565b600060208284031215613f3057600080fd5b6000613f3e84828501613a99565b91505092915050565b600060208284031215613f5957600080fd5b6000613f6784828501613ba2565b91505092915050565b60008060408385031215613f8357600080fd5b6000613f9185828601613ba2565b9250506020613fa2858286016139c7565b9150509250929050565b600060208284031215613fbe57600080fd5b6000613fcc84828501613bb7565b91505092915050565b600080600080600060a08688031215613fed57600080fd5b6000613ffb88828901613bb7565b955050602061400c88828901613a6f565b945050604061401d88828901613bcc565b935050606061402e88828901613a6f565b925050608061403f88828901613a6f565b9150509295509295909350565b60006140588383614255565b905092915050565b600061406c8383614583565b60208301905092915050565b600061408483836145a1565b60208301905092915050565b61409981614ecc565b82525050565b6140b06140ab82614ecc565b6150be565b82525050565b60006140c182614c7a565b6140cb8185614cd8565b9350836020820285016140dd85614c4a565b8060005b8581101561411957848403895281516140fa858261404c565b945061410583614cb1565b925060208a019950506001810190506140e1565b50829750879550505050505092915050565b600061413682614c85565b6141408185614ce9565b935061414b83614c5a565b8060005b8381101561417c5781516141638882614060565b975061416e83614cbe565b92505060018101905061414f565b5085935050505092915050565b600061419482614c90565b61419e8185614cfa565b93506141a983614c6a565b8060005b838110156141da5781516141c18882614078565b97506141cc83614ccb565b9250506001810190506141ad565b5085935050505092915050565b6141f081614ef0565b82525050565b6141ff81614efc565b82525050565b61421661421182614efc565b6150d0565b82525050565b600061422782614c9b565b6142318185614d0b565b9350614241818560208601614f88565b61424a816151dc565b840191505092915050565b600061426082614ca6565b61426a8185614d1c565b935061427a818560208601614f88565b614283816151dc565b840191505092915050565b600061429982614ca6565b6142a38185614d2d565b93506142b3818560208601614f88565b6142bc816151dc565b840191505092915050565b60006142d4603483614d2d565b91506142df82615214565b604082019050919050565b60006142f7602883614d2d565b915061430282615263565b604082019050919050565b600061431a600483614d2d565b9150614325826152b2565b602082019050919050565b600061433d601c83614d3e565b9150614348826152db565b601c82019050919050565b6000614360602b83614d2d565b915061436b82615304565b604082019050919050565b6000614383602683614d2d565b915061438e82615353565b604082019050919050565b60006143a6602983614d2d565b91506143b1826153a2565b604082019050919050565b60006143c9600983614d2d565b91506143d4826153f1565b602082019050919050565b60006143ec600883614d2d565b91506143f78261541a565b602082019050919050565b600061440f602583614d2d565b915061441a82615443565b604082019050919050565b6000614432603283614d2d565b915061443d82615492565b604082019050919050565b6000614455600583614d2d565b9150614460826154e1565b602082019050919050565b6000614478600583614d2d565b91506144838261550a565b602082019050919050565b600061449b602a83614d2d565b91506144a682615533565b604082019050919050565b60006144be602083614d2d565b91506144c982615582565b602082019050919050565b60006144e1602983614d2d565b91506144ec826155ab565b604082019050919050565b6000614504602983614d2d565b915061450f826155fa565b604082019050919050565b6000614527600783614d2d565b915061453282615649565b602082019050919050565b600061454a602883614d2d565b915061455582615672565b604082019050919050565b600061456d602183614d2d565b9150614578826156c1565b604082019050919050565b61458c81614f52565b82525050565b61459b81614f52565b82525050565b6145aa81614f5c565b82525050565b6145b981614f5c565b82525050565b6145d06145cb82614f5c565b6150ec565b82525050565b6145df81614f6c565b82525050565b60006145f1828561409f565b60148201915061460182846145bf565b6004820191508190509392505050565b600061461c82614330565b91506146288284614205565b60208201915081905092915050565b600060208201905061464c6000830184614090565b92915050565b600060a0820190506146676000830188614090565b6146746020830187614090565b8181036040830152614686818661412b565b9050818103606083015261469a818561412b565b905081810360808301526146ae818461421c565b90509695505050505050565b600060a0820190506146cf6000830188614090565b6146dc6020830187614090565b6146e96040830186614592565b6146f66060830185614592565b8181036080830152614708818461421c565b90509695505050505050565b6000602082019050818103600083015261472e818461412b565b905092915050565b60006040820190508181036000830152614750818561412b565b90508181036020830152614764818461412b565b90509392505050565b600060408201905081810360008301526147878185614189565b9050818103602083015261479b81846140b6565b90509392505050565b60006020820190506147b960008301846141e7565b92915050565b60006080820190506147d460008301876141f6565b6147e160208301866145d6565b6147ee60408301856141f6565b6147fb60608301846141f6565b95945050505050565b6000602082019050818103600083015261481e818461428e565b905092915050565b6000602082019050818103600083015261483f816142c7565b9050919050565b6000602082019050818103600083015261485f816142ea565b9050919050565b6000602082019050818103600083015261487f8161430d565b9050919050565b6000602082019050818103600083015261489f81614353565b9050919050565b600060208201905081810360008301526148bf81614376565b9050919050565b600060208201905081810360008301526148df81614399565b9050919050565b600060208201905081810360008301526148ff816143bc565b9050919050565b6000602082019050818103600083015261491f816143df565b9050919050565b6000602082019050818103600083015261493f81614402565b9050919050565b6000602082019050818103600083015261495f81614425565b9050919050565b6000602082019050818103600083015261497f81614448565b9050919050565b6000602082019050818103600083015261499f8161446b565b9050919050565b600060208201905081810360008301526149bf8161448e565b9050919050565b600060208201905081810360008301526149df816144b1565b9050919050565b600060208201905081810360008301526149ff816144d4565b9050919050565b60006020820190508181036000830152614a1f816144f7565b9050919050565b60006020820190508181036000830152614a3f8161451a565b9050919050565b60006020820190508181036000830152614a5f8161453d565b9050919050565b60006020820190508181036000830152614a7f81614560565b9050919050565b6000602082019050614a9b6000830184614592565b92915050565b6000604082019050614ab66000830185614592565b614ac36020830184614592565b9392505050565b600060a082019050614adf6000830188614592565b614aec60208301876145b0565b614af960408301866145b0565b614b0660608301856141e7565b8181036080830152614b18818461428e565b90509695505050505050565b6000602082019050614b3960008301846145b0565b92915050565b6000614b49614b5a565b9050614b558282615017565b919050565b6000604051905090565b600067ffffffffffffffff821115614b7f57614b7e61518b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614bab57614baa61518b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614bd757614bd661518b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c0357614c0261518b565b5b614c0c826151dc565b9050602081019050919050565b600067ffffffffffffffff821115614c3457614c3361518b565b5b614c3d826151dc565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d5482614f52565b9150614d5f83614f52565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d9457614d936150fe565b5b828201905092915050565b6000614daa82614f5c565b9150614db583614f5c565b92508263ffffffff03821115614dce57614dcd6150fe565b5b828201905092915050565b6000614de482614f52565b9150614def83614f52565b925082614dff57614dfe61512d565b5b828204905092915050565b6000614e1582614f52565b9150614e2083614f52565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e5957614e586150fe565b5b828202905092915050565b6000614e6f82614f52565b9150614e7a83614f52565b925082821015614e8d57614e8c6150fe565b5b828203905092915050565b6000614ea382614f5c565b9150614eae83614f5c565b925082821015614ec157614ec06150fe565b5b828203905092915050565b6000614ed782614f32565b9050919050565b6000614ee982614f32565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614fa6578082015181840152602081019050614f8b565b83811115614fb5576000848401525b50505050565b6000614fc682614f5c565b91506000821415614fda57614fd96150fe565b5b600182039050919050565b60006002820490506001821680614ffd57607f821691505b602082108114156150115761501061515c565b5b50919050565b615020826151dc565b810181811067ffffffffffffffff8211171561503f5761503e61518b565b5b80604052505050565b600061505382614f52565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615086576150856150fe565b5b600182019050919050565b600061509c82614f5c565b915063ffffffff8214156150b3576150b26150fe565b5b600182019050919050565b60006150c9826150da565b9050919050565b6000819050919050565b60006150e5826151fa565b9050919050565b60006150f7826151ed565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156151d95760046000803e6151d6600051615207565b90505b90565b6000601f19601f8301169050919050565b60008160e01b9050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f74696d6500000000000000000000000000000000000000000000000000000000600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f77686974656c6973740000000000000000000000000000000000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f6c696d6974000000000000000000000000000000000000000000000000000000600082015250565b7f76616c7565000000000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f73746f7070656400000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015615720576157a3565b615728614b5a565b60043d036004823e80513d602482011167ffffffffffffffff821117156157505750506157a3565b808201805167ffffffffffffffff81111561576e57505050506157a3565b80602083010160043d03850181111561578b5750505050506157a3565b61579a82602001850186615017565b82955050505050505b90565b6157af81614ecc565b81146157ba57600080fd5b50565b6157c681614ede565b81146157d157600080fd5b50565b6157dd81614ef0565b81146157e857600080fd5b50565b6157f481614efc565b81146157ff57600080fd5b50565b61580b81614f06565b811461581657600080fd5b50565b61582281614f52565b811461582d57600080fd5b50565b61583981614f5c565b811461584457600080fd5b50565b61585081614f6c565b811461585b57600080fd5b5056fea2646970667358221220de6661fb1b3beddff8e1ee4d51faf13692a71945822238908e70f0eb66dcd92864736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d647755526d7133576151367a57395243375337376d4a3270335143786f316e3450676d567344675833467a690000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000000000000006a94d74f43000000000000000000000000000000000000000000000000000000000000000005dc0000000000000000000000000000000000000000000000000000000061ca0d30000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000003a697066733a2f2f516d5442467439355275703356666976336952516f36564378744d6633325163486a7a756e354d356d74357768642f7b69647d00000000000000000000000000000000000000000000000000000000000000b1a2bc2ec500000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000077359400000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f8b0a10e47000000000000000000000000000000000000000000000000000000000000000009c40000000000000000000000000000000000000000000000000000000077359400000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013fbe85edc9000000000000000000000000000000000000000000000000000000000000000009c40000000000000000000000000000000000000000000000000000000077359400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000077359400000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101225760003560e01c80638da5cb5b116100a0578063ce56c45411610064578063ce56c454146103f9578063e40de88714610422578063e985e9c514610460578063f242432a1461049d578063f2fde38b146104c65761012c565b80638da5cb5b1461030f578063a22cb4651461033a578063ba7efdd614610363578063bf3ca855146103a0578063c6f0bfec146103dd5761012c565b806345199ce1116100e757806345199ce1146102285780634e1273f4146102695780636a9fc2a5146102a6578063715018a6146102cf5780638d411c7e146102e65761012c565b8062fdd58e1461013157806301ffc9a71461016e5780630e89341c146101ab5780632eb2c2d6146101e8578063442ba061146102115761012c565b3661012c57600080fd5b600080fd5b34801561013d57600080fd5b5061015860048036038101906101539190613dd0565b6104ef565b6040516101659190614a86565b60405180910390f35b34801561017a57600080fd5b5061019560048036038101906101909190613ef5565b6105b8565b6040516101a291906147a4565b60405180910390f35b3480156101b757600080fd5b506101d260048036038101906101cd9190613f47565b61069a565b6040516101df9190614804565b60405180910390f35b3480156101f457600080fd5b5061020f600480360381019061020a9190613c46565b610a9f565b005b34801561021d57600080fd5b50610226610b40565b005b34801561023457600080fd5b5061024f600480360381019061024a9190613f47565b610bd9565b604051610260959493929190614aca565b60405180910390f35b34801561027557600080fd5b50610290600480360381019061028b9190613e0c565b610cd4565b60405161029d9190614714565b60405180910390f35b3480156102b257600080fd5b506102cd60048036038101906102c89190613e78565b610e85565b005b3480156102db57600080fd5b506102e4611070565b005b3480156102f257600080fd5b5061030d60048036038101906103089190613eb9565b6110f8565b005b34801561031b57600080fd5b506103246111b3565b6040516103319190614637565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c9190613d94565b6111dd565b005b34801561036f57600080fd5b5061038a60048036038101906103859190613fac565b61135e565b6040516103979190614b24565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190613fac565b611381565b6040516103d49190614b24565b60405180910390f35b6103f760048036038101906103f29190613fd5565b6113a4565b005b34801561040557600080fd5b50610420600480360381019061041b9190613f70565b611f02565b005b34801561042e57600080fd5b5061044960048036038101906104449190613be1565b611fc9565b60405161045792919061476d565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190613c0a565b61234a565b60405161049491906147a4565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf9190613d05565b6123de565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190613be1565b61247f565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055790614886565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068357507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610693575061069282612577565b5b9050919050565b6060600460016004805490506106b09190614e64565b815481106106e7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906003020160010160049054906101000a900463ffffffff1663ffffffff16421061080157600460016004805490506107299190614e64565b81548110610760577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060030201600201805461077c90614fe5565b80601f01602080910402602001604051908101604052809291908181526020018280546107a890614fe5565b80156107f55780601f106107ca576101008083540402835291602001916107f5565b820191906000526020600020905b8154815290600101906020018083116107d857829003601f168201915b50505050509050610a9a565b6004805490506001600660008563ffffffff1663ffffffff16815260200190815260200160002060009054906101000a900463ffffffff166108439190614d9f565b63ffffffff1614806108f7575060046001600660008563ffffffff1663ffffffff16815260200190815260200160002060009054906101000a900463ffffffff1661088e9190614d9f565b63ffffffff16815481106108cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906003020160010160049054906101000a900463ffffffff1663ffffffff164210155b15610a0c576004600660008463ffffffff1663ffffffff16815260200190815260200160002060009054906101000a900463ffffffff1663ffffffff168154811061096b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060030201600201805461098790614fe5565b80601f01602080910402602001604051908101604052809291908181526020018280546109b390614fe5565b8015610a005780601f106109d557610100808354040283529160200191610a00565b820191906000526020600020905b8154815290600101906020018083116109e357829003601f168201915b50505050509050610a9a565b600a8054610a1990614fe5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4590614fe5565b8015610a925780601f10610a6757610100808354040283529160200191610a92565b820191906000526020600020905b815481529060010190602001808311610a7557829003601f168201915b505050505090505b919050565b610aa76125e1565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610aed5750610aec85610ae76125e1565b61234a565b5b610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390614946565b60405180910390fd5b610b3985858585856125e9565b5050505050565b610b486125e1565b73ffffffffffffffffffffffffffffffffffffffff16610b666111b3565b73ffffffffffffffffffffffffffffffffffffffff1614610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb3906149c6565b60405180910390fd5b6001600560016101000a81548160ff021916908315150217905550565b60048181548110610be957600080fd5b90600052602060002090600302016000915090508060000154908060010160009054906101000a900463ffffffff16908060010160049054906101000a900463ffffffff16908060010160089054906101000a900460ff1690806002018054610c5190614fe5565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7d90614fe5565b8015610cca5780601f10610c9f57610100808354040283529160200191610cca565b820191906000526020600020905b815481529060010190602001808311610cad57829003601f168201915b5050505050905085565b60608151835114610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190614a06565b60405180910390fd5b6000835167ffffffffffffffff811115610d5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d8b5781602001602082028036833780820191505090505b50905060005b8451811015610e7a57610e24858281518110610dd6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610e17577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516104ef565b828281518110610e5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610e7390615048565b9050610d91565b508091505092915050565b610e8d6125e1565b73ffffffffffffffffffffffffffffffffffffffff16610eab6111b3565b73ffffffffffffffffffffffffffffffffffffffff1614610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef8906149c6565b60405180910390fd5b60001515600560019054906101000a900460ff16151514610f2157600080fd5b60006004805490501115610f3e5760046000610f3d9190613660565b5b60005b81518163ffffffff16101561106c576004828263ffffffff1681518110610f91577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190806001815401808255809150506001900390600052602060002090600302016000909190919091506000820151816000015560208201518160010160006101000a81548163ffffffff021916908363ffffffff16021790555060408201518160010160046101000a81548163ffffffff021916908363ffffffff16021790555060608201518160010160086101000a81548160ff0219169083151502179055506080820151816002019080519060200190611056929190613684565b505050808061106490615091565b915050610f41565b5050565b6110786125e1565b73ffffffffffffffffffffffffffffffffffffffff166110966111b3565b73ffffffffffffffffffffffffffffffffffffffff16146110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e3906149c6565b60405180910390fd5b6110f66000612949565b565b6111006125e1565b73ffffffffffffffffffffffffffffffffffffffff1661111e6111b3565b73ffffffffffffffffffffffffffffffffffffffff1614611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b906149c6565b60405180910390fd5b81600560006101000a81548160ff02191690831515021790555080600560026101000a81548163ffffffff021916908363ffffffff1602179055505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff166111fc6125e1565b73ffffffffffffffffffffffffffffffffffffffff161415611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a906149e6565b60405180910390fd5b80600160006112606125e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661130d6125e1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135291906147a4565b60405180910390a35050565b60076020528060005260406000206000915054906101000a900463ffffffff1681565b60066020528060005260406000206000915054906101000a900463ffffffff1681565b600560009054906101000a900460ff166113f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ea90614a26565b60405180910390fd5b600460008154811061142e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906003020160010160049054906101000a900463ffffffff1663ffffffff16421015611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90614866565b60405180910390fd5b60008060005b6004805490508163ffffffff1610156116c557600760008263ffffffff1663ffffffff16815260200190815260200160002060009054906101000a900463ffffffff1660048263ffffffff1681548110611521577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906003020160010160009054906101000a900463ffffffff1661154d9190614e98565b826115589190614d9f565b91504260048263ffffffff168154811061159b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906003020160010160049054906101000a900463ffffffff1663ffffffff161161166d576004805490506001826115db9190614d9f565b63ffffffff16148061165f57504260046001836115f89190614d9f565b63ffffffff1681548110611635577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906003020160010160049054906101000a900463ffffffff1663ffffffff16115b1561166c578092506116c5565b5b600160048054905061167f9190614e64565b60018261168c9190614d9f565b63ffffffff161480156116a5575060008263ffffffff16115b156116b2578092506116c5565b80806116bd90615091565b91505061149e565b5060048263ffffffff1681548110611706577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906003020160010160089054906101000a900460ff16156118475760018660405160200161173d9190614611565b604051602081830303815290604052805190602001208686866040516000815260200160405260405161177394939291906147bf565b6020604051602081039080840390855afa158015611795573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff166117bd6111b3565b73ffffffffffffffffffffffffffffffffffffffff1614801561180757508533836040516020016117ef9291906145e5565b60405160208183030381529060405280519060200120145b611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d906148e6565b60405180910390fd5b5b600560029054906101000a900463ffffffff1663ffffffff16600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008463ffffffff1663ffffffff16815260200190815260200160002060009054906101000a900463ffffffff1663ffffffff1610611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90614966565b60405180910390fd5b60048263ffffffff1681548110611953577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060030201600001543410156119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e90614986565b60405180910390fd5b60008163ffffffff16116119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790614906565b60405180910390fd5b6000803414611a5b5760048363ffffffff1681548110611a39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600302016000015434611a569190614dd9565b611a5d565b875b90506000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008563ffffffff1663ffffffff16815260200190815260200160002060009054906101000a900463ffffffff16600560029054906101000a900463ffffffff16611aeb9190614e98565b90508163ffffffff168163ffffffff161015611b05578091505b8163ffffffff168363ffffffff161015611b1d578291505b60048463ffffffff1681548110611b5d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060030201600001548263ffffffff16611b809190614e0a565b341115611c3c573373ffffffffffffffffffffffffffffffffffffffff166108fc60048663ffffffff1681548110611be1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000209060030201600001548463ffffffff16611c049190614e0a565b34611c0f9190614e64565b9081150290604051600060405180830381858888f19350505050158015611c3a573d6000803e3d6000fd5b505b60005b60008363ffffffff161115611ef6576003601481819054906101000a900463ffffffff1680929190611c7090615091565b91906101000a81548163ffffffff021916908363ffffffff160217905550508080611c9a90615091565b915050600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff168152602001908152602001600020600081819054906101000a900463ffffffff1680929190611d1990615091565b91906101000a81548163ffffffff021916908363ffffffff160217905550508280611d4390614fbb565b935050600080600090505b6004805490508163ffffffff161015611ebb5760048163ffffffff1681548110611da1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020906003020160010160009054906101000a900463ffffffff1682611dce9190614d9f565b91508163ffffffff16600360149054906101000a900463ffffffff1663ffffffff1611611ea8578060066000600360149054906101000a900463ffffffff1663ffffffff1663ffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff160217905550600760008263ffffffff1663ffffffff168152602001908152602001600020600081819054906101000a900463ffffffff1680929190611e8490615091565b91906101000a81548163ffffffff021916908363ffffffff16021790555050611ebb565b8080611eb390615091565b915050611d4e565b50611ef033600360149054906101000a900463ffffffff1663ffffffff16600160405180602001604052806000815250612a0f565b50611c3f565b50505050505050505050565b611f0a6125e1565b73ffffffffffffffffffffffffffffffffffffffff16611f286111b3565b73ffffffffffffffffffffffffffffffffffffffff1614611f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f75906149c6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611fc4573d6000803e3d6000fd5b505050565b6060806000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905067ffffffffffffffff811115612050577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561207e5781602001602082028036833780820191505090505b5090506000600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905067ffffffffffffffff811115612105577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561213857816020015b60608152602001906001900390816121235790505b50905060005b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508163ffffffff16101561233c57600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208163ffffffff168154811061220b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600891828204019190066004029054906101000a900463ffffffff16838263ffffffff1681518110612270577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019063ffffffff16908163ffffffff16815250506122df838263ffffffff16815181106122cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015163ffffffff1661069a565b828263ffffffff168151811061231e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181905250808061233490615091565b91505061213e565b508181935093505050915091565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123e66125e1565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061242c575061242b856124266125e1565b61234a565b5b61246b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612462906148c6565b60405180910390fd5b6124788585858585612ba5565b5050505050565b6124876125e1565b73ffffffffffffffffffffffffffffffffffffffff166124a56111b3565b73ffffffffffffffffffffffffffffffffffffffff16146124fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f2906149c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561256b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612562906148a6565b60405180910390fd5b61257481612949565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b815183511461262d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262490614a46565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561269d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269490614926565b60405180910390fd5b60006126a76125e1565b90506126b7818787878787612e27565b60005b84518110156128b45760008582815181106126fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110612743577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127db906149a6565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128999190614d49565b92505081905550505050806128ad90615048565b90506126ba565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161292b929190614736565b60405180910390a46129418187878787876131b9565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7690614a66565b60405180910390fd5b6000612a896125e1565b9050612aaa81600087612a9b886133a0565b612aa4886133a0565b87612e27565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b099190614d49565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612b87929190614aa1565b60405180910390a4612b9e81600087878787613466565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0c90614926565b60405180910390fd5b6000612c1f6125e1565b9050612c3f818787612c30886133a0565b612c39886133a0565b87612e27565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccd906149a6565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d8b9190614d49565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612e08929190614aa1565b60405180910390a4612e1e828888888888613466565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612f535760005b83518163ffffffff161015612f5157600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020848263ffffffff1681518110612eeb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190806001815401808255809150506001900390600052602060002090600891828204019190066004029091909190916101000a81548163ffffffff021916908363ffffffff1602179055508080612f4990615091565b915050612e5e565b505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146131b15760005b83518163ffffffff1610156131af5760005b600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508163ffffffff16101561319b57848263ffffffff168151811061302b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff16815481106130b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600891828204019190066004029054906101000a900463ffffffff1663ffffffff16141561318857600960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208163ffffffff168154811061315f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600891828204019190066004026101000a81549063ffffffff02191690555b808061319390615091565b915050612f9c565b5080806131a790615091565b915050612f8a565b505b505050505050565b6131d88473ffffffffffffffffffffffffffffffffffffffff1661364d565b15613398578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161321e959493929190614652565b602060405180830381600087803b15801561323857600080fd5b505af192505050801561326957506040513d601f19601f820116820180604052508101906132669190613f1e565b60015b61330f576132756151ba565b806308c379a014156132d2575061328a615710565b8061329557506132d4565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c99190614804565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330690614826565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338d90614846565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156133e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156134135781602001602082028036833780820191505090505b5090508281600081518110613451577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6134858473ffffffffffffffffffffffffffffffffffffffff1661364d565b15613645578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016134cb9594939291906146ba565b602060405180830381600087803b1580156134e557600080fd5b505af192505050801561351657506040513d601f19601f820116820180604052508101906135139190613f1e565b60015b6135bc576135226151ba565b806308c379a0141561357f5750613537615710565b806135425750613581565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135769190614804565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135b390614826565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363a90614846565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b5080546000825560030290600052602060002090810190613681919061370a565b50565b82805461369090614fe5565b90600052602060002090601f0160209004810192826136b257600085556136f9565b82601f106136cb57805160ff19168380011785556136f9565b828001600101855582156136f9579182015b828111156136f85782518255916020019190600101906136dd565b5b509050613706919061377b565b5090565b5b80821115613777576000808201600090556001820160006101000a81549063ffffffff02191690556001820160046101000a81549063ffffffff02191690556001820160086101000a81549060ff021916905560028201600061376e9190613798565b5060030161370b565b5090565b5b8082111561379457600081600090555060010161377c565b5090565b5080546137a490614fe5565b6000825580601f106137b657506137d5565b601f0160209004906000526020600020908101906137d4919061377b565b5b50565b60006137eb6137e684614b64565b614b3f565b9050808382526020820190508285602086028201111561380a57600080fd5b60005b8581101561383a578161382088826139b2565b84526020840193506020830192505060018101905061380d565b5050509392505050565b600061385761385284614b90565b614b3f565b9050808382526020820190508285602086028201111561387657600080fd5b60005b858110156138c057813567ffffffffffffffff81111561389857600080fd5b8086016138a58982613b02565b85526020850194506020840193505050600181019050613879565b5050509392505050565b60006138dd6138d884614bbc565b614b3f565b905080838252602082019050828560208602820111156138fc57600080fd5b60005b8581101561392c57816139128882613ba2565b8452602084019350602083019250506001810190506138ff565b5050509392505050565b600061394961394484614be8565b614b3f565b90508281526020810184848401111561396157600080fd5b61396c848285614f79565b509392505050565b600061398761398284614c19565b614b3f565b90508281526020810184848401111561399f57600080fd5b6139aa848285614f79565b509392505050565b6000813590506139c1816157a6565b92915050565b6000813590506139d6816157bd565b92915050565b600082601f8301126139ed57600080fd5b81356139fd8482602086016137d8565b91505092915050565b600082601f830112613a1757600080fd5b8135613a27848260208601613844565b91505092915050565b600082601f830112613a4157600080fd5b8135613a518482602086016138ca565b91505092915050565b600081359050613a69816157d4565b92915050565b600081359050613a7e816157eb565b92915050565b600081359050613a9381615802565b92915050565b600081519050613aa881615802565b92915050565b600082601f830112613abf57600080fd5b8135613acf848260208601613936565b91505092915050565b600082601f830112613ae957600080fd5b8135613af9848260208601613974565b91505092915050565b600060a08284031215613b1457600080fd5b613b1e60a0614b3f565b90506000613b2e84828501613ba2565b6000830152506020613b4284828501613bb7565b6020830152506040613b5684828501613bb7565b6040830152506060613b6a84828501613a5a565b606083015250608082013567ffffffffffffffff811115613b8a57600080fd5b613b9684828501613ad8565b60808301525092915050565b600081359050613bb181615819565b92915050565b600081359050613bc681615830565b92915050565b600081359050613bdb81615847565b92915050565b600060208284031215613bf357600080fd5b6000613c01848285016139b2565b91505092915050565b60008060408385031215613c1d57600080fd5b6000613c2b858286016139b2565b9250506020613c3c858286016139b2565b9150509250929050565b600080600080600060a08688031215613c5e57600080fd5b6000613c6c888289016139b2565b9550506020613c7d888289016139b2565b945050604086013567ffffffffffffffff811115613c9a57600080fd5b613ca688828901613a30565b935050606086013567ffffffffffffffff811115613cc357600080fd5b613ccf88828901613a30565b925050608086013567ffffffffffffffff811115613cec57600080fd5b613cf888828901613aae565b9150509295509295909350565b600080600080600060a08688031215613d1d57600080fd5b6000613d2b888289016139b2565b9550506020613d3c888289016139b2565b9450506040613d4d88828901613ba2565b9350506060613d5e88828901613ba2565b925050608086013567ffffffffffffffff811115613d7b57600080fd5b613d8788828901613aae565b9150509295509295909350565b60008060408385031215613da757600080fd5b6000613db5858286016139b2565b9250506020613dc685828601613a5a565b9150509250929050565b60008060408385031215613de357600080fd5b6000613df1858286016139b2565b9250506020613e0285828601613ba2565b9150509250929050565b60008060408385031215613e1f57600080fd5b600083013567ffffffffffffffff811115613e3957600080fd5b613e45858286016139dc565b925050602083013567ffffffffffffffff811115613e6257600080fd5b613e6e85828601613a30565b9150509250929050565b600060208284031215613e8a57600080fd5b600082013567ffffffffffffffff811115613ea457600080fd5b613eb084828501613a06565b91505092915050565b60008060408385031215613ecc57600080fd5b6000613eda85828601613a5a565b9250506020613eeb85828601613bb7565b9150509250929050565b600060208284031215613f0757600080fd5b6000613f1584828501613a84565b91505092915050565b600060208284031215613f3057600080fd5b6000613f3e84828501613a99565b91505092915050565b600060208284031215613f5957600080fd5b6000613f6784828501613ba2565b91505092915050565b60008060408385031215613f8357600080fd5b6000613f9185828601613ba2565b9250506020613fa2858286016139c7565b9150509250929050565b600060208284031215613fbe57600080fd5b6000613fcc84828501613bb7565b91505092915050565b600080600080600060a08688031215613fed57600080fd5b6000613ffb88828901613bb7565b955050602061400c88828901613a6f565b945050604061401d88828901613bcc565b935050606061402e88828901613a6f565b925050608061403f88828901613a6f565b9150509295509295909350565b60006140588383614255565b905092915050565b600061406c8383614583565b60208301905092915050565b600061408483836145a1565b60208301905092915050565b61409981614ecc565b82525050565b6140b06140ab82614ecc565b6150be565b82525050565b60006140c182614c7a565b6140cb8185614cd8565b9350836020820285016140dd85614c4a565b8060005b8581101561411957848403895281516140fa858261404c565b945061410583614cb1565b925060208a019950506001810190506140e1565b50829750879550505050505092915050565b600061413682614c85565b6141408185614ce9565b935061414b83614c5a565b8060005b8381101561417c5781516141638882614060565b975061416e83614cbe565b92505060018101905061414f565b5085935050505092915050565b600061419482614c90565b61419e8185614cfa565b93506141a983614c6a565b8060005b838110156141da5781516141c18882614078565b97506141cc83614ccb565b9250506001810190506141ad565b5085935050505092915050565b6141f081614ef0565b82525050565b6141ff81614efc565b82525050565b61421661421182614efc565b6150d0565b82525050565b600061422782614c9b565b6142318185614d0b565b9350614241818560208601614f88565b61424a816151dc565b840191505092915050565b600061426082614ca6565b61426a8185614d1c565b935061427a818560208601614f88565b614283816151dc565b840191505092915050565b600061429982614ca6565b6142a38185614d2d565b93506142b3818560208601614f88565b6142bc816151dc565b840191505092915050565b60006142d4603483614d2d565b91506142df82615214565b604082019050919050565b60006142f7602883614d2d565b915061430282615263565b604082019050919050565b600061431a600483614d2d565b9150614325826152b2565b602082019050919050565b600061433d601c83614d3e565b9150614348826152db565b601c82019050919050565b6000614360602b83614d2d565b915061436b82615304565b604082019050919050565b6000614383602683614d2d565b915061438e82615353565b604082019050919050565b60006143a6602983614d2d565b91506143b1826153a2565b604082019050919050565b60006143c9600983614d2d565b91506143d4826153f1565b602082019050919050565b60006143ec600883614d2d565b91506143f78261541a565b602082019050919050565b600061440f602583614d2d565b915061441a82615443565b604082019050919050565b6000614432603283614d2d565b915061443d82615492565b604082019050919050565b6000614455600583614d2d565b9150614460826154e1565b602082019050919050565b6000614478600583614d2d565b91506144838261550a565b602082019050919050565b600061449b602a83614d2d565b91506144a682615533565b604082019050919050565b60006144be602083614d2d565b91506144c982615582565b602082019050919050565b60006144e1602983614d2d565b91506144ec826155ab565b604082019050919050565b6000614504602983614d2d565b915061450f826155fa565b604082019050919050565b6000614527600783614d2d565b915061453282615649565b602082019050919050565b600061454a602883614d2d565b915061455582615672565b604082019050919050565b600061456d602183614d2d565b9150614578826156c1565b604082019050919050565b61458c81614f52565b82525050565b61459b81614f52565b82525050565b6145aa81614f5c565b82525050565b6145b981614f5c565b82525050565b6145d06145cb82614f5c565b6150ec565b82525050565b6145df81614f6c565b82525050565b60006145f1828561409f565b60148201915061460182846145bf565b6004820191508190509392505050565b600061461c82614330565b91506146288284614205565b60208201915081905092915050565b600060208201905061464c6000830184614090565b92915050565b600060a0820190506146676000830188614090565b6146746020830187614090565b8181036040830152614686818661412b565b9050818103606083015261469a818561412b565b905081810360808301526146ae818461421c565b90509695505050505050565b600060a0820190506146cf6000830188614090565b6146dc6020830187614090565b6146e96040830186614592565b6146f66060830185614592565b8181036080830152614708818461421c565b90509695505050505050565b6000602082019050818103600083015261472e818461412b565b905092915050565b60006040820190508181036000830152614750818561412b565b90508181036020830152614764818461412b565b90509392505050565b600060408201905081810360008301526147878185614189565b9050818103602083015261479b81846140b6565b90509392505050565b60006020820190506147b960008301846141e7565b92915050565b60006080820190506147d460008301876141f6565b6147e160208301866145d6565b6147ee60408301856141f6565b6147fb60608301846141f6565b95945050505050565b6000602082019050818103600083015261481e818461428e565b905092915050565b6000602082019050818103600083015261483f816142c7565b9050919050565b6000602082019050818103600083015261485f816142ea565b9050919050565b6000602082019050818103600083015261487f8161430d565b9050919050565b6000602082019050818103600083015261489f81614353565b9050919050565b600060208201905081810360008301526148bf81614376565b9050919050565b600060208201905081810360008301526148df81614399565b9050919050565b600060208201905081810360008301526148ff816143bc565b9050919050565b6000602082019050818103600083015261491f816143df565b9050919050565b6000602082019050818103600083015261493f81614402565b9050919050565b6000602082019050818103600083015261495f81614425565b9050919050565b6000602082019050818103600083015261497f81614448565b9050919050565b6000602082019050818103600083015261499f8161446b565b9050919050565b600060208201905081810360008301526149bf8161448e565b9050919050565b600060208201905081810360008301526149df816144b1565b9050919050565b600060208201905081810360008301526149ff816144d4565b9050919050565b60006020820190508181036000830152614a1f816144f7565b9050919050565b60006020820190508181036000830152614a3f8161451a565b9050919050565b60006020820190508181036000830152614a5f8161453d565b9050919050565b60006020820190508181036000830152614a7f81614560565b9050919050565b6000602082019050614a9b6000830184614592565b92915050565b6000604082019050614ab66000830185614592565b614ac36020830184614592565b9392505050565b600060a082019050614adf6000830188614592565b614aec60208301876145b0565b614af960408301866145b0565b614b0660608301856141e7565b8181036080830152614b18818461428e565b90509695505050505050565b6000602082019050614b3960008301846145b0565b92915050565b6000614b49614b5a565b9050614b558282615017565b919050565b6000604051905090565b600067ffffffffffffffff821115614b7f57614b7e61518b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614bab57614baa61518b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614bd757614bd661518b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c0357614c0261518b565b5b614c0c826151dc565b9050602081019050919050565b600067ffffffffffffffff821115614c3457614c3361518b565b5b614c3d826151dc565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d5482614f52565b9150614d5f83614f52565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d9457614d936150fe565b5b828201905092915050565b6000614daa82614f5c565b9150614db583614f5c565b92508263ffffffff03821115614dce57614dcd6150fe565b5b828201905092915050565b6000614de482614f52565b9150614def83614f52565b925082614dff57614dfe61512d565b5b828204905092915050565b6000614e1582614f52565b9150614e2083614f52565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e5957614e586150fe565b5b828202905092915050565b6000614e6f82614f52565b9150614e7a83614f52565b925082821015614e8d57614e8c6150fe565b5b828203905092915050565b6000614ea382614f5c565b9150614eae83614f5c565b925082821015614ec157614ec06150fe565b5b828203905092915050565b6000614ed782614f32565b9050919050565b6000614ee982614f32565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614fa6578082015181840152602081019050614f8b565b83811115614fb5576000848401525b50505050565b6000614fc682614f5c565b91506000821415614fda57614fd96150fe565b5b600182039050919050565b60006002820490506001821680614ffd57607f821691505b602082108114156150115761501061515c565b5b50919050565b615020826151dc565b810181811067ffffffffffffffff8211171561503f5761503e61518b565b5b80604052505050565b600061505382614f52565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615086576150856150fe565b5b600182019050919050565b600061509c82614f5c565b915063ffffffff8214156150b3576150b26150fe565b5b600182019050919050565b60006150c9826150da565b9050919050565b6000819050919050565b60006150e5826151fa565b9050919050565b60006150f7826151ed565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156151d95760046000803e6151d6600051615207565b90505b90565b6000601f19601f8301169050919050565b60008160e01b9050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f74696d6500000000000000000000000000000000000000000000000000000000600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f77686974656c6973740000000000000000000000000000000000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f6c696d6974000000000000000000000000000000000000000000000000000000600082015250565b7f76616c7565000000000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f73746f7070656400000000000000000000000000000000000000000000000000600082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015615720576157a3565b615728614b5a565b60043d036004823e80513d602482011167ffffffffffffffff821117156157505750506157a3565b808201805167ffffffffffffffff81111561576e57505050506157a3565b80602083010160043d03850181111561578b5750505050506157a3565b61579a82602001850186615017565b82955050505050505b90565b6157af81614ecc565b81146157ba57600080fd5b50565b6157c681614ede565b81146157d157600080fd5b50565b6157dd81614ef0565b81146157e857600080fd5b50565b6157f481614efc565b81146157ff57600080fd5b50565b61580b81614f06565b811461581657600080fd5b50565b61582281614f52565b811461582d57600080fd5b50565b61583981614f5c565b811461584457600080fd5b50565b61585081614f6c565b811461585b57600080fd5b5056fea2646970667358221220de6661fb1b3beddff8e1ee4d51faf13692a71945822238908e70f0eb66dcd92864736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d647755526d7133576151367a57395243375337376d4a3270335143786f316e3450676d567344675833467a690000000000000000000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000003e0000000000000000000000000000000000000000000000000006a94d74f43000000000000000000000000000000000000000000000000000000000000000005dc0000000000000000000000000000000000000000000000000000000061ca0d30000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000003a697066733a2f2f516d5442467439355275703356666976336952516f36564378744d6633325163486a7a756e354d356d74357768642f7b69647d00000000000000000000000000000000000000000000000000000000000000b1a2bc2ec500000000000000000000000000000000000000000000000000000000000000000bb80000000000000000000000000000000000000000000000000000000077359400000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f8b0a10e47000000000000000000000000000000000000000000000000000000000000000009c40000000000000000000000000000000000000000000000000000000077359400000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013fbe85edc9000000000000000000000000000000000000000000000000000000000000000009c40000000000000000000000000000000000000000000000000000000077359400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000077359400000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmdwURmq3WaQ6zW9RC7S77mJ2p3QCxo1n4PgmVsDgX3Fzi
Arg [1] : rounds (tuple[]): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
43 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [3] : 697066733a2f2f516d647755526d7133576151367a57395243375337376d4a32
Arg [4] : 70335143786f316e3450676d567344675833467a690000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [7] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000260
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000320
Arg [10] : 00000000000000000000000000000000000000000000000000000000000003e0
Arg [11] : 000000000000000000000000000000000000000000000000006a94d74f430000
Arg [12] : 00000000000000000000000000000000000000000000000000000000000005dc
Arg [13] : 0000000000000000000000000000000000000000000000000000000061ca0d30
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [15] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [16] : 000000000000000000000000000000000000000000000000000000000000003a
Arg [17] : 697066733a2f2f516d5442467439355275703356666976336952516f36564378
Arg [18] : 744d6633325163486a7a756e354d356d74357768642f7b69647d000000000000
Arg [19] : 00000000000000000000000000000000000000000000000000b1a2bc2ec50000
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [21] : 0000000000000000000000000000000000000000000000000000000077359400
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [23] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [25] : 00000000000000000000000000000000000000000000000000f8b0a10e470000
Arg [26] : 00000000000000000000000000000000000000000000000000000000000009c4
Arg [27] : 0000000000000000000000000000000000000000000000000000000077359400
Arg [28] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [29] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [30] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [31] : 000000000000000000000000000000000000000000000000013fbe85edc90000
Arg [32] : 00000000000000000000000000000000000000000000000000000000000009c4
Arg [33] : 0000000000000000000000000000000000000000000000000000000077359400
Arg [34] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [35] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [36] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [37] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [38] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [39] : 0000000000000000000000000000000000000000000000000000000077359400
Arg [40] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [41] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [42] : 0000000000000000000000000000000000000000000000000000000000000000


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.