ETH Price: $2,289.51 (+1.08%)

Token

AzuGoal (AZG)
 

Overview

Max Total Supply

0 AZG

Holders

231

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 AZG
0x8eF49b95981af334bE4660fe8343364188628177
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:
AzuGoal

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 22: AzuGoal.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./ERC721Psi.sol";
import "./Ownable.sol";
import "./Base64.sol";
import "./ReentrancyGuard.sol";
import "./SafeMath.sol";
import "./IVRFGenerator.sol";

import "./IDDS.sol";
import "./IAccessories.sol";

contract AzuGoal is ERC721Psi, Ownable, ReentrancyGuard {
    using SafeMath for uint256;
    string[32] _teamName = [
        "Brazil",
        "Portugal",
        "Spain",
        "Netherlands",
        "England",
        "U.S.",
        "Iran",
        "Wales",
        "Ghana",
        "Saudi Arabia",
        "Mexico",
        "Poland",
        "France",
        "Australia",
        "Denmark",
        "Tunisia",
        "Senegal",
        "Costa Rica",
        "Germany",
        "Japan",
        "Belgium",
        "Canada",
        "Morocco",
        "Croatia",
        "Qatar",
        "Serbia",
        "Switzerland",
        "Cameroon",
        "Ecuador",
        "Argentina",
        "Uruguay",
        "South Korea"
    ];

    struct Publish {
        uint8 winner;
        address operator;
        bool published;
    }

    uint16 public constant MAX_SUPPLY = 9600;
    uint256 public constant FAR_FUTURE = type(uint256).max;

    uint256 _publicSaleStart = FAR_FUTURE;
    uint256 _showTimeStart = FAR_FUTURE;
    string _baseTokenURI;

    uint256 private _mintPrice;
    uint256 private _betPrice;
    uint16 private _share;

    mapping(uint8 => Publish) publish;

    uint24[] nfts;
    mapping(uint16 => uint8) airDrops;
    uint16[] finalWinners;
    uint16[] finalHolders;
    uint16 winner1 = type(uint16).max;
    uint16 winner2 = type(uint16).max;
    mapping(uint16 => bool) cashReady;
    bool[2] bigWinnerReady;

    mapping(address => bool) operators;
    uint16[] gamblers;
    IAccessories aces;
    IVRFGenerator vrf;
    uint256 _vrfRequestId;
    uint256 pool; // money to share for every one

    event publicSaleStart(uint256 time);
    event publicSalePaused(uint256 time);
    event baseUIRChanged(string uri);
    event showTimeStart(uint256 time);
    event airDropped(address to, uint256 tokenId, uint8 amount);
    event cashedOut(address to, uint256 tokenId, uint256 amount);
    event winnerReleased(uint16 id, address currentOwner);

    modifier onlyEOA() {
        if (tx.origin != msg.sender) revert("Only Individual User");
        _;
    }

    modifier onlyOperator() {
        if (!operators[tx.origin] && msg.sender != owner())
            revert("Only Operator Accounts Allowed");
        _;
    }

    constructor(
        string memory baseURI,
        uint256 bet_price,
        uint16 share
    ) ERC721Psi("AzuGoal", "AZG") {
        require(share >= 0 && share <= 1000, "share must between 0 and 1000");

        _baseTokenURI = baseURI;
        _betPrice = bet_price;
        _share = share;

        vrf = IVRFGenerator(
            IDDS(BEE_DDS_ADDRESS).toAddress(
                IDDS(BEE_DDS_ADDRESS).get("ISOTOP", "BEE_VRF_ADDRESS")
            )
        );

        aces = IAccessories(
            IDDS(BEE_DDS_ADDRESS).toAddress(
                IDDS(BEE_DDS_ADDRESS).get("ISOTOP", "BEE_AZU_PROP_ADDRESS")
            )
        );
    }

    // publicSale
    function isPublicSaleActive() public view returns (bool) {
        return block.timestamp >= _publicSaleStart;
    }

    function isShowTimeStart() public view returns (bool) {
        return block.timestamp >= _showTimeStart;
    }

    function getAirDrops(uint256 tokenId) external view returns (uint8) {
        require(_exists(tokenId), "token not exists");
        return airDrops[uint16(tokenId)];
    }

    function claimAirDrops(uint256 tokenId) external onlyEOA nonReentrant {
        require(ownerOf(tokenId) == msg.sender, "Only owner");
        uint8 value = airDrops[uint16(tokenId)];

        if (value == 0) revert("no airdrops found");

        // airdrop to msg.sender
        aces.mint(msg.sender, value);
        airDrops[uint16(tokenId)] = 0;
        emit airDropped(msg.sender, tokenId, value);
    }

    function getCash(uint256 tokenId) external view returns (uint256 _cash) {
        require(publish[64].published, "Final winner not released");

        if (!cashReady[uint16(tokenId)]) return 0;

        uint256 count = finalWinners.length;

        // Do the math
        for (uint256 i = 0; i < count; i++)
            if (finalWinners[i] == tokenId) {
                _cash += pool.mul(92).mul(40).div(10000).div(count);
                break;
            }

        count = finalHolders.length;
        for (uint256 i = 0; i < count; i++)
            if (finalHolders[i] == tokenId) {
                _cash += pool.mul(92).mul(10).div(10000).div(count);
                break;
            }
    }

    function claimCash(uint256 tokenId) external onlyEOA nonReentrant {
        require(ownerOf(tokenId) == msg.sender, "Only owner");
        require(publish[64].published, "Final winner not released");

        if (!cashReady[uint16(tokenId)]) revert("no fund or cashed out");

        uint256 _cash = 0;
        uint256 count = finalWinners.length;

        // Do the math
        for (uint256 i = 0; i < count; i++)
            if (finalWinners[i] == tokenId) {
                _cash += pool.mul(92).mul(40).div(10000).div(count);
                break;
            }

        count = finalHolders.length;
        for (uint256 i = 0; i < count; i++)
            if (finalHolders[i] == tokenId) {
                _cash += pool.mul(92).mul(10).div(10000).div(count);
                break;
            }

        // payable(msg.sender).transfer(_cash);
        (bool success, ) = msg.sender.call{value: _cash}("");
        require(success, "Claim transfer failed");

        cashReady[uint16(tokenId)] = false;
        emit cashedOut(msg.sender, tokenId, _cash);
    }

    function getBigWinnerCash(uint256 tokenId)
        external
        view
        returns (uint256 _cash)
    {
        require(publish[64].published, "Final winner not released");

        if (tokenId == winner1)
            if (bigWinnerReady[0])
                // you lucky buster
                _cash += pool.mul(92).mul(50).div(10000).div(2);

        if (tokenId == winner2)
            if (bigWinnerReady[1])
                // you lucky buster two
                _cash += pool.mul(92).mul(50).div(10000).div(2);
    }

    function claimBigWinnerCash(uint256 tokenId) external onlyEOA nonReentrant {
        require(ownerOf(tokenId) == msg.sender, "Only owner");
        require(publish[64].published, "Final winner not released");

        uint256 _cash = 0;

        if (tokenId == winner1) {
            if (!bigWinnerReady[0]) revert("no fund or cashed out");
            // you lucky buster
            _cash += pool.mul(92).mul(50).div(10000).div(2);
            bigWinnerReady[0] = false;
        }
        if (tokenId == winner2) {
            if (!bigWinnerReady[1]) revert("no fund or cashed out");
            // you lucky buster two
            _cash += pool.mul(92).mul(50).div(10000).div(2);
            bigWinnerReady[1] = false;
        }

        // payable(msg.sender).transfer(_cash);
        (bool success, ) = msg.sender.call{value: _cash}("");
        require(success, "Claim transfer failed");

        emit cashedOut(msg.sender, tokenId, _cash);
    }

    function publicSaleMint(uint8 quantity) external onlyEOA nonReentrant {
        require(isPublicSaleActive(), "Public Sales Not Started");
        require(!isShowTimeStart(), "Public Sales Finished");
        require(
            balanceOf(msg.sender) + quantity <= 4,
            "max 4 public sale NFT allowed"
        );
        require(nfts.length + quantity <= MAX_SUPPLY, "max nft sold");

        _mint(msg.sender, quantity);
        for (uint8 i = 0; i < quantity; i++) nfts.push(0);
    }

    function bet(uint16 tokenId, uint8 _team)
        external
        payable
        onlyEOA
        nonReentrant
    {
        require(isShowTimeStart(), "Public Sales not Finished");
        require(_team < 32, "Only 32 teams support");
        require(_exists(tokenId), "token not exists");
        require(ownerOf(tokenId) == msg.sender, "Only owner");
        require(nfts[tokenId] & 0x20 == 0, "Bet token");
        require(msg.value >= _betPrice, "Insufficient Payment");

        nfts[tokenId] += _team | 0x20;
        gamblers.push(tokenId);

        // Refund overpayment
        if (msg.value > _betPrice) {
            (bool success, ) = msg.sender.call{value: msg.value.sub(_betPrice)}(
                ""
            );
            require(success, "Bet transfer failed");
        }

        pool += _betPrice;
    }

    // METADATA

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

    function tokensOf(address owner)
        public
        view
        onlyEOA
        returns (uint256[] memory)
    {
        uint256 count = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](count);
        for (uint256 i; i < count; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }

    // DISPLAY

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "nonexistent token");

        if (!isShowTimeStart())
            return string(abi.encodePacked(_baseURI(), "cover.json"));
        else {
            uint24 value = nfts[tokenId];
            string memory team = _teamName[(value >> 15) & 0x1f];
            string memory no = _toString(uint256((value >> 6) & 0x1ff));
            string memory betTeam = "Not Bet";
            uint256 _id = ((value >> 15) & 0x1f) * 300 + ((value >> 6) & 0x1ff);

            string memory _name;
            if (value & 0x20 > 0) {
                betTeam = _teamName[value & 0x1f];
                _name = string(
                    abi.encodePacked(
                        "AzuGoal NFT #",
                        _toString(_id),
                        // ⭐️ = "\xe2\xad\x90\xef\xb8\x8f"
                        "\xe2\xad\x90\xef\xb8\x8f",
                        betTeam
                    )
                );
            } else
                _name = string(
                    abi.encodePacked("AzuGoal NFT #", _toString(_id))
                );

            bytes memory meta = abi.encodePacked(
                '{"name": "',
                _name,
                '", "description": "AzuGoal WorldCup 2022", "image": "',
                _baseURI(),
                _toString(_id),
                '.png", "designer": "isotop.top","attributes": [{"trait_type": "In-memory","value": "WorldCup 2022"}, {"trait_type": "Team","value": "',
                team,
                '"}, {"trait_type": "Number","value": "',
                no,
                '"}, {"trait_type": "Bet","value": "',
                betTeam,
                '"}]}'
            );

            return
                string(
                    abi.encodePacked(
                        "data:application/json;base64,",
                        Base64.encode(meta)
                    )
                );
        }
    }

    function tokenInfo(uint256 tokenId)
        external
        view
        returns (
            uint256 _team,
            uint256 _no,
            uint256 _bet
        )
    {
        require(_exists(tokenId), "nonexistent token");

        uint24 value = nfts[tokenId];
        if (value & 0x20 > 0) _bet = uint256(value & 0x1f);
        else _bet = 32;
        _team = uint256((value >> 15) & 0x1f);
        _no = uint256((value >> 6) & 0x1ff);
    }

    function getRoundStatus(uint8 round)
        external
        view
        returns (Publish memory)
    {
        return publish[round];
    }

    function getFinalHolders() external view returns (uint16[] memory) {
        return finalHolders;
    }

    function getFinalWinners() external view returns (uint16[] memory) {
        return finalWinners;
    }

    function getBigWinners() external view returns (uint16, uint16) {
        return (winner1, winner2);
    }

    function getGamblers() external view returns (uint16[] memory) {
        return gamblers;
    }

    // OPERATORS
    function setWinner(uint8 round, uint8 _team) external onlyOperator {
        require(round < 64, "max 64 matchs");
        if (publish[round].published) revert("this round had published");

        if (
            publish[round].operator == ZERO ||
            publish[round].operator == msg.sender
        ) {
            publish[round] = Publish(_team, msg.sender, false);
            return;
        }

        if (publish[round].winner != _team) {
            publish[round].operator = msg.sender;
            publish[round].winner = _team;
            return;
        }

        for (uint16 i = 0; i < nfts.length; i++)
            if (((nfts[i] >> 15) & 0x1f) == _team) airDrops[i] += 1;

        publish[round].published = true;
    }

    function setFinalWinner(uint8 round, uint8 _team) external onlyOperator {
        require(round == 64, "final round must be 64 matchs");
        if (publish[round].published) revert("this round had published");

        if (
            publish[round].operator == ZERO ||
            publish[round].operator == msg.sender
        ) {
            publish[round] = Publish(_team, msg.sender, false);
            return;
        }

        if (publish[round].winner != _team) {
            publish[round].operator = msg.sender;
            publish[round].winner = _team;
            return;
        }
        uint256 length = nfts.length;

        for (uint16 i = 0; i < length; i++) {
            uint24 value = nfts[i];

            if (((value >> 15) & 0x1f) == _team) {
                airDrops[i] += 1;
                finalHolders.push(i);
                cashReady[i] = true;
            }
            if (value & 0x20 > 0 && (value & 0x1f == _team)) {
                finalWinners.push(i);
                cashReady[i] = true;
            }
        }

        if (finalWinners.length == 0) {
            publish[round].published = true;
            return;
        }

        if (finalWinners.length == 1) {
            winner1 = finalWinners[0];
            winner2 = finalWinners[0];
        } else if (finalWinners.length == 2) {
            winner1 = finalWinners[0];
            winner2 = finalWinners[1];
        } else {
            uint256 _random = block.timestamp;

            if (_vrfRequestId != 0) {
                (bool fulfilled, uint256[] memory randomWords) = vrf
                    .getRequestStatus(_vrfRequestId);
                if (fulfilled) _random = randomWords[1];
            }

            uint16[] memory _winners = vrf.shuffle16(
                uint16(finalWinners.length),
                _random
            );

            winner1 = finalWinners[_winners[0]];
            winner2 = finalWinners[_winners[1]];
        }

        bigWinnerReady[0] = true;
        bigWinnerReady[1] = true;

        emit winnerReleased(winner1, ownerOf(winner1));
        emit winnerReleased(winner2, ownerOf(winner2));

        publish[round].published = true;
        cashReady[MAX_SUPPLY] = true;
    }

    function startPublicSale() external onlyOperator {
        _publicSaleStart = block.timestamp;

        // We need 2 shuffle random seeds
        // 1: blind box
        // 2: final winner
        _vrfRequestId = vrf.requestRandomWords(2);

        emit publicSaleStart(block.timestamp);
    }

    function pausePublicSale() external onlyOperator {
        _publicSaleStart = FAR_FUTURE;
        emit publicSalePaused(block.timestamp);
    }

    function startShowTime() external onlyOperator {
        require(_showTimeStart == FAR_FUTURE, "Shuffle happened");

        _showTimeStart = block.timestamp;

        uint256 _random = block.timestamp;

        if (_vrfRequestId != 0) {
            (bool fulfilled, uint256[] memory randomWords) = vrf
                .getRequestStatus(_vrfRequestId);
            if (fulfilled) _random = randomWords[0];
        }

        uint16[] memory id = vrf.shuffle16(9600, _random);

        unchecked {
            for (uint256 i = 0; i < nfts.length; i++) {
                uint24 _team = id[i] / 300;
                uint24 _no = id[i] % 300;
                // 0x3ff = '0b11111111111111' (14bit)

                // save 5 bits for voting team, 1 bit for bet or not yet
                nfts[i] = (_team << 15) + (_no << 6);
            }
        }

        emit showTimeStart(block.timestamp);
    }

    // Team/Partnerships & Community
    function marketingMint(address to, uint16 quantity) external onlyOperator {
        require(!isShowTimeStart(), "Sales Finished");
        require(nfts.length + quantity <= MAX_SUPPLY, "max nft sold");

        _mint(to, quantity);
        for (uint8 i = 0; i < quantity; i++) nfts.push(0);
    }

    // OWNERS + HELPERS

    function setOperators(address[] calldata _operators) external onlyOwner {
        for (uint256 i = 0; i < _operators.length; i++)
            operators[_operators[i]] = true;
    }

    function setURInew(string memory uri)
        external
        onlyOwner
        returns (string memory)
    {
        _baseTokenURI = uri;
        emit baseUIRChanged(uri);
        return _baseTokenURI;
    }

    function setPrice(uint256 bet_price) external onlyOwner {
        _betPrice = bet_price;
    }

    function withdraw()
        external
        onlyOwner
        returns (uint256 split1, uint256 split2)
    {
        require(publish[64].published, "final winner not revealed");
        require(cashReady[MAX_SUPPLY], "cashed not ready or cashed out");

        uint256 total = pool.mul(8).div(100);

        split1 = total.mul(_share).div(1000);
        split2 = total - split1;

        (bool success1, ) = address(0x7B0dc23E87febF1D053E7Df9aF4cce30F21fAe9C)
            .call{value: split1}("");
        (bool success2, ) = address(0x9da32F03cc23F9156DaA7442cADbE8366ddAc123)
            .call{value: split2}("");
        require(success1 && success2, "withdraw transfer failed");

        cashReady[MAX_SUPPLY] = false;
        emit cashedOut(msg.sender, MAX_SUPPLY, total);
    }

    function getPool() external view onlyOwner returns (uint256) {
        return (pool);
    }

    function config()
        external
        view
        onlyOwner
        returns (
            address,
            address,
            address
        )
    {
        return (address(BEE_DDS_ADDRESS), address(vrf), address(aces));
    }

    function reset() external onlyOwner {
        selfdestruct(payable(0x7B0dc23E87febF1D053E7Df9aF4cce30F21fAe9C));
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value)
        internal
        pure
        virtual
        returns (string memory str)
    {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 1 of 22: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 3 of 22: Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 4 of 22: BitMaps.sol
// SPDX-License-Identifier: MIT
/**
   _____       ___     ___ __           ____  _ __      
  / ___/____  / (_)___/ (_) /___  __   / __ )(_) /______
  \__ \/ __ \/ / / __  / / __/ / / /  / __  / / __/ ___/
 ___/ / /_/ / / / /_/ / / /_/ /_/ /  / /_/ / / /_(__  ) 
/____/\____/_/_/\__,_/_/\__/\__, /  /_____/_/\__/____/  
                           /____/                        

- npm: https://www.npmjs.com/package/solidity-bits
- github: https://github.com/estarriolvetch/solidity-bits

 */
pragma solidity ^0.8.0;

import "./BitScan.sol";
import "./Popcount.sol";

/**
 * @dev This Library is a modified version of Openzeppelin's BitMaps library with extra features.
 *
 * 1. Functions of finding the index of the closest set bit from a given index are added.
 *    The indexing of each bucket is modifed to count from the MSB to the LSB instead of from the LSB to the MSB.
 *    The modification of indexing makes finding the closest previous set bit more efficient in gas usage.
 * 2. Setting and unsetting the bitmap consecutively.
 * 3. Accounting number of set bits within a given range.   
 *
*/

/**
 * @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential.
 * Largelly inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor].
 */

library BitMaps {
    using BitScan for uint256;
    uint256 private constant MASK_INDEX_ZERO = (1 << 255);
    uint256 private constant MASK_FULL = type(uint256).max;

    struct BitMap {
        mapping(uint256 => uint256) _data;
    }

    /**
     * @dev Returns whether the bit at `index` is set.
     */
    function get(BitMap storage bitmap, uint256 index) internal view returns (bool) {
        uint256 bucket = index >> 8;
        uint256 mask = MASK_INDEX_ZERO >> (index & 0xff);
        return bitmap._data[bucket] & mask != 0;
    }

    /**
     * @dev Sets the bit at `index` to the boolean `value`.
     */
    function setTo(
        BitMap storage bitmap,
        uint256 index,
        bool value
    ) internal {
        if (value) {
            set(bitmap, index);
        } else {
            unset(bitmap, index);
        }
    }

    /**
     * @dev Sets the bit at `index`.
     */
    function set(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = MASK_INDEX_ZERO >> (index & 0xff);
        bitmap._data[bucket] |= mask;
    }

    /**
     * @dev Unsets the bit at `index`.
     */
    function unset(BitMap storage bitmap, uint256 index) internal {
        uint256 bucket = index >> 8;
        uint256 mask = MASK_INDEX_ZERO >> (index & 0xff);
        bitmap._data[bucket] &= ~mask;
    }


    /**
     * @dev Consecutively sets `amount` of bits starting from the bit at `startIndex`.
     */    
    function setBatch(BitMap storage bitmap, uint256 startIndex, uint256 amount) internal {
        uint256 bucket = startIndex >> 8;

        uint256 bucketStartIndex = (startIndex & 0xff);

        unchecked {
            if(bucketStartIndex + amount < 256) {
                bitmap._data[bucket] |= MASK_FULL << (256 - amount) >> bucketStartIndex;
            } else {
                bitmap._data[bucket] |= MASK_FULL >> bucketStartIndex;
                amount -= (256 - bucketStartIndex);
                bucket++;

                while(amount > 256) {
                    bitmap._data[bucket] = MASK_FULL;
                    amount -= 256;
                    bucket++;
                }

                bitmap._data[bucket] |= MASK_FULL << (256 - amount);
            }
        }
    }


    /**
     * @dev Consecutively unsets `amount` of bits starting from the bit at `startIndex`.
     */    
    function unsetBatch(BitMap storage bitmap, uint256 startIndex, uint256 amount) internal {
        uint256 bucket = startIndex >> 8;

        uint256 bucketStartIndex = (startIndex & 0xff);

        unchecked {
            if(bucketStartIndex + amount < 256) {
                bitmap._data[bucket] &= ~(MASK_FULL << (256 - amount) >> bucketStartIndex);
            } else {
                bitmap._data[bucket] &= ~(MASK_FULL >> bucketStartIndex);
                amount -= (256 - bucketStartIndex);
                bucket++;

                while(amount > 256) {
                    bitmap._data[bucket] = 0;
                    amount -= 256;
                    bucket++;
                }

                bitmap._data[bucket] &= ~(MASK_FULL << (256 - amount));
            }
        }
    }

    /**
     * @dev Returns number of set bits within a range.
     */
    function popcountA(BitMap storage bitmap, uint256 startIndex, uint256 amount) internal view returns(uint256 count) {
        uint256 bucket = startIndex >> 8;

        uint256 bucketStartIndex = (startIndex & 0xff);

        unchecked {
            if(bucketStartIndex + amount < 256) {
                count +=  Popcount.popcount256A(
                    bitmap._data[bucket] << bucketStartIndex >> (256 - amount)
                );
            } else {
                count += Popcount.popcount256A(
                    bitmap._data[bucket] << bucketStartIndex
                );
                amount -= (256 - bucketStartIndex);
                bucket++;

                while(amount > 256) {
                    count += Popcount.popcount256A(bitmap._data[bucket]);
                    amount -= 256;
                    bucket++;
                }
                count += Popcount.popcount256A(
                    bitmap._data[bucket] >> (256 - amount)
                );
            }
        }
    }

    /**
     * @dev Returns number of set bits within a range.
     */
    function popcountB(BitMap storage bitmap, uint256 startIndex, uint256 amount) internal view returns(uint256 count) {
        uint256 bucket = startIndex >> 8;

        uint256 bucketStartIndex = (startIndex & 0xff);

        unchecked {
            if(bucketStartIndex + amount < 256) {
                count +=  Popcount.popcount256B(
                    bitmap._data[bucket] << bucketStartIndex >> (256 - amount)
                );
            } else {
                count += Popcount.popcount256B(
                    bitmap._data[bucket] << bucketStartIndex
                );
                amount -= (256 - bucketStartIndex);
                bucket++;

                while(amount > 256) {
                    count += Popcount.popcount256B(bitmap._data[bucket]);
                    amount -= 256;
                    bucket++;
                }
                count += Popcount.popcount256B(
                    bitmap._data[bucket] >> (256 - amount)
                );
            }
        }
    }


    /**
     * @dev Find the closest index of the set bit before `index`.
     */
    function scanForward(BitMap storage bitmap, uint256 index) internal view returns (uint256 setBitIndex) {
        uint256 bucket = index >> 8;

        // index within the bucket
        uint256 bucketIndex = (index & 0xff);

        // load a bitboard from the bitmap.
        uint256 bb = bitmap._data[bucket];

        // offset the bitboard to scan from `bucketIndex`.
        bb = bb >> (0xff ^ bucketIndex); // bb >> (255 - bucketIndex)
        
        if(bb > 0) {
            unchecked {
                setBitIndex = (bucket << 8) | (bucketIndex -  bb.bitScanForward256());    
            }
        } else {
            while(true) {
                require(bucket > 0, "BitMaps: The set bit before the index doesn't exist.");
                unchecked {
                    bucket--;
                }
                // No offset. Always scan from the least significiant bit now.
                bb = bitmap._data[bucket];
                
                if(bb > 0) {
                    unchecked {
                        setBitIndex = (bucket << 8) | (255 -  bb.bitScanForward256());
                        break;
                    }
                } 
            }
        }
    }

    function getBucket(BitMap storage bitmap, uint256 bucket) internal view returns (uint256) {
        return bitmap._data[bucket];
    }
}


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 5 of 22: BitScan.sol
// SPDX-License-Identifier: MIT
/**
   _____       ___     ___ __           ____  _ __      
  / ___/____  / (_)___/ (_) /___  __   / __ )(_) /______
  \__ \/ __ \/ / / __  / / __/ / / /  / __  / / __/ ___/
 ___/ / /_/ / / / /_/ / / /_/ /_/ /  / /_/ / / /_(__  ) 
/____/\____/_/_/\__,_/_/\__/\__, /  /_____/_/\__/____/  
                           /____/                        

- npm: https://www.npmjs.com/package/solidity-bits
- github: https://github.com/estarriolvetch/solidity-bits

 */

pragma solidity ^0.8.0;


library BitScan {
    uint256 constant private DEBRUIJN_256 = 0x818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff;
    bytes constant private LOOKUP_TABLE_256 = hex"0001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8";

    /**
        @dev Isolate the least significant set bit.
     */ 
    function isolateLS1B256(uint256 bb) pure internal returns (uint256) {
        require(bb > 0);
        unchecked {
            return bb & (0 - bb);
        }
    } 

    /**
        @dev Isolate the most significant set bit.
     */ 
    function isolateMS1B256(uint256 bb) pure internal returns (uint256) {
        require(bb > 0);
        unchecked {
            bb |= bb >> 128;
            bb |= bb >> 64;
            bb |= bb >> 32;
            bb |= bb >> 16;
            bb |= bb >> 8;
            bb |= bb >> 4;
            bb |= bb >> 2;
            bb |= bb >> 1;
            
            return (bb >> 1) + 1;
        }
    } 

    /**
        @dev Find the index of the lest significant set bit. (trailing zero count)
     */ 
    function bitScanForward256(uint256 bb) pure internal returns (uint8) {
        unchecked {
            return uint8(LOOKUP_TABLE_256[(isolateLS1B256(bb) * DEBRUIJN_256) >> 248]);
        }   
    }

    /**
        @dev Find the index of the most significant set bit.
     */ 
    function bitScanReverse256(uint256 bb) pure internal returns (uint8) {
        unchecked {
            return 255 - uint8(LOOKUP_TABLE_256[((isolateMS1B256(bb) * DEBRUIJN_256) >> 248)]);
        }   
    }

    function log2(uint256 bb) pure internal returns (uint8) {
        unchecked {
            return uint8(LOOKUP_TABLE_256[(isolateMS1B256(bb) * DEBRUIJN_256) >> 248]);
        } 
    }
}


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 6 of 22: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 7 of 22: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 8 of 22: ERC721Psi.sol
// SPDX-License-Identifier: MIT
/**
  ______ _____   _____ ______ ___  __ _  _  _ 
 |  ____|  __ \ / ____|____  |__ \/_ | || || |
 | |__  | |__) | |        / /   ) || | \| |/ |
 |  __| |  _  /| |       / /   / / | |\_   _/ 
 | |____| | \ \| |____  / /   / /_ | |  | |   
 |______|_|  \_\\_____|/_/   |____||_|  |_|   
                                              
                                            
 */

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";
import "./Address.sol";
import "./StorageSlot.sol";
import "./BitMaps.sol";

contract ERC721Psi is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;
    using BitMaps for BitMaps.BitMap;

    BitMaps.BitMap private _batchHead;

    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) internal _owners;
    uint256 internal _minted;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721Psi: balance query for the zero address"
        );

        uint256 count;
        for (uint256 i; i < _minted; ++i) {
            if (_exists(i)) {
                if (owner == ownerOf(i)) {
                    ++count;
                }
            }
        }
        return count;
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        (address owner, uint256 tokenIdBatchHead) = _ownerAndBatchHeadOf(
            tokenId
        );
        return owner;
    }

    function _ownerAndBatchHeadOf(uint256 tokenId)
        internal
        view
        returns (address owner, uint256 tokenIdBatchHead)
    {
        require(
            _exists(tokenId),
            "ERC721Psi: owner query for nonexistent token"
        );
        tokenIdBatchHead = _getBatchHead(tokenId);
        owner = _owners[tokenIdBatchHead];
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "ERC721Psi: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ownerOf(tokenId);
        require(to != owner, "ERC721Psi: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721Psi: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721Psi: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721Psi: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721Psi: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721Psi: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, 1, _data),
            "ERC721Psi: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _minted;
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721Psi: operator query for nonexistent token"
        );
        address owner = ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, "");
    }

    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        uint256 startTokenId = _minted;
        _mint(to, quantity);
        require(
            _checkOnERC721Received(
                address(0),
                to,
                startTokenId,
                quantity,
                _data
            ),
            "ERC721Psi: transfer to non ERC721Receiver implementer"
        );
    }

    function _mint(address to, uint256 quantity) internal virtual {
        uint256 tokenIdBatchHead = _minted;

        require(quantity > 0, "ERC721Psi: quantity must be greater 0");
        require(to != address(0), "ERC721Psi: mint to the zero address");

        _beforeTokenTransfers(address(0), to, tokenIdBatchHead, quantity);
        _minted += quantity;
        _owners[tokenIdBatchHead] = to;
        _batchHead.set(tokenIdBatchHead);
        _afterTokenTransfers(address(0), to, tokenIdBatchHead, quantity);

        // Emit events
        for (
            uint256 tokenId = tokenIdBatchHead;
            tokenId < tokenIdBatchHead + quantity;
            tokenId++
        ) {
            emit Transfer(address(0), to, tokenId);
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        (address owner, uint256 tokenIdBatchHead) = _ownerAndBatchHeadOf(
            tokenId
        );

        require(owner == from, "ERC721Psi: transfer of token that is not own");
        require(to != address(0), "ERC721Psi: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        uint256 nextTokenId = tokenId + 1;

        if (!_batchHead.get(nextTokenId) && nextTokenId < _minted) {
            _owners[nextTokenId] = from;
            _batchHead.set(nextTokenId);
        }

        _owners[tokenId] = to;
        if (tokenId != tokenIdBatchHead) {
            _batchHead.set(tokenId);
        }

        emit Transfer(from, to, tokenId);

        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param startTokenId uint256 the first ID of the tokens to be transferred
     * @param quantity uint256 amount of the tokens to be transfered.
     * @param _data bytes optional data to send along with the call
     * @return r bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity,
        bytes memory _data
    ) private returns (bool r) {
        if (to.isContract()) {
            r = true;
            for (
                uint256 tokenId = startTokenId;
                tokenId < startTokenId + quantity;
                tokenId++
            ) {
                try
                    IERC721Receiver(to).onERC721Received(
                        _msgSender(),
                        from,
                        tokenId,
                        _data
                    )
                returns (bytes4 retval) {
                    r =
                        r &&
                        retval == IERC721Receiver.onERC721Received.selector;
                } catch (bytes memory reason) {
                    if (reason.length == 0) {
                        revert(
                            "ERC721Psi: transfer to non ERC721Receiver implementer"
                        );
                    } else {
                        assembly {
                            revert(add(32, reason), mload(reason))
                        }
                    }
                }
            }
            return r;
        } else {
            return true;
        }
    }

    function _getBatchHead(uint256 tokenId)
        internal
        view
        returns (uint256 tokenIdBatchHead)
    {
        tokenIdBatchHead = _batchHead.scanForward(tokenId);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _minted;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(index < totalSupply(), "ERC721Psi: global index out of bounds");

        uint256 count;
        for (uint256 i; i < _minted; i++) {
            if (_exists(i)) {
                if (count == index) return i;
                else count++;
            }
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256 tokenId)
    {
        uint256 count;
        for (uint256 i; i < _minted; i++) {
            if (_exists(i) && owner == ownerOf(i)) {
                if (count == index) return i;
                else count++;
            }
        }

        revert("ERC721Psi: owner index out of bounds");
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 9 of 22: IAccessories.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

interface IAccessories {
    function mint(address _to, uint256 _amount) external;

    function burn(uint256 tokenId) external;
}


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 10 of 22: IDDS.sol
// SPDX-License-Identifier: MIT
// IISOTOP version 0.10
// Creator: Dr. Zu team
pragma solidity ^0.8.4;

// mumbai
// address constant BEE_DDS_ADDRESS = 0x040E4c68d0B22C390C176515701D2B8dEcd17BEe;

// Mainnet
address constant BEE_DDS_ADDRESS = 0x8C0813590b65952197F5654ec953Ccc601725bEe;

/// @title PLAN-BEE IDDS Domain Data System 域名数据系统
/// @author Iwan Cao
/// @notice 开放使用合约,任何人可以存储自己的数据
/// @dev 每个domain可以存储一组key,每个key存储一个bytes数据. 默认的domain是公开的,任何人可读。如果需要私有化数据,选择DATATYPE 为PRIVATE。
/// @dev 数据的拥有者才能更改数据,更改为bytes(0)意味着删除这个key.
/// @dev 数据默认是msg.sender作为拥有者,如果需要个人账户tx.origin作为拥有者,请选择DATATYPE 为PERSONAL
/// @custom:planbee 这是一个PLAN-BEE计划认证的合约

interface IDDS {
    enum DATATYPE {
        PUBLIC_CONTRACT,
        PUBLIC_PERSONAL,
        PRIVATE_CONTRACT,
        PRIVATE_PERSONAL
    }

    function put(
        string calldata _domain,
        string calldata _key,
        bytes calldata _data,
        DATATYPE _type
    ) external;

    function put(
        string calldata _domain,
        string calldata _key,
        bytes calldata _data
    ) external;

    function getOwner(string calldata _domain) external view returns (address);

    function get(string calldata _domain, string calldata _key)
        external
        view
        returns (bytes memory);

    function get(
        string calldata _domain,
        string calldata _key,
        bool _personal
    ) external view returns (bytes memory);

    function getKeys(string calldata _domain)
        external
        view
        returns (string[] memory);

    function getKeys(string calldata _domain, bool _personal)
        external
        view
        returns (string[] memory);

    function toAddress(bytes memory b) external pure returns (address addr);

    function toInt(bytes calldata b) external pure returns (uint256 value);
}


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 11 of 22: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 12 of 22: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 13 of 22: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 14 of 22: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 15 of 22: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 16 of 22: IVRFGenerator.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

uint256 constant FOEVER = type(uint256).max;
address constant ZERO = 0x0000000000000000000000000000000000000000;

interface IVRFGenerator {
    event RequestSent(uint256 requestId, uint32 numWords);
    event RequestFulfilled(uint256 requestId, uint256[] randomWords);

    // Assumes the subscription is funded sufficiently.
    function requestRandomWords(uint32 numWords)
        external
        returns (uint256 requestId);

    function getRequestStatus(uint256 _requestId)
        external
        view
        returns (bool fulfilled, uint256[] memory randomWords);

    function shuffle(uint256 size, uint256 entropy)
        external
        pure
        returns (uint256[] memory);

    function shuffle16(uint16 size, uint256 entropy)
        external
        pure
        returns (uint16[] memory);
}


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 17 of 22: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 18 of 22: Popcount.sol
// SPDX-License-Identifier: MIT
/**
   _____       ___     ___ __           ____  _ __      
  / ___/____  / (_)___/ (_) /___  __   / __ )(_) /______
  \__ \/ __ \/ / / __  / / __/ / / /  / __  / / __/ ___/
 ___/ / /_/ / / / /_/ / / /_/ /_/ /  / /_/ / / /_(__  ) 
/____/\____/_/_/\__,_/_/\__/\__, /  /_____/_/\__/____/  
                           /____/                        

- npm: https://www.npmjs.com/package/solidity-bits
- github: https://github.com/estarriolvetch/solidity-bits

 */

pragma solidity ^0.8.0;

library Popcount {
    uint256 private constant m1 = 0x5555555555555555555555555555555555555555555555555555555555555555;
    uint256 private constant m2 = 0x3333333333333333333333333333333333333333333333333333333333333333;
    uint256 private constant m4 = 0x0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f;
    uint256 private constant h01 = 0x0101010101010101010101010101010101010101010101010101010101010101;

    function popcount256A(uint256 x) internal pure returns (uint256 count) {
        unchecked{
            for (count=0; x!=0; count++)
                x &= x - 1;
        }
    }

    function popcount256B(uint256 x) internal pure returns (uint256) {
        if (x == type(uint256).max) {
            return 256;
        }
        unchecked {
            x -= (x >> 1) & m1;             //put count of each 2 bits into those 2 bits
            x = (x & m2) + ((x >> 2) & m2); //put count of each 4 bits into those 4 bits 
            x = (x + (x >> 4)) & m4;        //put count of each 8 bits into those 8 bits 
            x = (x * h01) >> 248;  //returns left 8 bits of x + (x<<8) + (x<<16) + (x<<24) + ... 
        }
        return x;
    }
}

// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 19 of 22: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 20 of 22: SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 21 of 22: StorageSlot.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }
}


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

File 22 of 22: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}


// Generated by /Users/iwan/work/brownie/worldCup/scripts/functions.py 

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"bet_price","type":"uint256"},{"internalType":"uint16","name":"share","type":"uint16"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"amount","type":"uint8"}],"name":"airDropped","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"baseUIRChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"cashedOut","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"publicSalePaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"publicSaleStart","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"showTimeStart","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"id","type":"uint16"},{"indexed":false,"internalType":"address","name":"currentOwner","type":"address"}],"name":"winnerReleased","type":"event"},{"inputs":[],"name":"FAR_FUTURE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"tokenId","type":"uint16"},{"internalType":"uint8","name":"_team","type":"uint8"}],"name":"bet","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimAirDrops","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimBigWinnerCash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimCash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"config","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getAirDrops","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getBigWinnerCash","outputs":[{"internalType":"uint256","name":"_cash","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBigWinners","outputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCash","outputs":[{"internalType":"uint256","name":"_cash","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFinalHolders","outputs":[{"internalType":"uint16[]","name":"","type":"uint16[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFinalWinners","outputs":[{"internalType":"uint16[]","name":"","type":"uint16[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGamblers","outputs":[{"internalType":"uint16[]","name":"","type":"uint16[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"round","type":"uint8"}],"name":"getRoundStatus","outputs":[{"components":[{"internalType":"uint8","name":"winner","type":"uint8"},{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"published","type":"bool"}],"internalType":"struct AzuGoal.Publish","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isShowTimeStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint16","name":"quantity","type":"uint16"}],"name":"marketingMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"publicSaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"round","type":"uint8"},{"internalType":"uint8","name":"_team","type":"uint8"}],"name":"setFinalWinner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_operators","type":"address[]"}],"name":"setOperators","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"bet_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setURInew","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"round","type":"uint8"},{"internalType":"uint8","name":"_team","type":"uint8"}],"name":"setWinner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startShowTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenInfo","outputs":[{"internalType":"uint256","name":"_team","type":"uint256"},{"internalType":"uint256","name":"_no","type":"uint256"},{"internalType":"uint256","name":"_bet","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[{"internalType":"uint256","name":"split1","type":"uint256"},{"internalType":"uint256","name":"split2","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}]

600661048081815265109c985e9a5b60d21b6104a052608090815260086104c081815267141bdc9d1d59d85b60c21b6104e05260a05260056105008181526429b830b4b760d91b6105205260c052600b6105408181526a4e65746865726c616e647360a81b6105605260e052600761058081815266115b99db185b9960ca1b6105a0526101005260046105c0818152632a97299760e11b6105e052610120526106009081526324b930b760e11b61062052610140526106408381526457616c657360d81b6106605261016052610680838152644768616e6160d81b6106a05261018052600c6106c09081526b53617564692041726162696160a01b6106e0526101a052610700868152654d657869636f60d01b610720526101c05261074086815265141bdb185b9960d21b610760526101e052610780868152654672616e636560d01b6107a0526102005260096107c0818152684175737472616c696160b81b6107e052610220526108008281526644656e6d61726b60c81b61082052610240526108408281526654756e6973696160c81b61086052610260526108808281526614d95b9959d85b60ca1b6108a05261028052600a6108c090815269436f737461205269636160b01b6108e0526102a052610900828152664765726d616e7960c81b610920526102c052610940848152642530b830b760d91b610960526102e0526109808281526642656c6769756d60c81b6109a052610300526109c08781526543616e61646160d01b6109e05261032052610a00828152664d6f726f63636f60c81b610a205261034052610a408281526643726f6174696160c81b610a605261036052610a809384526428b0ba30b960d91b610aa05261038093909352610ac09586526553657262696160d01b610ae0526103a095909552610b008181526a14ddda5d1e995c9b185b9960aa1b610b20526103c052610b409283526721b0b6b2b937b7b760c11b610b60526103e092909252610b808481526622b1bab0b237b960c91b610ba05261040052610bc081815268417267656e74696e6160b81b610be05261042052610c00938452665572756775617960c81b610c205261044093909352610c80604052610c409081526a536f757468204b6f72656160a81b610c60526104605262000353919060206200071d565b506000196029819055602a556034805463ffffffff191663ffffffff1790553480156200037f57600080fd5b506040516200625938038062006259833981016040819052620003a2916200093e565b6040805180820182526007815266105e9d51dbd85b60ca1b602080830191825283518085019094526003845262415a4760e81b908401528151919291620003ec9160019162000774565b5080516200040290600290602084019062000774565b5050506200041f62000419620006c760201b60201c565b620006cb565b60016008556103e861ffff821611156200047f5760405162461bcd60e51b815260206004820152601d60248201527f7368617265206d757374206265747765656e203020616e642031303030000000604482015260640160405180910390fd5b82516200049490602b90602086019062000774565b50602d829055602e805461ffff191661ffff8316179055604051633e10510b60e01b8152738c0813590b65952197f5654ec953ccc601725bee90632d888869908290633e10510b90620004ea90600401620009b9565b600060405180830381865afa15801562000508573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000532919081019062000a0e565b6040518263ffffffff1660e01b815260040162000550919062000a63565b602060405180830381865afa1580156200056e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000594919062000a98565b603a80546001600160a01b0319166001600160a01b0392909216919091179055604051633e10510b60e01b8152738c0813590b65952197f5654ec953ccc601725bee90632d888869908290633e10510b90620005f39060040162000aca565b600060405180830381865afa15801562000611573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200063b919081019062000a0e565b6040518263ffffffff1660e01b815260040162000659919062000a63565b602060405180830381865afa15801562000677573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200069d919062000a98565b603980546001600160a01b0319166001600160a01b03929092169190911790555062000b69915050565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b826020810192821562000762579160200282015b828111156200076257825180516200075191849160209091019062000774565b509160200191906001019062000731565b5062000770929150620007ff565b5090565b828054620007829062000b2d565b90600052602060002090601f016020900481019282620007a65760008555620007f1565b82601f10620007c157805160ff1916838001178555620007f1565b82800160010185558215620007f1579182015b82811115620007f1578251825591602001919060010190620007d4565b506200077092915062000820565b808211156200077057600062000816828262000837565b50600101620007ff565b5b8082111562000770576000815560010162000821565b508054620008459062000b2d565b6000825580601f1062000856575050565b601f01602090049060005260206000209081019062000876919062000820565b50565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620008ac57818101518382015260200162000892565b83811115620008bc576000848401525b50505050565b60006001600160401b0380841115620008df57620008df62000879565b604051601f8501601f19908116603f011681019082821181831017156200090a576200090a62000879565b816040528093508581528686860111156200092457600080fd5b620009348660208301876200088f565b5050509392505050565b6000806000606084860312156200095457600080fd5b83516001600160401b038111156200096b57600080fd5b8401601f810186136200097d57600080fd5b6200098e86825160208401620008c2565b93505060208401519150604084015161ffff81168114620009ae57600080fd5b809150509250925092565b604081526000620009e0604083016006815265049534f544f560d41b602082015260400190565b828103602093840152600f81526e4245455f5652465f4144445245535360881b928101929092525060400190565b60006020828403121562000a2157600080fd5b81516001600160401b0381111562000a3857600080fd5b8201601f8101841362000a4a57600080fd5b62000a5b84825160208401620008c2565b949350505050565b602081526000825180602084015262000a848160408501602087016200088f565b601f01601f19169190910160400192915050565b60006020828403121562000aab57600080fd5b81516001600160a01b038116811462000ac357600080fd5b9392505050565b60408152600062000af1604083016006815265049534f544f560d41b602082015260400190565b828103602093840152601481527f4245455f415a555f50524f505f41444452455353000000000000000000000000928101929092525060400190565b600181811c9082168062000b4257607f821691505b60208210810362000b6357634e487b7160e01b600052602260045260246000fd5b50919050565b6156e08062000b796000396000f3fe6080604052600436106102e45760003560e01c80636352211e11610190578063b88d4fde116100dc578063cc33c87511610095578063d826f88f1161006f578063d826f88f14610988578063ddf71cd51461099d578063e985e9c5146109bd578063f2fde38b14610a0657600080fd5b8063cc33c87514610915578063ce70cd8d14610950578063d58b83e31461097057600080fd5b8063b88d4fde14610855578063be9a2d2314610875578063c76df80e14610895578063c82b9425146108b5578063c87b56dd146108d5578063ca905dc0146108f557600080fd5b806379502c551161014957806395d89b411161012357806395d89b41146107f8578063a21555391461080d578063a22cb46514610822578063a7d2161c1461084257600080fd5b806379502c551461077b5780638da5cb5b146107ba57806391b7f5ed146107d857600080fd5b80636352211e146106d0578063644ae063146106f05780636b747d631461071057806370a0823114610726578063715018a6146107465780637679e0561461075b57600080fd5b80631e84c4131161024f5780633ccfd60b11610208578063436ffa3f116101e2578063436ffa3f146105b65780634f6ccce71461066357806355d5a012146106835780635a3f2672146106a357600080fd5b80633ccfd60b14610557578063422326f41461058157806342842e0e1461059657600080fd5b80631e84c4131461048457806323b872dd1461049c57806328b6b4f8146104bc5780632c09e7c1146104dc5780632f745c591461050e57806332cb6b0c1461052e57600080fd5b80630c1c972a116102a15780630c1c972a146103df5780630c41f497146103f457806313069dfd14610409578063147489941461042957806318160ddd1461043e5780631845994d1461045357600080fd5b806301ffc9a7146102e9578063026b1d5f1461031e57806306fdde0314610341578063081812fc14610363578063095ea7b31461039b57806309eeebb0146103bd575b600080fd5b3480156102f557600080fd5b50610309610304366004614815565b610a26565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610a93565b604051908152602001610315565b34801561034d57600080fd5b50610356610aa4565b604051610315919061488a565b34801561036f57600080fd5b5061038361037e36600461489d565b610b36565b6040516001600160a01b039091168152602001610315565b3480156103a757600080fd5b506103bb6103b63660046148cd565b610bc8565b005b3480156103c957600080fd5b506103d2610cdf565b60405161031591906148f7565b3480156103eb57600080fd5b506103bb610d5e565b34801561040057600080fd5b506103bb610e52565b34801561041557600080fd5b506103bb61042436600461489d565b610ed0565b34801561043557600080fd5b506103d261106e565b34801561044a57600080fd5b50600454610333565b34801561045f57600080fd5b506034546040805161ffff808416825262010000909304909216602083015201610315565b34801561049057600080fd5b50602954421015610309565b3480156104a857600080fd5b506103bb6104b736600461493f565b6110c9565b3480156104c857600080fd5b506103336104d736600461489d565b6110fa565b3480156104e857600080fd5b506104fc6104f736600461489d565b6111eb565b60405160ff9091168152602001610315565b34801561051a57600080fd5b506103336105293660046148cd565b611251565b34801561053a57600080fd5b5061054461258081565b60405161ffff9091168152602001610315565b34801561056357600080fd5b5061056c61131b565b60408051928352602083019190915201610315565b34801561058d57600080fd5b506103d26115f0565b3480156105a257600080fd5b506103bb6105b136600461493f565b61164b565b3480156105c257600080fd5b506106336105d136600461498c565b60408051606080820183526000808352602080840182905292840181905260ff9485168152602f83528390208351918201845254808516825261010081046001600160a01b031692820192909252600160a81b90910490921615159082015290565b60408051825160ff1681526020808401516001600160a01b03169082015291810151151590820152606001610315565b34801561066f57600080fd5b5061033361067e36600461489d565b611666565b34801561068f57600080fd5b5061033361069e36600461489d565b611720565b3480156106af57600080fd5b506106c36106be3660046149a7565b6118a9565b60405161031591906149c2565b3480156106dc57600080fd5b506103836106eb36600461489d565b61196a565b3480156106fc57600080fd5b506103bb61070b3660046149fa565b611981565b34801561071c57600080fd5b5061033360001981565b34801561073257600080fd5b506103336107413660046149a7565b611c68565b34801561075257600080fd5b506103bb611d38565b34801561076757600080fd5b506103bb610776366004614a3d565b611d4c565b34801561078757600080fd5b50610790611eab565b604080516001600160a01b0394851681529284166020840152921691810191909152606001610315565b3480156107c657600080fd5b506007546001600160a01b0316610383565b3480156107e457600080fd5b506103bb6107f336600461489d565b611ee8565b34801561080457600080fd5b50610356611ef5565b34801561081957600080fd5b506103bb611f04565b34801561082e57600080fd5b506103bb61083d366004614a82565b6121e1565b6103bb610850366004614aae565b6122a5565b34801561086157600080fd5b506103bb610870366004614b6b565b61264d565b34801561088157600080fd5b506103bb61089036600461489d565b612685565b3480156108a157600080fd5b506103bb6108b036600461498c565b61298d565b3480156108c157600080fd5b506103566108d0366004614be7565b612bb0565b3480156108e157600080fd5b506103566108f036600461489d565b612c97565b34801561090157600080fd5b506103bb6109103660046149fa565b612ff3565b34801561092157600080fd5b5061093561093036600461489d565b61383d565b60408051938452602084019290925290820152606001610315565b34801561095c57600080fd5b506103bb61096b36600461489d565b613906565b34801561097c57600080fd5b50602a54421015610309565b34801561099457600080fd5b506103bb613b7e565b3480156109a957600080fd5b506103bb6109b8366004614c30565b613b9d565b3480156109c957600080fd5b506103096109d8366004614ca5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a1257600080fd5b506103bb610a213660046149a7565b613c17565b60006001600160e01b031982166380ac58cd60e01b1480610a5757506001600160e01b03198216635b5e139f60e01b145b80610a7257506001600160e01b0319821663780e9d6360e01b145b80610a8d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000610a9d613c90565b50603c5490565b606060018054610ab390614ccf565b80601f0160208091040260200160405190810160405280929190818152602001828054610adf90614ccf565b8015610b2c5780601f10610b0157610100808354040283529160200191610b2c565b820191906000526020600020905b815481529060010190602001808311610b0f57829003601f168201915b5050505050905090565b6000610b43826004541190565b610bac5760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a20617070726f76656420717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610bd38261196a565b9050806001600160a01b0316836001600160a01b031603610c425760405162461bcd60e51b8152602060048201526024808201527f4552433732315073693a20617070726f76616c20746f2063757272656e74206f6044820152633bb732b960e11b6064820152608401610ba3565b336001600160a01b0382161480610c5e5750610c5e81336109d8565b610cd05760405162461bcd60e51b815260206004820152603b60248201527f4552433732315073693a20617070726f76652063616c6c6572206973206e6f7460448201527f206f776e6572206e6f7220617070726f76656420666f7220616c6c00000000006064820152608401610ba3565b610cda8383613cea565b505050565b60606038805480602002602001604051908101604052809291908181526020018280548015610b2c57602002820191906000526020600020906000905b82829054906101000a900461ffff1661ffff1681526020019060020190602082600101049283019260010382029150808411610d1c5790505050505050905090565b3260009081526037602052604090205460ff16158015610d8957506007546001600160a01b03163314155b15610da65760405162461bcd60e51b8152600401610ba390614d09565b42602955603a5460405163e726f2e160e01b8152600260048201526001600160a01b039091169063e726f2e1906024016020604051808303816000875af1158015610df5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e199190614d40565b603b556040514281527ff5873041cf54025a0d378efc70d90938908e7499c3f41d007dc37938ae92345d906020015b60405180910390a1565b3260009081526037602052604090205460ff16158015610e7d57506007546001600160a01b03163314155b15610e9a5760405162461bcd60e51b8152600401610ba390614d09565b6000196029556040514281527f1557f02db43c040d49a0619c1083e57b0c263e11d8dd388416ab9a6ce1a4380f90602001610e48565b323314610eef5760405162461bcd60e51b8152600401610ba390614d59565b600260085403610f115760405162461bcd60e51b8152600401610ba390614d87565b600260085533610f208261196a565b6001600160a01b031614610f465760405162461bcd60e51b8152600401610ba390614dbe565b61ffff811660009081526031602052604081205460ff1690819003610fa15760405162461bcd60e51b81526020600482015260116024820152701b9bc8185a5c991c9bdc1cc8199bdd5b99607a1b6044820152606401610ba3565b6039546040516340c10f1960e01b815233600482015260ff831660248201526001600160a01b03909116906340c10f1990604401600060405180830381600087803b158015610fef57600080fd5b505af1158015611003573d6000803e3d6000fd5b5050505061ffff8216600090815260316020908152604091829020805460ff19169055815133815290810184905260ff83168183015290517f2f977e68df69d63cdf91a6aa90360df2140f3e62de2b992f6152b00d3714d98e9181900360600190a150506001600855565b60606032805480602002602001604051908101604052809291908181526020018280548015610b2c576000918252602091829020805461ffff168452908202830192909160029101808411610d1c5790505050505050905090565b6110d33382613d58565b6110ef5760405162461bcd60e51b8152600401610ba390614de2565b610cda838383613e47565b60406000908152602f60205260008051602061558b83398151915254600160a81b900460ff1661113c5760405162461bcd60e51b8152600401610ba390614e36565b60345461ffff1682036111935760365460ff1615611193576111866002611180612710611180603261117a605c603c5461403390919063ffffffff16565b90614033565b90614046565b6111909082614e99565b90505b60345462010000900461ffff1682036111e657603654610100900460ff16156111e6576111dc6002611180612710611180603261117a605c603c5461403390919063ffffffff16565b610a8d9082614e99565b919050565b60006111f8826004541190565b6112375760405162461bcd60e51b815260206004820152601060248201526f746f6b656e206e6f742065786973747360801b6044820152606401610ba3565b5061ffff1660009081526031602052604090205460ff1690565b60008060005b6004548110156112c65761126c816004541190565b8015611291575061127c8161196a565b6001600160a01b0316856001600160a01b0316145b156112b4578382036112a6579150610a8d9050565b816112b081614eb1565b9250505b806112be81614eb1565b915050611257565b5060405162461bcd60e51b8152602060048201526024808201527f4552433732315073693a206f776e657220696e646578206f7574206f6620626f604482015263756e647360e01b6064820152608401610ba3565b600080611326613c90565b6040600052602f60205260008051602061558b83398151915254600160a81b900460ff166113965760405162461bcd60e51b815260206004820152601960248201527f66696e616c2077696e6e6572206e6f742072657665616c6564000000000000006044820152606401610ba3565b61258060005260356020527fc245414cd24d2564ee7e7a329fa9082955cf6f202d571f9a2f385336c14af3b55460ff166114125760405162461bcd60e51b815260206004820152601e60248201527f636173686564206e6f74207265616479206f7220636173686564206f757400006044820152606401610ba3565b600061142f60646111806008603c5461403390919063ffffffff16565b602e5490915061144c906103e89061118090849061ffff16614033565b92506114588382614eca565b604051909250600090737b0dc23e87febf1d053e7df9af4cce30f21fae9c9085908381818185875af1925050503d80600081146114b1576040519150601f19603f3d011682016040523d82523d6000602084013e6114b6565b606091505b5050604051909150600090739da32f03cc23f9156daa7442cadbe8366ddac1239085908381818185875af1925050503d8060008114611511576040519150601f19603f3d011682016040523d82523d6000602084013e611516565b606091505b505090508180156115245750805b6115705760405162461bcd60e51b815260206004820152601860248201527f7769746864726177207472616e73666572206661696c656400000000000000006044820152606401610ba3565b6125806000819052603560209081527fc245414cd24d2564ee7e7a329fa9082955cf6f202d571f9a2f385336c14af3b5805460ff1916905560408051338152918201929092529081018490527fd08149829b4708b5a796078ac79020343425f5db94b97dfc5fe89f1e9caffb139060600160405180910390a15050509091565b60606033805480602002602001604051908101604052809291908181526020018280548015610b2c576000918252602091829020805461ffff168452908202830192909160029101808411610d1c5790505050505050905090565b610cda8383836040518060200160405280600081525061264d565b600061167160045490565b82106116cd5760405162461bcd60e51b815260206004820152602560248201527f4552433732315073693a20676c6f62616c20696e646578206f7574206f6620626044820152646f756e647360d81b6064820152608401610ba3565b6000805b600454811015611719576116e6816004541190565b15611707578382036116f9579392505050565b8161170381614eb1565b9250505b8061171181614eb1565b9150506116d1565b5050919050565b60406000908152602f60205260008051602061558b83398151915254600160a81b900460ff166117625760405162461bcd60e51b8152600401610ba390614e36565b61ffff821660009081526035602052604090205460ff1661178557506000919050565b60325460005b818110156118165783603282815481106117a7576117a7614e6d565b60009182526020909120601082040154600f9091166002026101000a900461ffff1603611804576117f382611180612710611180602861117a605c603c5461403390919063ffffffff16565b6117fd9084614e99565b9250611816565b8061180e81614eb1565b91505061178b565b505060335460005b8181101561171957836033828154811061183a5761183a614e6d565b60009182526020909120601082040154600f9091166002026101000a900461ffff16036118975761188682611180612710611180600a61117a605c603c5461403390919063ffffffff16565b6118909084614e99565b9250611719565b806118a181614eb1565b91505061181e565b60603233146118ca5760405162461bcd60e51b8152600401610ba390614d59565b60006118d583611c68565b905060008167ffffffffffffffff8111156118f2576118f2614acc565b60405190808252806020026020018201604052801561191b578160200160208202803683370190505b50905060005b82811015611962576119338582611251565b82828151811061194557611945614e6d565b60209081029190910101528061195a81614eb1565b915050611921565b509392505050565b600080600061197884614052565b50949350505050565b3260009081526037602052604090205460ff161580156119ac57506007546001600160a01b03163314155b156119c95760405162461bcd60e51b8152600401610ba390614d09565b60408260ff1610611a0c5760405162461bcd60e51b815260206004820152600d60248201526c6d6178203634206d617463687360981b6044820152606401610ba3565b60ff8083166000908152602f6020526040902054600160a81b90041615611a705760405162461bcd60e51b81526020600482015260186024820152771d1a1a5cc81c9bdd5b99081a1859081c1d589b1a5cda195960421b6044820152606401610ba3565b60ff82166000908152602f602052604090205461010090046001600160a01b03161580611abc575060ff82166000908152602f602052604090205461010090046001600160a01b031633145b15611b37576040805160608101825260ff808416825233602080840191825260008486018181528885168252602f9092529490942092518354915194511515600160a81b0260ff60a81b196001600160a01b0396909616610100026001600160a81b0319909316919093161717929092169190911790555050565b60ff8281166000908152602f6020526040902054811690821614611b875760ff9182166000908152602f6020526040902080546001600160a81b031916336101000260ff19161791909216179055565b60005b60305461ffff82161015611c40578160ff16600f60308361ffff1681548110611bb557611bb5614e6d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1662ffffff16901c601f1662ffffff1603611c2e5761ffff81166000908152603160205260408120805460019290611c1590849060ff16614ee1565b92506101000a81548160ff021916908360ff1602179055505b80611c3881614f06565b915050611b8a565b5060ff82166000908152602f60205260409020805460ff60a81b1916600160a81b1790555050565b60006001600160a01b038216611cd65760405162461bcd60e51b815260206004820152602d60248201527f4552433732315073693a2062616c616e636520717565727920666f722074686560448201526c207a65726f206164647265737360981b6064820152608401610ba3565b6000805b600454811015611d3157611cef816004541190565b15611d2157611cfd8161196a565b6001600160a01b0316846001600160a01b031603611d2157611d1e82614eb1565b91505b611d2a81614eb1565b9050611cda565b5092915050565b611d40613c90565b611d4a60006140eb565b565b3260009081526037602052604090205460ff16158015611d7757506007546001600160a01b03163314155b15611d945760405162461bcd60e51b8152600401610ba390614d09565b602a544210611dd65760405162461bcd60e51b815260206004820152600e60248201526d14d85b195cc8119a5b9a5cda195960921b6044820152606401610ba3565b60305461258090611dec9061ffff841690614e99565b1115611e295760405162461bcd60e51b815260206004820152600c60248201526b1b585e081b999d081cdbdb1960a21b6044820152606401610ba3565b611e37828261ffff1661413d565b60005b8161ffff168160ff161015610cda57603080546001810182556000919091527f6ff97a59c90d62cc7236ba3a37cd85351bf564556780cf8c1157a220f31f0cbb600a808304919091018054919092066003026101000a62ffffff021916905580611ea381614f27565b915050611e3a565b6000806000611eb8613c90565b5050603a54603954738c0813590b65952197f5654ec953ccc601725bee936001600160a01b039283169350911690565b611ef0613c90565b602d55565b606060028054610ab390614ccf565b3260009081526037602052604090205460ff16158015611f2f57506007546001600160a01b03163314155b15611f4c5760405162461bcd60e51b8152600401610ba390614d09565b600019602a5414611f925760405162461bcd60e51b815260206004820152601060248201526f14da1d59999b19481a185c1c195b995960821b6044820152606401610ba3565b42602a819055603b541561204a57603a54603b5460405163d8a4676f60e01b815260009283926001600160a01b039091169163d8a4676f91611fda9160040190815260200190565b600060405180830381865afa158015611ff7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261201f9190810190614f6a565b915091508115612047578060008151811061203c5761203c614e6d565b602002602001015192505b50505b603a54604051634039d7e760e11b81526125806004820152602481018390526000916001600160a01b031690638073afce90604401600060405180830381865afa15801561209c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526120c49190810190615017565b905060005b6030548110156121a957600061012c8383815181106120ea576120ea614e6d565b602002602001015161ffff1681612103576121036150b1565b0461ffff169050600061012c84848151811061212157612121614e6d565b602002602001015161ffff168161213a5761213a6150b1565b0661ffff16905060068162ffffff16901b600f8362ffffff16901b016030848154811061216957612169614e6d565b90600052602060002090600a91828204019190066003026101000a81548162ffffff021916908362ffffff160217905550505080806001019150506120c9565b506040514281527f4e79c0a66a5bc111570353aa23cc02a57113c396631897691b3bcce74bc015f59060200160405180910390a15050565b336001600160a01b038316036122395760405162461bcd60e51b815260206004820152601c60248201527f4552433732315073693a20617070726f766520746f2063616c6c6572000000006044820152606401610ba3565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3233146122c45760405162461bcd60e51b8152600401610ba390614d59565b6002600854036122e65760405162461bcd60e51b8152600401610ba390614d87565b6002600855602a5442101561233d5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632053616c6573206e6f742046696e6973686564000000000000006044820152606401610ba3565b60208160ff16106123885760405162461bcd60e51b815260206004820152601560248201527413db9b1e480ccc881d19585b5cc81cdd5c1c1bdc9d605a1b6044820152606401610ba3565b6123978261ffff166004541190565b6123d65760405162461bcd60e51b815260206004820152601060248201526f746f6b656e206e6f742065786973747360801b6044820152606401610ba3565b336123e461ffff841661196a565b6001600160a01b03161461240a5760405162461bcd60e51b8152600401610ba390614dbe565b60308261ffff168154811061242157612421614e6d565b6000918252602091829020600a8083049091015491066003026101000a9004161561247a5760405162461bcd60e51b81526020600482015260096024820152682132ba103a37b5b2b760b91b6044820152606401610ba3565b602d543410156124c35760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d0814185e5b595b9d60621b6044820152606401610ba3565b8060201760ff1660308361ffff16815481106124e1576124e1614e6d565b90600052602060002090600a91828204019190066003028282829054906101000a900462ffffff1661251391906150c7565b825461010092830a62ffffff81810219909216929091160217909155603880546001810182556000919091527f38395c5dceade9603479b177b68959049485df8aa97b39f3533039af5f45619960108204018054600f90921660020290920a61ffff818102199092169186160217905550602d5434111561262b57602d5460009033906125a19034906142a2565b604051600081818185875af1925050503d80600081146125dd576040519150601f19603f3d011682016040523d82523d6000602084013e6125e2565b606091505b50509050806126295760405162461bcd60e51b815260206004820152601360248201527210995d081d1c985b9cd9995c8819985a5b1959606a1b6044820152606401610ba3565b505b602d54603c600082825461263f9190614e99565b909155505060016008555050565b6126573383613d58565b6126735760405162461bcd60e51b8152600401610ba390614de2565b61267f848484846142ae565b50505050565b3233146126a45760405162461bcd60e51b8152600401610ba390614d59565b6002600854036126c65760405162461bcd60e51b8152600401610ba390614d87565b6002600855336126d58261196a565b6001600160a01b0316146126fb5760405162461bcd60e51b8152600401610ba390614dbe565b6040600052602f60205260008051602061558b83398151915254600160a81b900460ff1661273b5760405162461bcd60e51b8152600401610ba390614e36565b61ffff811660009081526035602052604090205460ff1661276e5760405162461bcd60e51b8152600401610ba3906150ee565b603254600090815b8181101561280157836032828154811061279257612792614e6d565b60009182526020909120601082040154600f9091166002026101000a900461ffff16036127ef576127de82611180612710611180602861117a605c603c5461403390919063ffffffff16565b6127e89084614e99565b9250612801565b806127f981614eb1565b915050612776565b505060335460005b8181101561289457836033828154811061282557612825614e6d565b60009182526020909120601082040154600f9091166002026101000a900461ffff16036128825761287182611180612710611180600a61117a605c603c5461403390919063ffffffff16565b61287b9084614e99565b9250612894565b8061288c81614eb1565b915050612809565b50604051600090339084908381818185875af1925050503d80600081146128d7576040519150601f19603f3d011682016040523d82523d6000602084013e6128dc565b606091505b50509050806129255760405162461bcd60e51b815260206004820152601560248201527410db185a5b481d1c985b9cd9995c8819985a5b1959605a1b6044820152606401610ba3565b61ffff8416600090815260356020908152604091829020805460ff1916905581513381529081018690529081018490527fd08149829b4708b5a796078ac79020343425f5db94b97dfc5fe89f1e9caffb139060600160405180910390a1505060016008555050565b3233146129ac5760405162461bcd60e51b8152600401610ba390614d59565b6002600854036129ce5760405162461bcd60e51b8152600401610ba390614d87565b6002600855602954421015612a255760405162461bcd60e51b815260206004820152601860248201527f5075626c69632053616c6573204e6f74205374617274656400000000000000006044820152606401610ba3565b602a544210612a6e5760405162461bcd60e51b8152602060048201526015602482015274141d589b1a58c814d85b195cc8119a5b9a5cda1959605a1b6044820152606401610ba3565b60048160ff16612a7d33611c68565b612a879190614e99565b1115612ad55760405162461bcd60e51b815260206004820152601d60248201527f6d61782034207075626c69632073616c65204e465420616c6c6f7765640000006044820152606401610ba3565b60305461258090612aea9060ff841690614e99565b1115612b275760405162461bcd60e51b815260206004820152600c60248201526b1b585e081b999d081cdbdb1960a21b6044820152606401610ba3565b612b34338260ff1661413d565b60005b8160ff168160ff161015612ba757603080546001810182556000919091527f6ff97a59c90d62cc7236ba3a37cd85351bf564556780cf8c1157a220f31f0cbb600a808304919091018054919092066003026101000a62ffffff021916905580612b9f81614f27565b915050612b37565b50506001600855565b6060612bba613c90565b8151612bcd90602b906020850190614766565b507fbd6f5dd2ce6bb9b156a79d476e3238d1b38751859176633c23f0a0f4f53b63c182604051612bfd919061488a565b60405180910390a1602b8054612c1290614ccf565b80601f0160208091040260200160405190810160405280929190818152602001828054612c3e90614ccf565b8015612c8b5780601f10612c6057610100808354040283529160200191612c8b565b820191906000526020600020905b815481529060010190602001808311612c6e57829003601f168201915b50505050509050919050565b6060612ca4826004541190565b612ce45760405162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610ba3565b602a54421015612d1c57612cf66142e3565b604051602001612d069190615139565b6040516020818303038152906040529050919050565b600060308381548110612d3157612d31614e6d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff16905060006009600f8362ffffff16901c601f1662ffffff1660208110612d7e57612d7e614e6d565b018054612d8a90614ccf565b80601f0160208091040260200160405190810160405280929190818152602001828054612db690614ccf565b8015612e035780601f10612dd857610100808354040283529160200191612e03565b820191906000526020600020905b815481529060010190602001808311612de657829003601f168201915b505050505090506000612e2760068462ffffff16901c6101ff1662ffffff166142f2565b604080518082019091526007815266139bdd0810995d60ca1b602082015290915060006101ff600686901c16612e66601f600f88901c1661012c615167565b612e7091906150c7565b62ffffff16905060606020861615612f55576009601f871660208110612e9857612e98614e6d565b018054612ea490614ccf565b80601f0160208091040260200160405190810160405280929190818152602001828054612ed090614ccf565b8015612f1d5780601f10612ef257610100808354040283529160200191612f1d565b820191906000526020600020905b815481529060010190602001808311612f0057829003601f168201915b50505050509250612f2d826142f2565b83604051602001612f3f929190615192565b6040516020818303038152906040529050612f80565b612f5e826142f2565b604051602001612f6e91906151ec565b60405160208183030381529060405290505b600081612f8b6142e3565b612f94856142f2565b888888604051602001612fac96959493929190615221565b6040516020818303038152906040529050612fc68161432a565b604051602001612fd69190615415565b604051602081830303815290604052975050505050505050919050565b3260009081526037602052604090205460ff1615801561301e57506007546001600160a01b03163314155b1561303b5760405162461bcd60e51b8152600401610ba390614d09565b8160ff1660401461308e5760405162461bcd60e51b815260206004820152601d60248201527f66696e616c20726f756e64206d757374206265203634206d61746368730000006044820152606401610ba3565b60ff8083166000908152602f6020526040902054600160a81b900416156130f25760405162461bcd60e51b81526020600482015260186024820152771d1a1a5cc81c9bdd5b99081a1859081c1d589b1a5cda195960421b6044820152606401610ba3565b60ff82166000908152602f602052604090205461010090046001600160a01b0316158061313e575060ff82166000908152602f602052604090205461010090046001600160a01b031633145b156131b9576040805160608101825260ff808416825233602080840191825260008486018181528885168252602f9092529490942092518354915194511515600160a81b0260ff60a81b196001600160a01b0396909616610100026001600160a81b0319909316919093161717929092169190911790555050565b60ff8281166000908152602f60205260409020548116908216146132095760ff9182166000908152602f6020526040902080546001600160a81b031916336101000260ff19161791909216179055565b60305460005b818161ffff1610156133c557600060308261ffff168154811061323457613234614e6d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1690508360ff16600f8262ffffff16901c601f1662ffffff16036133275761ffff8216600090815260316020526040812080546001929061329d90849060ff16614ee1565b825460ff91821661010093840a9081029202191617909155603380546001818101909255601081047f82a75bdeeae8604d839476ae9efd8b0e15aa447e21bfd7f41283bb54e22c9a8201805461ffff8089166002600f9095169490940290950a8381029502191693909317909255600091825260356020526040909120805460ff19169091179055505b602081161580159061333e5750601f811660ff8516145b156133b257603280546001818101909255601081047f11df491316f14931039edfd4f8964c9a443b862f02d4c7611d18c2bc4e6ff69701805461ffff8087166002600f909516949094026101000a8481029102199091161790556000908152603560205260409020805460ff191690911790555b50806133bd81614f06565b91505061320f565b506032546000036133f8575060ff82166000908152602f60205260409020805460ff60a81b1916600160a81b1790555050565b6032546001036134a157603260008154811061341657613416614e6d565b60009182526020822060108204015460348054600f9093166002026101000a90910461ffff1661ffff199092169190911790556032805490919061345c5761345c614e6d565b90600052602060002090601091828204019190066002029054906101000a900461ffff16603460026101000a81548161ffff021916908361ffff16021790555061371a565b6032546002036135085760326000815481106134bf576134bf614e6d565b6000918252602090912060108204015460348054600f9093166002026101000a90910461ffff1661ffff1990921691909117905560328054600190811061345c5761345c614e6d565b603b544290156135bc57603a54603b5460405163d8a4676f60e01b815260009283926001600160a01b039091169163d8a4676f9161354c9160040190815260200190565b600060405180830381865afa158015613569573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526135919190810190614f6a565b9150915081156135b957806001815181106135ae576135ae614e6d565b602002602001015192505b50505b603a54603254604051634039d7e760e11b815261ffff9091166004820152602481018390526000916001600160a01b031690638073afce90604401600060405180830381865afa158015613614573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261363c9190810190615017565b905060328160008151811061365357613653614e6d565b602002602001015161ffff168154811061366f5761366f614e6d565b6000918252602090912060108204015460348054600f9093166002026101000a90910461ffff1661ffff199092169190911790558051603290829060019081106136bb576136bb614e6d565b602002602001015161ffff16815481106136d7576136d7614e6d565b90600052602060002090601091828204019190066002029054906101000a900461ffff16603460026101000a81548161ffff021916908361ffff16021790555050505b6036805461ffff19166101011790556034547f246071332ec3cecbddeebfd36569844838470b18b27bf4c8f06390c7ef630b0f9061ffff1661375b8161196a565b6040805161ffff90931683526001600160a01b0390911660208301520160405180910390a16034547f246071332ec3cecbddeebfd36569844838470b18b27bf4c8f06390c7ef630b0f9062010000900461ffff166137b88161196a565b6040805161ffff90931683526001600160a01b0390911660208301520160405180910390a15060ff82166000908152602f602090815260408220805460ff60a81b1916600160a81b179055612580909152603590527fc245414cd24d2564ee7e7a329fa9082955cf6f202d571f9a2f385336c14af3b5805460ff191660011790555050565b600080600061384d846004541190565b61388d5760405162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610ba3565b6000603085815481106138a2576138a2614e6d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff16905060008160201662ffffff1611156138e557601f811691506138ea565b602091505b601f600f82901c169560069190911c6101ff1694509092509050565b3233146139255760405162461bcd60e51b8152600401610ba390614d59565b6002600854036139475760405162461bcd60e51b8152600401610ba390614d87565b6002600855336139568261196a565b6001600160a01b03161461397c5760405162461bcd60e51b8152600401610ba390614dbe565b6040600052602f60205260008051602061558b83398151915254600160a81b900460ff166139bc5760405162461bcd60e51b8152600401610ba390614e36565b60345460009061ffff168203613a2b5760365460ff166139ee5760405162461bcd60e51b8152600401610ba3906150ee565b613a146002611180612710611180603261117a605c603c5461403390919063ffffffff16565b613a1e9082614e99565b6036805460ff1916905590505b60345462010000900461ffff168203613aa357603654610100900460ff16613a655760405162461bcd60e51b8152600401610ba3906150ee565b613a8b6002611180612710611180603261117a605c603c5461403390919063ffffffff16565b613a959082614e99565b6036805461ff001916905590505b604051600090339083908381818185875af1925050503d8060008114613ae5576040519150601f19603f3d011682016040523d82523d6000602084013e613aea565b606091505b5050905080613b335760405162461bcd60e51b815260206004820152601560248201527410db185a5b481d1c985b9cd9995c8819985a5b1959605a1b6044820152606401610ba3565b60408051338152602081018590529081018390527fd08149829b4708b5a796078ac79020343425f5db94b97dfc5fe89f1e9caffb139060600160405180910390a15050600160085550565b613b86613c90565b737b0dc23e87febf1d053e7df9af4cce30f21fae9cff5b613ba5613c90565b60005b81811015610cda57600160376000858585818110613bc857613bc8614e6d565b9050602002016020810190613bdd91906149a7565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580613c0f81614eb1565b915050613ba8565b613c1f613c90565b6001600160a01b038116613c845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ba3565b613c8d816140eb565b50565b6007546001600160a01b03163314611d4a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ba3565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613d1f8261196a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613d65826004541190565b613dc95760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a206f70657261746f7220717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ba3565b6000613dd48361196a565b9050806001600160a01b0316846001600160a01b03161480613e0f5750836001600160a01b0316613e0484610b36565b6001600160a01b0316145b80613e3f57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b600080613e5383614052565b91509150846001600160a01b0316826001600160a01b031614613ecd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a207472616e73666572206f6620746f6b656e2074686160448201526b3a1034b9903737ba1037bbb760a11b6064820152608401610ba3565b6001600160a01b038416613f335760405162461bcd60e51b815260206004820152602760248201527f4552433732315073693a207472616e7366657220746f20746865207a65726f206044820152666164647265737360c81b6064820152608401610ba3565b613f3e600084613cea565b6000613f4b846001614e99565b600881901c600090815260208190526040902054909150600160ff1b60ff83161c16158015613f7b575060045481105b15613fb157600081815260036020526040812080546001600160a01b0319166001600160a01b038916179055613fb1908261447d565b600084815260036020526040902080546001600160a01b0319166001600160a01b038716179055818414613fea57613fea60008561447d565b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600061403f828461545a565b9392505050565b600061403f8284615479565b600080614060836004541190565b6140c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a206f776e657220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ba3565b6140ca836144a9565b6000818152600360205260409020546001600160a01b031694909350915050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6004548161419b5760405162461bcd60e51b815260206004820152602560248201527f4552433732315073693a207175616e74697479206d7573742062652067726561604482015264074657220360dc1b6064820152608401610ba3565b6001600160a01b0383166141fd5760405162461bcd60e51b815260206004820152602360248201527f4552433732315073693a206d696e7420746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ba3565b816004600082825461420f9190614e99565b9091555050600081815260036020526040812080546001600160a01b0319166001600160a01b038616179055614245908261447d565b805b6142518383614e99565b81101561267f5760405181906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48061429a81614eb1565b915050614247565b600061403f8284614eca565b6142b9848484613e47565b6142c78484846001856144b5565b61267f5760405162461bcd60e51b8152600401610ba39061549b565b6060602b8054610ab390614ccf565b604080516080019081905280825b600183039250600a81066030018353600a9004806143005750819003601f19909101908152919050565b6060815160000361434957505060408051602081019091526000815290565b600060405180606001604052806040815260200161554b60409139905060006003845160026143789190614e99565b6143829190615479565b61438d90600461545a565b67ffffffffffffffff8111156143a5576143a5614acc565b6040519080825280601f01601f1916602001820160405280156143cf576020820181803683370190505b509050600182016020820185865187015b8082101561443b576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506143e0565b5050600386510660018114614457576002811461446a57614472565b603d6001830353603d6002830353614472565b603d60018303535b509195945050505050565b600881901c600090815260209290925260409091208054600160ff1b60ff9093169290921c9091179055565b6000610a8d81836145ec565b60006001600160a01b0385163b156145df57506001835b6144d68486614e99565b8110156145d957604051630a85bd0160e11b81526001600160a01b0387169063150b7a029061450f9033908b90869089906004016154f0565b6020604051808303816000875af192505050801561454a575060408051601f3d908101601f191682019092526145479181019061552d565b60015b6145a7573d808015614578576040519150601f19603f3d011682016040523d82523d6000602084013e61457d565b606091505b50805160000361459f5760405162461bcd60e51b8152600401610ba39061549b565b805181602001fd5b8280156145c457506001600160e01b03198116630a85bd0160e11b145b925050806145d181614eb1565b9150506144cc565b506145e3565b5060015b95945050505050565b600881901c60008181526020849052604081205490919060ff808516919082181c801561462e5761461c816146e4565b60ff168203600884901b1793506146db565b6000831161469b5760405162461bcd60e51b815260206004820152603460248201527f4269744d6170733a205468652073657420626974206265666f7265207468652060448201527334b73232bc103237b2b9b713ba1032bc34b9ba1760611b6064820152608401610ba3565b5060001990910160008181526020869052604090205490919080156146d6576146c3816146e4565b60ff0360ff16600884901b1793506146db565b61462e565b50505092915050565b600060405180610120016040528061010081526020016155ab610100913960f87e818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff61472d8561474e565b02901c8151811061474057614740614e6d565b016020015160f81c92915050565b600080821161475c57600080fd5b5060008190031690565b82805461477290614ccf565b90600052602060002090601f01602090048101928261479457600085556147da565b82601f106147ad57805160ff19168380011785556147da565b828001600101855582156147da579182015b828111156147da5782518255916020019190600101906147bf565b506147e69291506147ea565b5090565b5b808211156147e657600081556001016147eb565b6001600160e01b031981168114613c8d57600080fd5b60006020828403121561482757600080fd5b813561403f816147ff565b60005b8381101561484d578181015183820152602001614835565b8381111561267f5750506000910152565b60008151808452614876816020860160208601614832565b601f01601f19169290920160200192915050565b60208152600061403f602083018461485e565b6000602082840312156148af57600080fd5b5035919050565b80356001600160a01b03811681146111e657600080fd5b600080604083850312156148e057600080fd5b6148e9836148b6565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b8181101561493357835161ffff1683529284019291840191600101614913565b50909695505050505050565b60008060006060848603121561495457600080fd5b61495d846148b6565b925061496b602085016148b6565b9150604084013590509250925092565b803560ff811681146111e657600080fd5b60006020828403121561499e57600080fd5b61403f8261497b565b6000602082840312156149b957600080fd5b61403f826148b6565b6020808252825182820181905260009190848201906040850190845b81811015614933578351835292840192918401916001016149de565b60008060408385031215614a0d57600080fd5b614a168361497b565b9150614a246020840161497b565b90509250929050565b61ffff81168114613c8d57600080fd5b60008060408385031215614a5057600080fd5b614a59836148b6565b91506020830135614a6981614a2d565b809150509250929050565b8015158114613c8d57600080fd5b60008060408385031215614a9557600080fd5b614a9e836148b6565b91506020830135614a6981614a74565b60008060408385031215614ac157600080fd5b8235614a1681614a2d565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715614b0b57614b0b614acc565b604052919050565b600067ffffffffffffffff831115614b2d57614b2d614acc565b614b40601f8401601f1916602001614ae2565b9050828152838383011115614b5457600080fd5b828260208301376000602084830101529392505050565b60008060008060808587031215614b8157600080fd5b614b8a856148b6565b9350614b98602086016148b6565b925060408501359150606085013567ffffffffffffffff811115614bbb57600080fd5b8501601f81018713614bcc57600080fd5b614bdb87823560208401614b13565b91505092959194509250565b600060208284031215614bf957600080fd5b813567ffffffffffffffff811115614c1057600080fd5b8201601f81018413614c2157600080fd5b613e3f84823560208401614b13565b60008060208385031215614c4357600080fd5b823567ffffffffffffffff80821115614c5b57600080fd5b818501915085601f830112614c6f57600080fd5b813581811115614c7e57600080fd5b8660208260051b8501011115614c9357600080fd5b60209290920196919550909350505050565b60008060408385031215614cb857600080fd5b614cc1836148b6565b9150614a24602084016148b6565b600181811c90821680614ce357607f821691505b602082108103614d0357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601e908201527f4f6e6c79204f70657261746f72204163636f756e747320416c6c6f7765640000604082015260600190565b600060208284031215614d5257600080fd5b5051919050565b60208082526014908201527327b7363c9024b73234bb34b23ab0b6102ab9b2b960611b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600a908201526927b7363c9037bbb732b960b11b604082015260600190565b60208082526034908201527f4552433732315073693a207472616e736665722063616c6c6572206973206e6f6040820152731d081bdddb995c881b9bdc88185c1c1c9bdd995960621b606082015260800190565b60208082526019908201527f46696e616c2077696e6e6572206e6f742072656c656173656400000000000000604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115614eac57614eac614e83565b500190565b600060018201614ec357614ec3614e83565b5060010190565b600082821015614edc57614edc614e83565b500390565b600060ff821660ff84168060ff03821115614efe57614efe614e83565b019392505050565b600061ffff808316818103614f1d57614f1d614e83565b6001019392505050565b600060ff821660ff8103614f3d57614f3d614e83565b60010192915050565b600067ffffffffffffffff821115614f6057614f60614acc565b5060051b60200190565b60008060408385031215614f7d57600080fd5b8251614f8881614a74565b8092505060208084015167ffffffffffffffff811115614fa757600080fd5b8401601f81018613614fb857600080fd5b8051614fcb614fc682614f46565b614ae2565b81815260059190911b82018301908381019088831115614fea57600080fd5b928401925b8284101561500857835182529284019290840190614fef565b80955050505050509250929050565b6000602080838503121561502a57600080fd5b825167ffffffffffffffff81111561504157600080fd5b8301601f8101851361505257600080fd5b8051615060614fc682614f46565b81815260059190911b8201830190838101908783111561507f57600080fd5b928401925b828410156150a657835161509781614a2d565b82529284019290840190615084565b979650505050505050565b634e487b7160e01b600052601260045260246000fd5b600062ffffff8083168185168083038211156150e5576150e5614e83565b01949350505050565b6020808252601590820152741b9bc8199d5b99081bdc8818d85cda1959081bdd5d605a1b604082015260600190565b6000815161512f818560208601614832565b9290920192915050565b6000825161514b818460208701614832565b6931b7bb32b9173539b7b760b11b920191825250600a01919050565b600062ffffff8083168185168183048111821515161561518957615189614e83565b02949350505050565b6c417a75476f616c204e4654202360981b8152600083516151ba81600d850160208801614832565b65e2ad90efb88f60d01b600d9184019182015283516151e0816013840160208801614832565b01601301949350505050565b6c417a75476f616c204e4654202360981b81526000825161521481600d850160208701614832565b91909101600d0192915050565b693d913730b6b2911d101160b11b8152865160009061524781600a850160208c01614832565b7f222c20226465736372697074696f6e223a2022417a75476f616c20576f726c64600a918401918201527421bab810191819191116101134b6b0b3b2911d101160591b602a82015287516152a281603f840160208c01614832565b87519101906152b881603f840160208b01614832565b7f2e706e67222c202264657369676e6572223a202269736f746f702e746f70222c603f92909101918201527f2261747472696275746573223a205b7b2274726169745f74797065223a202249605f8201527f6e2d6d656d6f7279222c2276616c7565223a2022576f726c6443757020323032607f8201527f32227d2c207b2274726169745f74797065223a20225465616d222c2276616c75609f8201526432911d101160d91b60bf8201526154086153f86153f26153bd6153b761537f60c487018c61511d565b7f227d2c207b2274726169745f74797065223a20224e756d626572222c2276616c8152653ab2911d101160d11b602082015260260190565b8961511d565b7f227d2c207b2274726169745f74797065223a2022426574222c2276616c7565228152621d101160e91b602082015260230190565b8661511d565b63227d5d7d60e01b815260040190565b9998505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161544d81601d850160208701614832565b91909101601d0192915050565b600081600019048311821515161561547457615474614e83565b500290565b60008261549657634e487b7160e01b600052601260045260246000fd5b500490565b60208082526035908201527f4552433732315073693a207472616e7366657220746f206e6f6e20455243373260408201527418a932b1b2b4bb32b91034b6b83632b6b2b73a32b960591b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906155239083018461485e565b9695505050505050565b60006020828403121561553f57600080fd5b815161403f816147ff56fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f6ce17b9af338fb27b5f65293a15947cc23b25780e4bcfbd82bb652589443fcb10001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8a264697066735822122051d709d01671e84e1171a5a5564d4b6383661afc072e354ef63f01e5ee21521464736f6c634300080d00330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000016345785d8a000000000000000000000000000000000000000000000000000000000000000001770000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656965366a7978796b69703334366f637869336b6c6d326b3234676b766f78376a6d7666706a76616d6a7673616c7934746f786771342f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e45760003560e01c80636352211e11610190578063b88d4fde116100dc578063cc33c87511610095578063d826f88f1161006f578063d826f88f14610988578063ddf71cd51461099d578063e985e9c5146109bd578063f2fde38b14610a0657600080fd5b8063cc33c87514610915578063ce70cd8d14610950578063d58b83e31461097057600080fd5b8063b88d4fde14610855578063be9a2d2314610875578063c76df80e14610895578063c82b9425146108b5578063c87b56dd146108d5578063ca905dc0146108f557600080fd5b806379502c551161014957806395d89b411161012357806395d89b41146107f8578063a21555391461080d578063a22cb46514610822578063a7d2161c1461084257600080fd5b806379502c551461077b5780638da5cb5b146107ba57806391b7f5ed146107d857600080fd5b80636352211e146106d0578063644ae063146106f05780636b747d631461071057806370a0823114610726578063715018a6146107465780637679e0561461075b57600080fd5b80631e84c4131161024f5780633ccfd60b11610208578063436ffa3f116101e2578063436ffa3f146105b65780634f6ccce71461066357806355d5a012146106835780635a3f2672146106a357600080fd5b80633ccfd60b14610557578063422326f41461058157806342842e0e1461059657600080fd5b80631e84c4131461048457806323b872dd1461049c57806328b6b4f8146104bc5780632c09e7c1146104dc5780632f745c591461050e57806332cb6b0c1461052e57600080fd5b80630c1c972a116102a15780630c1c972a146103df5780630c41f497146103f457806313069dfd14610409578063147489941461042957806318160ddd1461043e5780631845994d1461045357600080fd5b806301ffc9a7146102e9578063026b1d5f1461031e57806306fdde0314610341578063081812fc14610363578063095ea7b31461039b57806309eeebb0146103bd575b600080fd5b3480156102f557600080fd5b50610309610304366004614815565b610a26565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610a93565b604051908152602001610315565b34801561034d57600080fd5b50610356610aa4565b604051610315919061488a565b34801561036f57600080fd5b5061038361037e36600461489d565b610b36565b6040516001600160a01b039091168152602001610315565b3480156103a757600080fd5b506103bb6103b63660046148cd565b610bc8565b005b3480156103c957600080fd5b506103d2610cdf565b60405161031591906148f7565b3480156103eb57600080fd5b506103bb610d5e565b34801561040057600080fd5b506103bb610e52565b34801561041557600080fd5b506103bb61042436600461489d565b610ed0565b34801561043557600080fd5b506103d261106e565b34801561044a57600080fd5b50600454610333565b34801561045f57600080fd5b506034546040805161ffff808416825262010000909304909216602083015201610315565b34801561049057600080fd5b50602954421015610309565b3480156104a857600080fd5b506103bb6104b736600461493f565b6110c9565b3480156104c857600080fd5b506103336104d736600461489d565b6110fa565b3480156104e857600080fd5b506104fc6104f736600461489d565b6111eb565b60405160ff9091168152602001610315565b34801561051a57600080fd5b506103336105293660046148cd565b611251565b34801561053a57600080fd5b5061054461258081565b60405161ffff9091168152602001610315565b34801561056357600080fd5b5061056c61131b565b60408051928352602083019190915201610315565b34801561058d57600080fd5b506103d26115f0565b3480156105a257600080fd5b506103bb6105b136600461493f565b61164b565b3480156105c257600080fd5b506106336105d136600461498c565b60408051606080820183526000808352602080840182905292840181905260ff9485168152602f83528390208351918201845254808516825261010081046001600160a01b031692820192909252600160a81b90910490921615159082015290565b60408051825160ff1681526020808401516001600160a01b03169082015291810151151590820152606001610315565b34801561066f57600080fd5b5061033361067e36600461489d565b611666565b34801561068f57600080fd5b5061033361069e36600461489d565b611720565b3480156106af57600080fd5b506106c36106be3660046149a7565b6118a9565b60405161031591906149c2565b3480156106dc57600080fd5b506103836106eb36600461489d565b61196a565b3480156106fc57600080fd5b506103bb61070b3660046149fa565b611981565b34801561071c57600080fd5b5061033360001981565b34801561073257600080fd5b506103336107413660046149a7565b611c68565b34801561075257600080fd5b506103bb611d38565b34801561076757600080fd5b506103bb610776366004614a3d565b611d4c565b34801561078757600080fd5b50610790611eab565b604080516001600160a01b0394851681529284166020840152921691810191909152606001610315565b3480156107c657600080fd5b506007546001600160a01b0316610383565b3480156107e457600080fd5b506103bb6107f336600461489d565b611ee8565b34801561080457600080fd5b50610356611ef5565b34801561081957600080fd5b506103bb611f04565b34801561082e57600080fd5b506103bb61083d366004614a82565b6121e1565b6103bb610850366004614aae565b6122a5565b34801561086157600080fd5b506103bb610870366004614b6b565b61264d565b34801561088157600080fd5b506103bb61089036600461489d565b612685565b3480156108a157600080fd5b506103bb6108b036600461498c565b61298d565b3480156108c157600080fd5b506103566108d0366004614be7565b612bb0565b3480156108e157600080fd5b506103566108f036600461489d565b612c97565b34801561090157600080fd5b506103bb6109103660046149fa565b612ff3565b34801561092157600080fd5b5061093561093036600461489d565b61383d565b60408051938452602084019290925290820152606001610315565b34801561095c57600080fd5b506103bb61096b36600461489d565b613906565b34801561097c57600080fd5b50602a54421015610309565b34801561099457600080fd5b506103bb613b7e565b3480156109a957600080fd5b506103bb6109b8366004614c30565b613b9d565b3480156109c957600080fd5b506103096109d8366004614ca5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a1257600080fd5b506103bb610a213660046149a7565b613c17565b60006001600160e01b031982166380ac58cd60e01b1480610a5757506001600160e01b03198216635b5e139f60e01b145b80610a7257506001600160e01b0319821663780e9d6360e01b145b80610a8d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000610a9d613c90565b50603c5490565b606060018054610ab390614ccf565b80601f0160208091040260200160405190810160405280929190818152602001828054610adf90614ccf565b8015610b2c5780601f10610b0157610100808354040283529160200191610b2c565b820191906000526020600020905b815481529060010190602001808311610b0f57829003601f168201915b5050505050905090565b6000610b43826004541190565b610bac5760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a20617070726f76656420717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610bd38261196a565b9050806001600160a01b0316836001600160a01b031603610c425760405162461bcd60e51b8152602060048201526024808201527f4552433732315073693a20617070726f76616c20746f2063757272656e74206f6044820152633bb732b960e11b6064820152608401610ba3565b336001600160a01b0382161480610c5e5750610c5e81336109d8565b610cd05760405162461bcd60e51b815260206004820152603b60248201527f4552433732315073693a20617070726f76652063616c6c6572206973206e6f7460448201527f206f776e6572206e6f7220617070726f76656420666f7220616c6c00000000006064820152608401610ba3565b610cda8383613cea565b505050565b60606038805480602002602001604051908101604052809291908181526020018280548015610b2c57602002820191906000526020600020906000905b82829054906101000a900461ffff1661ffff1681526020019060020190602082600101049283019260010382029150808411610d1c5790505050505050905090565b3260009081526037602052604090205460ff16158015610d8957506007546001600160a01b03163314155b15610da65760405162461bcd60e51b8152600401610ba390614d09565b42602955603a5460405163e726f2e160e01b8152600260048201526001600160a01b039091169063e726f2e1906024016020604051808303816000875af1158015610df5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e199190614d40565b603b556040514281527ff5873041cf54025a0d378efc70d90938908e7499c3f41d007dc37938ae92345d906020015b60405180910390a1565b3260009081526037602052604090205460ff16158015610e7d57506007546001600160a01b03163314155b15610e9a5760405162461bcd60e51b8152600401610ba390614d09565b6000196029556040514281527f1557f02db43c040d49a0619c1083e57b0c263e11d8dd388416ab9a6ce1a4380f90602001610e48565b323314610eef5760405162461bcd60e51b8152600401610ba390614d59565b600260085403610f115760405162461bcd60e51b8152600401610ba390614d87565b600260085533610f208261196a565b6001600160a01b031614610f465760405162461bcd60e51b8152600401610ba390614dbe565b61ffff811660009081526031602052604081205460ff1690819003610fa15760405162461bcd60e51b81526020600482015260116024820152701b9bc8185a5c991c9bdc1cc8199bdd5b99607a1b6044820152606401610ba3565b6039546040516340c10f1960e01b815233600482015260ff831660248201526001600160a01b03909116906340c10f1990604401600060405180830381600087803b158015610fef57600080fd5b505af1158015611003573d6000803e3d6000fd5b5050505061ffff8216600090815260316020908152604091829020805460ff19169055815133815290810184905260ff83168183015290517f2f977e68df69d63cdf91a6aa90360df2140f3e62de2b992f6152b00d3714d98e9181900360600190a150506001600855565b60606032805480602002602001604051908101604052809291908181526020018280548015610b2c576000918252602091829020805461ffff168452908202830192909160029101808411610d1c5790505050505050905090565b6110d33382613d58565b6110ef5760405162461bcd60e51b8152600401610ba390614de2565b610cda838383613e47565b60406000908152602f60205260008051602061558b83398151915254600160a81b900460ff1661113c5760405162461bcd60e51b8152600401610ba390614e36565b60345461ffff1682036111935760365460ff1615611193576111866002611180612710611180603261117a605c603c5461403390919063ffffffff16565b90614033565b90614046565b6111909082614e99565b90505b60345462010000900461ffff1682036111e657603654610100900460ff16156111e6576111dc6002611180612710611180603261117a605c603c5461403390919063ffffffff16565b610a8d9082614e99565b919050565b60006111f8826004541190565b6112375760405162461bcd60e51b815260206004820152601060248201526f746f6b656e206e6f742065786973747360801b6044820152606401610ba3565b5061ffff1660009081526031602052604090205460ff1690565b60008060005b6004548110156112c65761126c816004541190565b8015611291575061127c8161196a565b6001600160a01b0316856001600160a01b0316145b156112b4578382036112a6579150610a8d9050565b816112b081614eb1565b9250505b806112be81614eb1565b915050611257565b5060405162461bcd60e51b8152602060048201526024808201527f4552433732315073693a206f776e657220696e646578206f7574206f6620626f604482015263756e647360e01b6064820152608401610ba3565b600080611326613c90565b6040600052602f60205260008051602061558b83398151915254600160a81b900460ff166113965760405162461bcd60e51b815260206004820152601960248201527f66696e616c2077696e6e6572206e6f742072657665616c6564000000000000006044820152606401610ba3565b61258060005260356020527fc245414cd24d2564ee7e7a329fa9082955cf6f202d571f9a2f385336c14af3b55460ff166114125760405162461bcd60e51b815260206004820152601e60248201527f636173686564206e6f74207265616479206f7220636173686564206f757400006044820152606401610ba3565b600061142f60646111806008603c5461403390919063ffffffff16565b602e5490915061144c906103e89061118090849061ffff16614033565b92506114588382614eca565b604051909250600090737b0dc23e87febf1d053e7df9af4cce30f21fae9c9085908381818185875af1925050503d80600081146114b1576040519150601f19603f3d011682016040523d82523d6000602084013e6114b6565b606091505b5050604051909150600090739da32f03cc23f9156daa7442cadbe8366ddac1239085908381818185875af1925050503d8060008114611511576040519150601f19603f3d011682016040523d82523d6000602084013e611516565b606091505b505090508180156115245750805b6115705760405162461bcd60e51b815260206004820152601860248201527f7769746864726177207472616e73666572206661696c656400000000000000006044820152606401610ba3565b6125806000819052603560209081527fc245414cd24d2564ee7e7a329fa9082955cf6f202d571f9a2f385336c14af3b5805460ff1916905560408051338152918201929092529081018490527fd08149829b4708b5a796078ac79020343425f5db94b97dfc5fe89f1e9caffb139060600160405180910390a15050509091565b60606033805480602002602001604051908101604052809291908181526020018280548015610b2c576000918252602091829020805461ffff168452908202830192909160029101808411610d1c5790505050505050905090565b610cda8383836040518060200160405280600081525061264d565b600061167160045490565b82106116cd5760405162461bcd60e51b815260206004820152602560248201527f4552433732315073693a20676c6f62616c20696e646578206f7574206f6620626044820152646f756e647360d81b6064820152608401610ba3565b6000805b600454811015611719576116e6816004541190565b15611707578382036116f9579392505050565b8161170381614eb1565b9250505b8061171181614eb1565b9150506116d1565b5050919050565b60406000908152602f60205260008051602061558b83398151915254600160a81b900460ff166117625760405162461bcd60e51b8152600401610ba390614e36565b61ffff821660009081526035602052604090205460ff1661178557506000919050565b60325460005b818110156118165783603282815481106117a7576117a7614e6d565b60009182526020909120601082040154600f9091166002026101000a900461ffff1603611804576117f382611180612710611180602861117a605c603c5461403390919063ffffffff16565b6117fd9084614e99565b9250611816565b8061180e81614eb1565b91505061178b565b505060335460005b8181101561171957836033828154811061183a5761183a614e6d565b60009182526020909120601082040154600f9091166002026101000a900461ffff16036118975761188682611180612710611180600a61117a605c603c5461403390919063ffffffff16565b6118909084614e99565b9250611719565b806118a181614eb1565b91505061181e565b60603233146118ca5760405162461bcd60e51b8152600401610ba390614d59565b60006118d583611c68565b905060008167ffffffffffffffff8111156118f2576118f2614acc565b60405190808252806020026020018201604052801561191b578160200160208202803683370190505b50905060005b82811015611962576119338582611251565b82828151811061194557611945614e6d565b60209081029190910101528061195a81614eb1565b915050611921565b509392505050565b600080600061197884614052565b50949350505050565b3260009081526037602052604090205460ff161580156119ac57506007546001600160a01b03163314155b156119c95760405162461bcd60e51b8152600401610ba390614d09565b60408260ff1610611a0c5760405162461bcd60e51b815260206004820152600d60248201526c6d6178203634206d617463687360981b6044820152606401610ba3565b60ff8083166000908152602f6020526040902054600160a81b90041615611a705760405162461bcd60e51b81526020600482015260186024820152771d1a1a5cc81c9bdd5b99081a1859081c1d589b1a5cda195960421b6044820152606401610ba3565b60ff82166000908152602f602052604090205461010090046001600160a01b03161580611abc575060ff82166000908152602f602052604090205461010090046001600160a01b031633145b15611b37576040805160608101825260ff808416825233602080840191825260008486018181528885168252602f9092529490942092518354915194511515600160a81b0260ff60a81b196001600160a01b0396909616610100026001600160a81b0319909316919093161717929092169190911790555050565b60ff8281166000908152602f6020526040902054811690821614611b875760ff9182166000908152602f6020526040902080546001600160a81b031916336101000260ff19161791909216179055565b60005b60305461ffff82161015611c40578160ff16600f60308361ffff1681548110611bb557611bb5614e6d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1662ffffff16901c601f1662ffffff1603611c2e5761ffff81166000908152603160205260408120805460019290611c1590849060ff16614ee1565b92506101000a81548160ff021916908360ff1602179055505b80611c3881614f06565b915050611b8a565b5060ff82166000908152602f60205260409020805460ff60a81b1916600160a81b1790555050565b60006001600160a01b038216611cd65760405162461bcd60e51b815260206004820152602d60248201527f4552433732315073693a2062616c616e636520717565727920666f722074686560448201526c207a65726f206164647265737360981b6064820152608401610ba3565b6000805b600454811015611d3157611cef816004541190565b15611d2157611cfd8161196a565b6001600160a01b0316846001600160a01b031603611d2157611d1e82614eb1565b91505b611d2a81614eb1565b9050611cda565b5092915050565b611d40613c90565b611d4a60006140eb565b565b3260009081526037602052604090205460ff16158015611d7757506007546001600160a01b03163314155b15611d945760405162461bcd60e51b8152600401610ba390614d09565b602a544210611dd65760405162461bcd60e51b815260206004820152600e60248201526d14d85b195cc8119a5b9a5cda195960921b6044820152606401610ba3565b60305461258090611dec9061ffff841690614e99565b1115611e295760405162461bcd60e51b815260206004820152600c60248201526b1b585e081b999d081cdbdb1960a21b6044820152606401610ba3565b611e37828261ffff1661413d565b60005b8161ffff168160ff161015610cda57603080546001810182556000919091527f6ff97a59c90d62cc7236ba3a37cd85351bf564556780cf8c1157a220f31f0cbb600a808304919091018054919092066003026101000a62ffffff021916905580611ea381614f27565b915050611e3a565b6000806000611eb8613c90565b5050603a54603954738c0813590b65952197f5654ec953ccc601725bee936001600160a01b039283169350911690565b611ef0613c90565b602d55565b606060028054610ab390614ccf565b3260009081526037602052604090205460ff16158015611f2f57506007546001600160a01b03163314155b15611f4c5760405162461bcd60e51b8152600401610ba390614d09565b600019602a5414611f925760405162461bcd60e51b815260206004820152601060248201526f14da1d59999b19481a185c1c195b995960821b6044820152606401610ba3565b42602a819055603b541561204a57603a54603b5460405163d8a4676f60e01b815260009283926001600160a01b039091169163d8a4676f91611fda9160040190815260200190565b600060405180830381865afa158015611ff7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261201f9190810190614f6a565b915091508115612047578060008151811061203c5761203c614e6d565b602002602001015192505b50505b603a54604051634039d7e760e11b81526125806004820152602481018390526000916001600160a01b031690638073afce90604401600060405180830381865afa15801561209c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526120c49190810190615017565b905060005b6030548110156121a957600061012c8383815181106120ea576120ea614e6d565b602002602001015161ffff1681612103576121036150b1565b0461ffff169050600061012c84848151811061212157612121614e6d565b602002602001015161ffff168161213a5761213a6150b1565b0661ffff16905060068162ffffff16901b600f8362ffffff16901b016030848154811061216957612169614e6d565b90600052602060002090600a91828204019190066003026101000a81548162ffffff021916908362ffffff160217905550505080806001019150506120c9565b506040514281527f4e79c0a66a5bc111570353aa23cc02a57113c396631897691b3bcce74bc015f59060200160405180910390a15050565b336001600160a01b038316036122395760405162461bcd60e51b815260206004820152601c60248201527f4552433732315073693a20617070726f766520746f2063616c6c6572000000006044820152606401610ba3565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3233146122c45760405162461bcd60e51b8152600401610ba390614d59565b6002600854036122e65760405162461bcd60e51b8152600401610ba390614d87565b6002600855602a5442101561233d5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632053616c6573206e6f742046696e6973686564000000000000006044820152606401610ba3565b60208160ff16106123885760405162461bcd60e51b815260206004820152601560248201527413db9b1e480ccc881d19585b5cc81cdd5c1c1bdc9d605a1b6044820152606401610ba3565b6123978261ffff166004541190565b6123d65760405162461bcd60e51b815260206004820152601060248201526f746f6b656e206e6f742065786973747360801b6044820152606401610ba3565b336123e461ffff841661196a565b6001600160a01b03161461240a5760405162461bcd60e51b8152600401610ba390614dbe565b60308261ffff168154811061242157612421614e6d565b6000918252602091829020600a8083049091015491066003026101000a9004161561247a5760405162461bcd60e51b81526020600482015260096024820152682132ba103a37b5b2b760b91b6044820152606401610ba3565b602d543410156124c35760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d0814185e5b595b9d60621b6044820152606401610ba3565b8060201760ff1660308361ffff16815481106124e1576124e1614e6d565b90600052602060002090600a91828204019190066003028282829054906101000a900462ffffff1661251391906150c7565b825461010092830a62ffffff81810219909216929091160217909155603880546001810182556000919091527f38395c5dceade9603479b177b68959049485df8aa97b39f3533039af5f45619960108204018054600f90921660020290920a61ffff818102199092169186160217905550602d5434111561262b57602d5460009033906125a19034906142a2565b604051600081818185875af1925050503d80600081146125dd576040519150601f19603f3d011682016040523d82523d6000602084013e6125e2565b606091505b50509050806126295760405162461bcd60e51b815260206004820152601360248201527210995d081d1c985b9cd9995c8819985a5b1959606a1b6044820152606401610ba3565b505b602d54603c600082825461263f9190614e99565b909155505060016008555050565b6126573383613d58565b6126735760405162461bcd60e51b8152600401610ba390614de2565b61267f848484846142ae565b50505050565b3233146126a45760405162461bcd60e51b8152600401610ba390614d59565b6002600854036126c65760405162461bcd60e51b8152600401610ba390614d87565b6002600855336126d58261196a565b6001600160a01b0316146126fb5760405162461bcd60e51b8152600401610ba390614dbe565b6040600052602f60205260008051602061558b83398151915254600160a81b900460ff1661273b5760405162461bcd60e51b8152600401610ba390614e36565b61ffff811660009081526035602052604090205460ff1661276e5760405162461bcd60e51b8152600401610ba3906150ee565b603254600090815b8181101561280157836032828154811061279257612792614e6d565b60009182526020909120601082040154600f9091166002026101000a900461ffff16036127ef576127de82611180612710611180602861117a605c603c5461403390919063ffffffff16565b6127e89084614e99565b9250612801565b806127f981614eb1565b915050612776565b505060335460005b8181101561289457836033828154811061282557612825614e6d565b60009182526020909120601082040154600f9091166002026101000a900461ffff16036128825761287182611180612710611180600a61117a605c603c5461403390919063ffffffff16565b61287b9084614e99565b9250612894565b8061288c81614eb1565b915050612809565b50604051600090339084908381818185875af1925050503d80600081146128d7576040519150601f19603f3d011682016040523d82523d6000602084013e6128dc565b606091505b50509050806129255760405162461bcd60e51b815260206004820152601560248201527410db185a5b481d1c985b9cd9995c8819985a5b1959605a1b6044820152606401610ba3565b61ffff8416600090815260356020908152604091829020805460ff1916905581513381529081018690529081018490527fd08149829b4708b5a796078ac79020343425f5db94b97dfc5fe89f1e9caffb139060600160405180910390a1505060016008555050565b3233146129ac5760405162461bcd60e51b8152600401610ba390614d59565b6002600854036129ce5760405162461bcd60e51b8152600401610ba390614d87565b6002600855602954421015612a255760405162461bcd60e51b815260206004820152601860248201527f5075626c69632053616c6573204e6f74205374617274656400000000000000006044820152606401610ba3565b602a544210612a6e5760405162461bcd60e51b8152602060048201526015602482015274141d589b1a58c814d85b195cc8119a5b9a5cda1959605a1b6044820152606401610ba3565b60048160ff16612a7d33611c68565b612a879190614e99565b1115612ad55760405162461bcd60e51b815260206004820152601d60248201527f6d61782034207075626c69632073616c65204e465420616c6c6f7765640000006044820152606401610ba3565b60305461258090612aea9060ff841690614e99565b1115612b275760405162461bcd60e51b815260206004820152600c60248201526b1b585e081b999d081cdbdb1960a21b6044820152606401610ba3565b612b34338260ff1661413d565b60005b8160ff168160ff161015612ba757603080546001810182556000919091527f6ff97a59c90d62cc7236ba3a37cd85351bf564556780cf8c1157a220f31f0cbb600a808304919091018054919092066003026101000a62ffffff021916905580612b9f81614f27565b915050612b37565b50506001600855565b6060612bba613c90565b8151612bcd90602b906020850190614766565b507fbd6f5dd2ce6bb9b156a79d476e3238d1b38751859176633c23f0a0f4f53b63c182604051612bfd919061488a565b60405180910390a1602b8054612c1290614ccf565b80601f0160208091040260200160405190810160405280929190818152602001828054612c3e90614ccf565b8015612c8b5780601f10612c6057610100808354040283529160200191612c8b565b820191906000526020600020905b815481529060010190602001808311612c6e57829003601f168201915b50505050509050919050565b6060612ca4826004541190565b612ce45760405162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610ba3565b602a54421015612d1c57612cf66142e3565b604051602001612d069190615139565b6040516020818303038152906040529050919050565b600060308381548110612d3157612d31614e6d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff16905060006009600f8362ffffff16901c601f1662ffffff1660208110612d7e57612d7e614e6d565b018054612d8a90614ccf565b80601f0160208091040260200160405190810160405280929190818152602001828054612db690614ccf565b8015612e035780601f10612dd857610100808354040283529160200191612e03565b820191906000526020600020905b815481529060010190602001808311612de657829003601f168201915b505050505090506000612e2760068462ffffff16901c6101ff1662ffffff166142f2565b604080518082019091526007815266139bdd0810995d60ca1b602082015290915060006101ff600686901c16612e66601f600f88901c1661012c615167565b612e7091906150c7565b62ffffff16905060606020861615612f55576009601f871660208110612e9857612e98614e6d565b018054612ea490614ccf565b80601f0160208091040260200160405190810160405280929190818152602001828054612ed090614ccf565b8015612f1d5780601f10612ef257610100808354040283529160200191612f1d565b820191906000526020600020905b815481529060010190602001808311612f0057829003601f168201915b50505050509250612f2d826142f2565b83604051602001612f3f929190615192565b6040516020818303038152906040529050612f80565b612f5e826142f2565b604051602001612f6e91906151ec565b60405160208183030381529060405290505b600081612f8b6142e3565b612f94856142f2565b888888604051602001612fac96959493929190615221565b6040516020818303038152906040529050612fc68161432a565b604051602001612fd69190615415565b604051602081830303815290604052975050505050505050919050565b3260009081526037602052604090205460ff1615801561301e57506007546001600160a01b03163314155b1561303b5760405162461bcd60e51b8152600401610ba390614d09565b8160ff1660401461308e5760405162461bcd60e51b815260206004820152601d60248201527f66696e616c20726f756e64206d757374206265203634206d61746368730000006044820152606401610ba3565b60ff8083166000908152602f6020526040902054600160a81b900416156130f25760405162461bcd60e51b81526020600482015260186024820152771d1a1a5cc81c9bdd5b99081a1859081c1d589b1a5cda195960421b6044820152606401610ba3565b60ff82166000908152602f602052604090205461010090046001600160a01b0316158061313e575060ff82166000908152602f602052604090205461010090046001600160a01b031633145b156131b9576040805160608101825260ff808416825233602080840191825260008486018181528885168252602f9092529490942092518354915194511515600160a81b0260ff60a81b196001600160a01b0396909616610100026001600160a81b0319909316919093161717929092169190911790555050565b60ff8281166000908152602f60205260409020548116908216146132095760ff9182166000908152602f6020526040902080546001600160a81b031916336101000260ff19161791909216179055565b60305460005b818161ffff1610156133c557600060308261ffff168154811061323457613234614e6d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff1690508360ff16600f8262ffffff16901c601f1662ffffff16036133275761ffff8216600090815260316020526040812080546001929061329d90849060ff16614ee1565b825460ff91821661010093840a9081029202191617909155603380546001818101909255601081047f82a75bdeeae8604d839476ae9efd8b0e15aa447e21bfd7f41283bb54e22c9a8201805461ffff8089166002600f9095169490940290950a8381029502191693909317909255600091825260356020526040909120805460ff19169091179055505b602081161580159061333e5750601f811660ff8516145b156133b257603280546001818101909255601081047f11df491316f14931039edfd4f8964c9a443b862f02d4c7611d18c2bc4e6ff69701805461ffff8087166002600f909516949094026101000a8481029102199091161790556000908152603560205260409020805460ff191690911790555b50806133bd81614f06565b91505061320f565b506032546000036133f8575060ff82166000908152602f60205260409020805460ff60a81b1916600160a81b1790555050565b6032546001036134a157603260008154811061341657613416614e6d565b60009182526020822060108204015460348054600f9093166002026101000a90910461ffff1661ffff199092169190911790556032805490919061345c5761345c614e6d565b90600052602060002090601091828204019190066002029054906101000a900461ffff16603460026101000a81548161ffff021916908361ffff16021790555061371a565b6032546002036135085760326000815481106134bf576134bf614e6d565b6000918252602090912060108204015460348054600f9093166002026101000a90910461ffff1661ffff1990921691909117905560328054600190811061345c5761345c614e6d565b603b544290156135bc57603a54603b5460405163d8a4676f60e01b815260009283926001600160a01b039091169163d8a4676f9161354c9160040190815260200190565b600060405180830381865afa158015613569573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526135919190810190614f6a565b9150915081156135b957806001815181106135ae576135ae614e6d565b602002602001015192505b50505b603a54603254604051634039d7e760e11b815261ffff9091166004820152602481018390526000916001600160a01b031690638073afce90604401600060405180830381865afa158015613614573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261363c9190810190615017565b905060328160008151811061365357613653614e6d565b602002602001015161ffff168154811061366f5761366f614e6d565b6000918252602090912060108204015460348054600f9093166002026101000a90910461ffff1661ffff199092169190911790558051603290829060019081106136bb576136bb614e6d565b602002602001015161ffff16815481106136d7576136d7614e6d565b90600052602060002090601091828204019190066002029054906101000a900461ffff16603460026101000a81548161ffff021916908361ffff16021790555050505b6036805461ffff19166101011790556034547f246071332ec3cecbddeebfd36569844838470b18b27bf4c8f06390c7ef630b0f9061ffff1661375b8161196a565b6040805161ffff90931683526001600160a01b0390911660208301520160405180910390a16034547f246071332ec3cecbddeebfd36569844838470b18b27bf4c8f06390c7ef630b0f9062010000900461ffff166137b88161196a565b6040805161ffff90931683526001600160a01b0390911660208301520160405180910390a15060ff82166000908152602f602090815260408220805460ff60a81b1916600160a81b179055612580909152603590527fc245414cd24d2564ee7e7a329fa9082955cf6f202d571f9a2f385336c14af3b5805460ff191660011790555050565b600080600061384d846004541190565b61388d5760405162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610ba3565b6000603085815481106138a2576138a2614e6d565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff16905060008160201662ffffff1611156138e557601f811691506138ea565b602091505b601f600f82901c169560069190911c6101ff1694509092509050565b3233146139255760405162461bcd60e51b8152600401610ba390614d59565b6002600854036139475760405162461bcd60e51b8152600401610ba390614d87565b6002600855336139568261196a565b6001600160a01b03161461397c5760405162461bcd60e51b8152600401610ba390614dbe565b6040600052602f60205260008051602061558b83398151915254600160a81b900460ff166139bc5760405162461bcd60e51b8152600401610ba390614e36565b60345460009061ffff168203613a2b5760365460ff166139ee5760405162461bcd60e51b8152600401610ba3906150ee565b613a146002611180612710611180603261117a605c603c5461403390919063ffffffff16565b613a1e9082614e99565b6036805460ff1916905590505b60345462010000900461ffff168203613aa357603654610100900460ff16613a655760405162461bcd60e51b8152600401610ba3906150ee565b613a8b6002611180612710611180603261117a605c603c5461403390919063ffffffff16565b613a959082614e99565b6036805461ff001916905590505b604051600090339083908381818185875af1925050503d8060008114613ae5576040519150601f19603f3d011682016040523d82523d6000602084013e613aea565b606091505b5050905080613b335760405162461bcd60e51b815260206004820152601560248201527410db185a5b481d1c985b9cd9995c8819985a5b1959605a1b6044820152606401610ba3565b60408051338152602081018590529081018390527fd08149829b4708b5a796078ac79020343425f5db94b97dfc5fe89f1e9caffb139060600160405180910390a15050600160085550565b613b86613c90565b737b0dc23e87febf1d053e7df9af4cce30f21fae9cff5b613ba5613c90565b60005b81811015610cda57600160376000858585818110613bc857613bc8614e6d565b9050602002016020810190613bdd91906149a7565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580613c0f81614eb1565b915050613ba8565b613c1f613c90565b6001600160a01b038116613c845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ba3565b613c8d816140eb565b50565b6007546001600160a01b03163314611d4a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ba3565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190613d1f8261196a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613d65826004541190565b613dc95760405162461bcd60e51b815260206004820152602f60248201527f4552433732315073693a206f70657261746f7220717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ba3565b6000613dd48361196a565b9050806001600160a01b0316846001600160a01b03161480613e0f5750836001600160a01b0316613e0484610b36565b6001600160a01b0316145b80613e3f57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b600080613e5383614052565b91509150846001600160a01b0316826001600160a01b031614613ecd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a207472616e73666572206f6620746f6b656e2074686160448201526b3a1034b9903737ba1037bbb760a11b6064820152608401610ba3565b6001600160a01b038416613f335760405162461bcd60e51b815260206004820152602760248201527f4552433732315073693a207472616e7366657220746f20746865207a65726f206044820152666164647265737360c81b6064820152608401610ba3565b613f3e600084613cea565b6000613f4b846001614e99565b600881901c600090815260208190526040902054909150600160ff1b60ff83161c16158015613f7b575060045481105b15613fb157600081815260036020526040812080546001600160a01b0319166001600160a01b038916179055613fb1908261447d565b600084815260036020526040902080546001600160a01b0319166001600160a01b038716179055818414613fea57613fea60008561447d565b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600061403f828461545a565b9392505050565b600061403f8284615479565b600080614060836004541190565b6140c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732315073693a206f776e657220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ba3565b6140ca836144a9565b6000818152600360205260409020546001600160a01b031694909350915050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6004548161419b5760405162461bcd60e51b815260206004820152602560248201527f4552433732315073693a207175616e74697479206d7573742062652067726561604482015264074657220360dc1b6064820152608401610ba3565b6001600160a01b0383166141fd5760405162461bcd60e51b815260206004820152602360248201527f4552433732315073693a206d696e7420746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ba3565b816004600082825461420f9190614e99565b9091555050600081815260036020526040812080546001600160a01b0319166001600160a01b038616179055614245908261447d565b805b6142518383614e99565b81101561267f5760405181906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48061429a81614eb1565b915050614247565b600061403f8284614eca565b6142b9848484613e47565b6142c78484846001856144b5565b61267f5760405162461bcd60e51b8152600401610ba39061549b565b6060602b8054610ab390614ccf565b604080516080019081905280825b600183039250600a81066030018353600a9004806143005750819003601f19909101908152919050565b6060815160000361434957505060408051602081019091526000815290565b600060405180606001604052806040815260200161554b60409139905060006003845160026143789190614e99565b6143829190615479565b61438d90600461545a565b67ffffffffffffffff8111156143a5576143a5614acc565b6040519080825280601f01601f1916602001820160405280156143cf576020820181803683370190505b509050600182016020820185865187015b8082101561443b576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506143e0565b5050600386510660018114614457576002811461446a57614472565b603d6001830353603d6002830353614472565b603d60018303535b509195945050505050565b600881901c600090815260209290925260409091208054600160ff1b60ff9093169290921c9091179055565b6000610a8d81836145ec565b60006001600160a01b0385163b156145df57506001835b6144d68486614e99565b8110156145d957604051630a85bd0160e11b81526001600160a01b0387169063150b7a029061450f9033908b90869089906004016154f0565b6020604051808303816000875af192505050801561454a575060408051601f3d908101601f191682019092526145479181019061552d565b60015b6145a7573d808015614578576040519150601f19603f3d011682016040523d82523d6000602084013e61457d565b606091505b50805160000361459f5760405162461bcd60e51b8152600401610ba39061549b565b805181602001fd5b8280156145c457506001600160e01b03198116630a85bd0160e11b145b925050806145d181614eb1565b9150506144cc565b506145e3565b5060015b95945050505050565b600881901c60008181526020849052604081205490919060ff808516919082181c801561462e5761461c816146e4565b60ff168203600884901b1793506146db565b6000831161469b5760405162461bcd60e51b815260206004820152603460248201527f4269744d6170733a205468652073657420626974206265666f7265207468652060448201527334b73232bc103237b2b9b713ba1032bc34b9ba1760611b6064820152608401610ba3565b5060001990910160008181526020869052604090205490919080156146d6576146c3816146e4565b60ff0360ff16600884901b1793506146db565b61462e565b50505092915050565b600060405180610120016040528061010081526020016155ab610100913960f87e818283848586878898a8b8c8d8e8f929395969799a9b9d9e9faaeb6bedeeff61472d8561474e565b02901c8151811061474057614740614e6d565b016020015160f81c92915050565b600080821161475c57600080fd5b5060008190031690565b82805461477290614ccf565b90600052602060002090601f01602090048101928261479457600085556147da565b82601f106147ad57805160ff19168380011785556147da565b828001600101855582156147da579182015b828111156147da5782518255916020019190600101906147bf565b506147e69291506147ea565b5090565b5b808211156147e657600081556001016147eb565b6001600160e01b031981168114613c8d57600080fd5b60006020828403121561482757600080fd5b813561403f816147ff565b60005b8381101561484d578181015183820152602001614835565b8381111561267f5750506000910152565b60008151808452614876816020860160208601614832565b601f01601f19169290920160200192915050565b60208152600061403f602083018461485e565b6000602082840312156148af57600080fd5b5035919050565b80356001600160a01b03811681146111e657600080fd5b600080604083850312156148e057600080fd5b6148e9836148b6565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b8181101561493357835161ffff1683529284019291840191600101614913565b50909695505050505050565b60008060006060848603121561495457600080fd5b61495d846148b6565b925061496b602085016148b6565b9150604084013590509250925092565b803560ff811681146111e657600080fd5b60006020828403121561499e57600080fd5b61403f8261497b565b6000602082840312156149b957600080fd5b61403f826148b6565b6020808252825182820181905260009190848201906040850190845b81811015614933578351835292840192918401916001016149de565b60008060408385031215614a0d57600080fd5b614a168361497b565b9150614a246020840161497b565b90509250929050565b61ffff81168114613c8d57600080fd5b60008060408385031215614a5057600080fd5b614a59836148b6565b91506020830135614a6981614a2d565b809150509250929050565b8015158114613c8d57600080fd5b60008060408385031215614a9557600080fd5b614a9e836148b6565b91506020830135614a6981614a74565b60008060408385031215614ac157600080fd5b8235614a1681614a2d565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715614b0b57614b0b614acc565b604052919050565b600067ffffffffffffffff831115614b2d57614b2d614acc565b614b40601f8401601f1916602001614ae2565b9050828152838383011115614b5457600080fd5b828260208301376000602084830101529392505050565b60008060008060808587031215614b8157600080fd5b614b8a856148b6565b9350614b98602086016148b6565b925060408501359150606085013567ffffffffffffffff811115614bbb57600080fd5b8501601f81018713614bcc57600080fd5b614bdb87823560208401614b13565b91505092959194509250565b600060208284031215614bf957600080fd5b813567ffffffffffffffff811115614c1057600080fd5b8201601f81018413614c2157600080fd5b613e3f84823560208401614b13565b60008060208385031215614c4357600080fd5b823567ffffffffffffffff80821115614c5b57600080fd5b818501915085601f830112614c6f57600080fd5b813581811115614c7e57600080fd5b8660208260051b8501011115614c9357600080fd5b60209290920196919550909350505050565b60008060408385031215614cb857600080fd5b614cc1836148b6565b9150614a24602084016148b6565b600181811c90821680614ce357607f821691505b602082108103614d0357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601e908201527f4f6e6c79204f70657261746f72204163636f756e747320416c6c6f7765640000604082015260600190565b600060208284031215614d5257600080fd5b5051919050565b60208082526014908201527327b7363c9024b73234bb34b23ab0b6102ab9b2b960611b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600a908201526927b7363c9037bbb732b960b11b604082015260600190565b60208082526034908201527f4552433732315073693a207472616e736665722063616c6c6572206973206e6f6040820152731d081bdddb995c881b9bdc88185c1c1c9bdd995960621b606082015260800190565b60208082526019908201527f46696e616c2077696e6e6572206e6f742072656c656173656400000000000000604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115614eac57614eac614e83565b500190565b600060018201614ec357614ec3614e83565b5060010190565b600082821015614edc57614edc614e83565b500390565b600060ff821660ff84168060ff03821115614efe57614efe614e83565b019392505050565b600061ffff808316818103614f1d57614f1d614e83565b6001019392505050565b600060ff821660ff8103614f3d57614f3d614e83565b60010192915050565b600067ffffffffffffffff821115614f6057614f60614acc565b5060051b60200190565b60008060408385031215614f7d57600080fd5b8251614f8881614a74565b8092505060208084015167ffffffffffffffff811115614fa757600080fd5b8401601f81018613614fb857600080fd5b8051614fcb614fc682614f46565b614ae2565b81815260059190911b82018301908381019088831115614fea57600080fd5b928401925b8284101561500857835182529284019290840190614fef565b80955050505050509250929050565b6000602080838503121561502a57600080fd5b825167ffffffffffffffff81111561504157600080fd5b8301601f8101851361505257600080fd5b8051615060614fc682614f46565b81815260059190911b8201830190838101908783111561507f57600080fd5b928401925b828410156150a657835161509781614a2d565b82529284019290840190615084565b979650505050505050565b634e487b7160e01b600052601260045260246000fd5b600062ffffff8083168185168083038211156150e5576150e5614e83565b01949350505050565b6020808252601590820152741b9bc8199d5b99081bdc8818d85cda1959081bdd5d605a1b604082015260600190565b6000815161512f818560208601614832565b9290920192915050565b6000825161514b818460208701614832565b6931b7bb32b9173539b7b760b11b920191825250600a01919050565b600062ffffff8083168185168183048111821515161561518957615189614e83565b02949350505050565b6c417a75476f616c204e4654202360981b8152600083516151ba81600d850160208801614832565b65e2ad90efb88f60d01b600d9184019182015283516151e0816013840160208801614832565b01601301949350505050565b6c417a75476f616c204e4654202360981b81526000825161521481600d850160208701614832565b91909101600d0192915050565b693d913730b6b2911d101160b11b8152865160009061524781600a850160208c01614832565b7f222c20226465736372697074696f6e223a2022417a75476f616c20576f726c64600a918401918201527421bab810191819191116101134b6b0b3b2911d101160591b602a82015287516152a281603f840160208c01614832565b87519101906152b881603f840160208b01614832565b7f2e706e67222c202264657369676e6572223a202269736f746f702e746f70222c603f92909101918201527f2261747472696275746573223a205b7b2274726169745f74797065223a202249605f8201527f6e2d6d656d6f7279222c2276616c7565223a2022576f726c6443757020323032607f8201527f32227d2c207b2274726169745f74797065223a20225465616d222c2276616c75609f8201526432911d101160d91b60bf8201526154086153f86153f26153bd6153b761537f60c487018c61511d565b7f227d2c207b2274726169745f74797065223a20224e756d626572222c2276616c8152653ab2911d101160d11b602082015260260190565b8961511d565b7f227d2c207b2274726169745f74797065223a2022426574222c2276616c7565228152621d101160e91b602082015260230190565b8661511d565b63227d5d7d60e01b815260040190565b9998505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161544d81601d850160208701614832565b91909101601d0192915050565b600081600019048311821515161561547457615474614e83565b500290565b60008261549657634e487b7160e01b600052601260045260246000fd5b500490565b60208082526035908201527f4552433732315073693a207472616e7366657220746f206e6f6e20455243373260408201527418a932b1b2b4bb32b91034b6b83632b6b2b73a32b960591b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906155239083018461485e565b9695505050505050565b60006020828403121561553f57600080fd5b815161403f816147ff56fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f6ce17b9af338fb27b5f65293a15947cc23b25780e4bcfbd82bb652589443fcb10001020903110a19042112290b311a3905412245134d2a550c5d32651b6d3a7506264262237d468514804e8d2b95569d0d495ea533a966b11c886eb93bc176c9071727374353637324837e9b47af86c7155181ad4fd18ed32c9096db57d59ee30e2e4a6a5f92a6be3498aae067ddb2eb1d5989b56fd7baf33ca0c2ee77e5caf7ff0810182028303840444c545c646c7425617c847f8c949c48a4a8b087b8c0c816365272829aaec650acd0d28fdad4e22d6991bd97dfdcea58b4d6f29fede4f6fe0f1f2f3f4b5b6b607b8b93a3a7b7bf357199c5abcfd9e168bcdee9b3f1ecf5fd1e3e5a7a8aa2b670c4ced8bbe8f0f4fc3d79a1c3cde7effb78cce6facbf9f8a264697066735822122051d709d01671e84e1171a5a5564d4b6383661afc072e354ef63f01e5ee21521464736f6c634300080d0033

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

0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000016345785d8a000000000000000000000000000000000000000000000000000000000000000001770000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656965366a7978796b69703334366f637869336b6c6d326b3234676b766f78376a6d7666706a76616d6a7673616c7934746f786771342f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://bafybeie6jyxykip346ocxi3klm2k24gkvox7jmvfpjvamjvsaly4toxgq4/
Arg [1] : bet_price (uint256): 100000000000000000
Arg [2] : share (uint16): 375

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 000000000000000000000000000000000000000000000000016345785d8a0000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000177
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [4] : 697066733a2f2f6261667962656965366a7978796b69703334366f637869336b
Arg [5] : 6c6d326b3234676b766f78376a6d7666706a76616d6a7673616c7934746f7867
Arg [6] : 71342f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

270:20140:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:410:7;;;;;;;;;;-1:-1:-1;1570:410:7;;;;;:::i;:::-;;:::i;:::-;;;565:14:22;;558:22;540:41;;528:2;513:18;1570:410:7;;;;;;;;18266:91:1;;;;;;;;;;;;;:::i;:::-;;;738:25:22;;;726:2;711:18;18266:91:1;592:177:22;3267:98:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4860:298::-;;;;;;;;;;-1:-1:-1;4860:298:7;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1896:32:22;;;1878:51;;1866:2;1851:18;4860:298:7;1732:203:22;4399:400:7;;;;;;;;;;-1:-1:-1;4399:400:7;;;;;:::i;:::-;;:::i;:::-;;12161:95:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;15261:293::-;;;;;;;;;;;;;:::i;15560:143::-;;;;;;;;;;;;;:::i;3620:407::-;;;;;;;;;;-1:-1:-1;3620:407:1;;;;;:::i;:::-;;:::i;11940:103::-;;;;;;;;;;;;;:::i;14549:101:7:-;;;;;;;;;;-1:-1:-1;14636:7:7;;14549:101;;12049:106:1;;;;;;;;;;-1:-1:-1;12131:7:1;;12049:106;;;12131:7;;;;3220:34:22;;12140:7:1;;;;;;;3285:2:22;3270:18;;3263:43;3168:18;12049:106:1;3025:287:22;3203:116:1;;;;;;;;;;-1:-1:-1;3296:16:1;;3277:15;:35;;3203:116;;5880:367:7;;;;;;;;;;-1:-1:-1;5880:367:7;;;;;:::i;:::-;;:::i;5811:527:1:-;;;;;;;;;;-1:-1:-1;5811:527:1;;;;;:::i;:::-;;:::i;3442:172::-;;;;;;;;;;-1:-1:-1;3442:172:1;;;;;:::i;:::-;;:::i;:::-;;;3822:4:22;3810:17;;;3792:36;;3780:2;3765:18;3442:172:1;3650:184:22;15215:442:7;;;;;;;;;;-1:-1:-1;15215:442:7;;;;;:::i;:::-;;:::i;1112:40:1:-;;;;;;;;;;;;1148:4;1112:40;;;;;4013:6:22;4001:19;;;3983:38;;3971:2;3956:18;1112:40:1;3839:188:22;17476:784:1;;;;;;;;;;;;;:::i;:::-;;;;4206:25:22;;;4262:2;4247:18;;4240:34;;;;4179:18;17476:784:1;4032:248:22;11831:103:1;;;;;;;;;;;;;:::i;6313:179:7:-;;;;;;;;;;-1:-1:-1;6313:179:7;;;;;:::i;:::-;;:::i;11683:142:1:-;;;;;;;;;;-1:-1:-1;11683:142:1;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;11804:14:1;;;;;;:7;:14;;;;;11797:21;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11797:21:1;;;;;;;;-1:-1:-1;;;11797:21:1;;;;;;;;;;;;;11683:142;;;;;4849:13:22;;4864:4;4845:24;4827:43;;4930:4;4918:17;;;4912:24;-1:-1:-1;;;;;4908:50:22;4886:20;;;4879:80;5017:17;;;5011:24;5004:32;4997:40;4975:20;;;4968:70;4815:2;4800:18;11683:142:1;4633:411:22;14722:414:7;;;;;;;;;;-1:-1:-1;14722:414:7;;;;;:::i;:::-;;:::i;4033:700:1:-;;;;;;;;;;-1:-1:-1;4033:700:1;;;;;:::i;:::-;;:::i;8774:357::-;;;;;;;;;;-1:-1:-1;8774:357:1;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2583:259:7:-;;;;;;;;;;-1:-1:-1;2583:259:7;;;;;:::i;:::-;;:::i;12279:742:1:-;;;;;;;;;;-1:-1:-1;12279:742:1;;;;;:::i;:::-;;:::i;1158:54::-;;;;;;;;;;;;-1:-1:-1;;1158:54:1;;2039:487:7;;;;;;;;;;-1:-1:-1;2039:487:7;;;;;:::i;:::-;;:::i;1824:101:16:-;;;;;;;;;;;;;:::i;16648:296:1:-;;;;;;;;;;-1:-1:-1;16648:296:1;;;;;:::i;:::-;;:::i;18363:239::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;6838:15:22;;;6820:34;;6890:15;;;6885:2;6870:18;;6863:43;6942:15;;6922:18;;;6915:43;;;;6770:2;6755:18;18363:239:1;6580:384:22;1194:85:16;;;;;;;;;;-1:-1:-1;1266:6:16;;-1:-1:-1;;;;;1266:6:16;1194:85;;17376:94:1;;;;;;;;;;-1:-1:-1;17376:94:1;;;;;:::i;:::-;;:::i;3429:102:7:-;;;;;;;;;;;;;:::i;15709:896:1:-;;;;;;;;;;;;;:::i;5225:321:7:-;;;;;;;;;;-1:-1:-1;5225:321:7;;;;;:::i;:::-;;:::i;7805:828:1:-;;;;;;:::i;:::-;;:::i;6558:357:7:-;;;;;;;;;;-1:-1:-1;6558:357:7;;;;;:::i;:::-;;:::i;4739:1066:1:-;;;;;;;;;;-1:-1:-1;4739:1066:1;;;;;:::i;:::-;;:::i;7302:497::-;;;;;;;;;;-1:-1:-1;7302:497:1;;;;;:::i;:::-;;:::i;17161:209::-;;;;;;;;;;-1:-1:-1;17161:209:1;;;;;:::i;:::-;;:::i;9153:2065::-;;;;;;;;;;-1:-1:-1;9153:2065:1;;;;;:::i;:::-;;:::i;13027:2228::-;;;;;;;;;;-1:-1:-1;13027:2228:1;;;;;:::i;:::-;;:::i;11224:453::-;;;;;;;;;;-1:-1:-1;11224:453:1;;;;;:::i;:::-;;:::i;:::-;;;;9883:25:22;;;9939:2;9924:18;;9917:34;;;;9967:18;;;9960:34;9871:2;9856:18;11224:453:1;9681:319:22;6344:952:1;;;;;;;;;;-1:-1:-1;6344:952:1;;;;;:::i;:::-;;:::i;3325:111::-;;;;;;;;;;-1:-1:-1;3415:14:1;;3396:15;:33;;3325:111;;18608:118;;;;;;;;;;;;;:::i;16975:180::-;;;;;;;;;;-1:-1:-1;16975:180:1;;;;;:::i;:::-;;:::i;5612:206:7:-;;;;;;;;;;-1:-1:-1;5612:206:7;;;;;:::i;:::-;-1:-1:-1;;;;;5776:25:7;;;5749:4;5776:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;5612:206;2074:198:16;;;;;;;;;;-1:-1:-1;2074:198:16;;;;;:::i;:::-;;:::i;1570:410:7:-;1712:4;-1:-1:-1;;;;;;1751:40:7;;-1:-1:-1;;;1751:40:7;;:104;;-1:-1:-1;;;;;;;1807:48:7;;-1:-1:-1;;;1807:48:7;1751:104;:170;;;-1:-1:-1;;;;;;;1871:50:7;;-1:-1:-1;;;1871:50:7;1751:170;:222;;;-1:-1:-1;;;;;;;;;;937:40:6;;;1937:36:7;1732:241;1570:410;-1:-1:-1;;1570:410:7:o;18266:91:1:-;18318:7;1087:13:16;:11;:13::i;:::-;-1:-1:-1;18345:4:1::1;::::0;18266:91;:::o;3267:98:7:-;3321:13;3353:5;3346:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3267:98;:::o;4860:298::-;4976:7;5020:16;5028:7;8468;;-1:-1:-1;8458:17:7;8370:112;5020:16;4999:110;;;;-1:-1:-1;;;4999:110:7;;11477:2:22;4999:110:7;;;11459:21:22;11516:2;11496:18;;;11489:30;11555:34;11535:18;;;11528:62;-1:-1:-1;;;11606:18:22;;;11599:45;11661:19;;4999:110:7;;;;;;;;;-1:-1:-1;5127:24:7;;;;:15;:24;;;;;;-1:-1:-1;;;;;5127:24:7;;4860:298::o;4399:400::-;4479:13;4495:16;4503:7;4495;:16::i;:::-;4479:32;;4535:5;-1:-1:-1;;;;;4529:11:7;:2;-1:-1:-1;;;;;4529:11:7;;4521:60;;;;-1:-1:-1;;;4521:60:7;;11893:2:22;4521:60:7;;;11875:21:22;11932:2;11912:18;;;11905:30;11971:34;11951:18;;;11944:62;-1:-1:-1;;;12022:18:22;;;12015:34;12066:19;;4521:60:7;11691:400:22;4521:60:7;719:10:5;-1:-1:-1;;;;;4613:21:7;;;;:62;;-1:-1:-1;4638:37:7;4655:5;719:10:5;5612:206:7;:::i;4638:37::-;4592:168;;;;-1:-1:-1;;;4592:168:7;;12298:2:22;4592:168:7;;;12280:21:22;12337:2;12317:18;;;12310:30;12376:34;12356:18;;;12349:62;12447:29;12427:18;;;12420:57;12494:19;;4592:168:7;12096:423:22;4592:168:7;4771:21;4780:2;4784:7;4771:8;:21::i;:::-;4469:330;4399:400;;:::o;12161:95:1:-;12207:15;12241:8;12234:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12161:95;:::o;15261:293::-;2418:9;2408:20;;;;:9;:20;;;;;;;;2407:21;:46;;;;-1:-1:-1;1266:6:16;;-1:-1:-1;;;;;1266:6:16;2432:10:1;:21;;2407:46;2403:104;;;2467:40;;-1:-1:-1;;;2467:40:1;;;;;;;:::i;2403:104::-;15339:15:::1;15320:16;:34:::0;15474:3:::1;::::0;:25:::1;::::0;-1:-1:-1;;;15474:25:1;;15497:1:::1;15474:25;::::0;::::1;13036:42:22::0;-1:-1:-1;;;;;15474:3:1;;::::1;::::0;:22:::1;::::0;13009:18:22;;15474:25:1::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15458:13;:41:::0;15515:32:::1;::::0;15531:15:::1;738:25:22::0;;15515:32:1::1;::::0;726:2:22;711:18;15515:32:1::1;;;;;;;;15261:293::o:0;15560:143::-;2418:9;2408:20;;;;:9;:20;;;;;;;;2407:21;:46;;;;-1:-1:-1;1266:6:16;;-1:-1:-1;;;;;1266:6:16;2432:10:1;:21;;2407:46;2403:104;;;2467:40;;-1:-1:-1;;;2467:40:1;;;;;;;:::i;2403:104::-;-1:-1:-1;;15619:16:1::1;:29:::0;15663:33:::1;::::0;15680:15:::1;738:25:22::0;;15663:33:1::1;::::0;726:2:22;711:18;15663:33:1::1;592:177:22::0;3620:407:1;2290:9;2303:10;2290:23;2286:59;;2315:30;;-1:-1:-1;;;2315:30:1;;;;;;;:::i;2286:59::-;1744:1:18::1;2325:7;;:19:::0;2317:63:::1;;;;-1:-1:-1::0;;;2317:63:18::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;3728:10:1::2;3708:16;3716:7:::0;3708::::2;:16::i;:::-;-1:-1:-1::0;;;;;3708:30:1::2;;3700:53;;;;-1:-1:-1::0;;;3700:53:1::2;;;;;;;:::i;:::-;3777:25;::::0;::::2;3763:11;3777:25:::0;;;:8:::2;:25;::::0;;;;;::::2;;::::0;3817:10;;;3813:43:::2;;3829:27;::::0;-1:-1:-1;;;3829:27:1;;14528:2:22;3829:27:1::2;::::0;::::2;14510:21:22::0;14567:2;14547:18;;;14540:30;-1:-1:-1;;;14586:18:22;;;14579:47;14643:18;;3829:27:1::2;14326:341:22::0;3813:43:1::2;3900:4;::::0;:28:::2;::::0;-1:-1:-1;;;3900:28:1;;3910:10:::2;3900:28;::::0;::::2;14844:51:22::0;14943:4;14931:17;;14911:18;;;14904:45;-1:-1:-1;;;;;3900:4:1;;::::2;::::0;:9:::2;::::0;14817:18:22;;3900:28:1::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;;;3938:25:1::2;::::0;::::2;3966:1;3938:25:::0;;;:8:::2;:25;::::0;;;;;;;;:29;;-1:-1:-1;;3938:29:1::2;::::0;;3982:38;;3993:10:::2;15158:51:22::0;;15225:18;;;15218:34;;;15300:4;15288:17;;15268:18;;;15261:45;3982:38:1;;::::2;::::0;;;;15146:2:22;3982:38:1;;::::2;-1:-1:-1::0;;1701:1:18::1;2628:7;:22:::0;3620:407:1:o;11940:103::-;11990:15;12024:12;12017:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11940:103;:::o;5880:367:7:-;6082:41;719:10:5;6115:7:7;6082:18;:41::i;:::-;6061:140;;;;-1:-1:-1;;;6061:140:7;;;;;;;:::i;:::-;6212:28;6222:4;6228:2;6232:7;6212:9;:28::i;5811:527:1:-;5946:2;5901:13;5938:11;;;:7;:11;;-1:-1:-1;;;;;;;;;;;5938:21:1;-1:-1:-1;;;5938:21:1;;:11;:21;5930:59;;;;-1:-1:-1;;;5930:59:1;;;;;;;:::i;:::-;6015:7;;;;6004:18;;6000:158;;6040:14;:17;;;6036:122;;;6120:38;6156:1;6120:31;6145:5;6120:20;6137:2;6120:12;6129:2;6120:4;;:8;;:12;;;;:::i;:::-;:16;;:20::i;:::-;:24;;:31::i;:38::-;6111:47;;;;:::i;:::-;;;6036:122;6184:7;;;;;;;6173:18;;6169:162;;6209:14;:17;;;;;;6205:126;;;6293:38;6329:1;6293:31;6318:5;6293:20;6310:2;6293:12;6302:2;6293:4;;:8;;:12;;;;:::i;:38::-;6284:47;;;;:::i;6205:126::-;5811:527;;;:::o;3442:172::-;3503:5;3528:16;3536:7;8468::7;;-1:-1:-1;8458:17:7;8370:112;3528:16:1;3520:45;;;;-1:-1:-1;;;3520:45:1;;16691:2:22;3520:45:1;;;16673:21:22;16730:2;16710:18;;;16703:30;-1:-1:-1;;;16749:18:22;;;16742:46;16805:18;;3520:45:1;16489:340:22;3520:45:1;-1:-1:-1;3582:25:1;;;;;;:8;:25;;;;;;;;;3442:172::o;15215:442:7:-;15352:15;15383:13;15411:9;15406:188;15426:7;;15422:1;:11;15406:188;;;15458:10;15466:1;8468:7;;-1:-1:-1;8458:17:7;8370:112;15458:10;:33;;;;;15481:10;15489:1;15481:7;:10::i;:::-;-1:-1:-1;;;;;15472:19:7;:5;-1:-1:-1;;;;;15472:19:7;;15458:33;15454:130;;;15524:5;15515;:14;15511:58;;15538:1;-1:-1:-1;15531:8:7;;-1:-1:-1;15531:8:7;15511:58;15562:7;;;;:::i;:::-;;;;15511:58;15435:3;;;;:::i;:::-;;;;15406:188;;;-1:-1:-1;15604:46:7;;-1:-1:-1;;;15604:46:7;;17176:2:22;15604:46:7;;;17158:21:22;17215:2;17195:18;;;17188:30;17254:34;17234:18;;;17227:62;-1:-1:-1;;;17305:18:22;;;17298:34;17349:19;;15604:46:7;16974:400:22;17476:784:1;17548:14;17564;1087:13:16;:11;:13::i;:::-;17610:2:1::1;17602:11;::::0;:7:::1;:11;::::0;-1:-1:-1;;;;;;;;;;;17602:21:1;-1:-1:-1;;;17602:21:1;::::1;:11;:21;17594:59;;;::::0;-1:-1:-1;;;17594:59:1;;17581:2:22;17594:59:1::1;::::0;::::1;17563:21:22::0;17620:2;17600:18;;;17593:30;17659:27;17639:18;;;17632:55;17704:18;;17594:59:1::1;17379:349:22::0;17594:59:1::1;1148:4;17671:21;::::0;:9:::1;:21;::::0;;;::::1;;17663:64;;;::::0;-1:-1:-1;;;17663:64:1;;17935:2:22;17663:64:1::1;::::0;::::1;17917:21:22::0;17974:2;17954:18;;;17947:30;18013:32;17993:18;;;17986:60;18063:18;;17663:64:1::1;17733:354:22::0;17663:64:1::1;17738:13;17754:20;17770:3;17754:11;17763:1;17754:4;;:8;;:11;;;;:::i;:20::-;17804:6;::::0;17738:36;;-1:-1:-1;17794:27:1::1;::::0;17816:4:::1;::::0;17794:17:::1;::::0;17738:36;;17804:6:::1;;17794:9;:17::i;:27::-;17785:36:::0;-1:-1:-1;17840:14:1::1;17785:36:::0;17840:5;:14:::1;:::i;:::-;17885:88;::::0;17831:23;;-1:-1:-1;17866:13:1::1;::::0;17893:42:::1;::::0;17962:6;;17866:13;17885:88;17866:13;17885:88;17962:6;17893:42;17885:88:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;18003:88:1::1;::::0;17865:108;;-1:-1:-1;17984:13:1::1;::::0;18011:42:::1;::::0;18080:6;;17984:13;18003:88;17984:13;18003:88;18080:6;18011:42;18003:88:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17983:108;;;18109:8;:20;;;;;18121:8;18109:20;18101:57;;;::::0;-1:-1:-1;;;18101:57:1;;18634:2:22;18101:57:1::1;::::0;::::1;18616:21:22::0;18673:2;18653:18;;;18646:30;18712:26;18692:18;;;18685:54;18756:18;;18101:57:1::1;18432:348:22::0;18101:57:1::1;1148:4;18193:5;18169:21:::0;;;:9:::1;:21;::::0;;;;:29;;-1:-1:-1;;18169:29:1::1;::::0;;:21;18213:40;;18223:10:::1;18986:51:22::0;;19053:18;;;19046:47;;;;19109:18;;;19102:34;;;18213:40:1::1;::::0;18974:2:22;18959:18;18213:40:1::1;;;;;;;17584:676;;;17476:784:::0;;:::o;11831:103::-;11881:15;11915:12;11908:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11831:103;:::o;6313:179:7:-;6446:39;6463:4;6469:2;6473:7;6446:39;;;;;;;;;;;;:16;:39::i;14722:414::-;14837:7;14876:13;14636:7;;;14549:101;14876:13;14868:5;:21;14860:71;;;;-1:-1:-1;;;14860:71:7;;19349:2:22;14860:71:7;;;19331:21:22;19388:2;19368:18;;;19361:30;19427:34;19407:18;;;19400:62;-1:-1:-1;;;19478:18:22;;;19471:35;19523:19;;14860:71:7;19147:401:22;14860:71:7;14942:13;14970:9;14965:165;14985:7;;14981:1;:11;14965:165;;;15017:10;15025:1;8468:7;;-1:-1:-1;8458:17:7;8370:112;15017:10;15013:107;;;15060:5;15051;:14;15047:58;;15074:1;14722:414;-1:-1:-1;;;14722:414:7:o;15047:58::-;15098:7;;;;:::i;:::-;;;;15047:58;14994:3;;;;:::i;:::-;;;;14965:165;;;;14850:286;14722:414;;;:::o;4033:700:1:-;4131:2;4090:13;4123:11;;;:7;:11;;-1:-1:-1;;;;;;;;;;;4123:21:1;-1:-1:-1;;;4123:21:1;;:11;:21;4115:59;;;;-1:-1:-1;;;4115:59:1;;;;;;;:::i;:::-;4190:26;;;;;;;:9;:26;;;;;;;;4185:41;;-1:-1:-1;4225:1:1;;4033:700;-1:-1:-1;4033:700:1:o;4185:41::-;4253:12;:19;4237:13;4306:187;4330:5;4326:1;:9;4306:187;;;4377:7;4358:12;4371:1;4358:15;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:26;4354:139;;4413:42;4449:5;4413:31;4438:5;4413:20;4430:2;4413:12;4422:2;4413:4;;:8;;:12;;;;:::i;:42::-;4404:51;;;;:::i;:::-;;;4473:5;;4354:139;4337:3;;;;:::i;:::-;;;;4306:187;;;-1:-1:-1;;4511:12:1;:19;4545:9;4540:187;4564:5;4560:1;:9;4540:187;;;4611:7;4592:12;4605:1;4592:15;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:26;4588:139;;4647:42;4683:5;4647:31;4672:5;4647:20;4664:2;4647:12;4656:2;4647:4;;:8;;:12;;;;:::i;:42::-;4638:51;;;;:::i;:::-;;;4707:5;;4588:139;4571:3;;;;:::i;:::-;;;;4540:187;;8774:357;8868:16;2290:9;2303:10;2290:23;2286:59;;2315:30;;-1:-1:-1;;;2315:30:1;;;;;;;:::i;2286:59::-;8900:13:::1;8916:16;8926:5;8916:9;:16::i;:::-;8900:32;;8942:25;8984:5;8970:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;8970:20:1::1;;8942:48;;9005:9;9000:100;9020:5;9016:1;:9;9000:100;;;9060:29;9080:5;9087:1;9060:19;:29::i;:::-;9046:8;9055:1;9046:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;:43;9027:3;::::1;::::0;::::1;:::i;:::-;;;;9000:100;;;-1:-1:-1::0;9116:8:1;8774:357;-1:-1:-1;;;8774:357:1:o;2583:259:7:-;2695:7;2719:13;2734:24;2762:51;2796:7;2762:20;:51::i;:::-;-1:-1:-1;2718:95:7;2583:259;-1:-1:-1;;;;2583:259:7:o;12279:742:1:-;2418:9;2408:20;;;;:9;:20;;;;;;;;2407:21;:46;;;;-1:-1:-1;1266:6:16;;-1:-1:-1;;;;;1266:6:16;2432:10:1;:21;;2407:46;2403:104;;;2467:40;;-1:-1:-1;;;2467:40:1;;;;;;;:::i;2403:104::-;12372:2:::1;12364:5;:10;;;12356:36;;;::::0;-1:-1:-1;;;12356:36:1;;19755:2:22;12356:36:1::1;::::0;::::1;19737:21:22::0;19794:2;19774:18;;;19767:30;-1:-1:-1;;;19813:18:22;;;19806:43;19866:18;;12356:36:1::1;19553:337:22::0;12356:36:1::1;12406:14;::::0;;::::1;;::::0;;;:7:::1;:14;::::0;;;;:24;-1:-1:-1;;;12406:24:1;::::1;;12402:64;;;12432:34;::::0;-1:-1:-1;;;12432:34:1;;20097:2:22;12432:34:1::1;::::0;::::1;20079:21:22::0;20136:2;20116:18;;;20109:30;-1:-1:-1;;;20155:18:22;;;20148:54;20219:18;;12432:34:1::1;19895:348:22::0;12402:64:1::1;12494:14;::::0;::::1;126:42:15;12494:14:1::0;;;:7:::1;:14;::::0;;;;:23;::::1;::::0;::::1;-1:-1:-1::0;;;;;12494:23:1::1;:31:::0;;:84:::1;;-1:-1:-1::0;12541:14:1::1;::::0;::::1;;::::0;;;:7:::1;:14;::::0;;;;:23;::::1;::::0;::::1;-1:-1:-1::0;;;;;12541:23:1::1;12568:10;12541:37;12494:84;12477:207;;;12620:33;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;12635:10:::1;12620:33;::::0;;::::1;::::0;;;-1:-1:-1;12620:33:1;;;;;;12603:14;;::::1;::::0;;:7:::1;:14:::0;;;;;;;:50;;;;;;;;::::1;;-1:-1:-1::0;;;12603:50:1::1;-1:-1:-1::0;;;;;;;;;12603:50:1;;;::::1;;;-1:-1:-1::0;;;;;;12603:50:1;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;12279:742;;:::o;12477:207::-:1;12698:30;:14:::0;;::::1;;::::0;;;:7:::1;:14;::::0;;;;:21;;::::1;:30:::0;;::::1;;12694:160;;12744:14;::::0;;::::1;;::::0;;;:7:::1;:14;::::0;;;;:36;;-1:-1:-1;;;;;;12794:29:1;12770:10:::1;12744:36;;-1:-1:-1::0;;12794:29:1;;;;;::::1;;::::0;;12279:742::o;12694:160::-:1;12869:8;12864:108;12887:4;:11:::0;12883:15:::1;::::0;::::1;;12864:108;;;12949:5;12921:33;;12934:2;12923:4;12928:1;12923:7;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:13;;;;12940:4;12922:22;12921:33;;::::0;12917:55:::1;;12956:11;::::0;::::1;;::::0;;;:8:::1;:11;::::0;;;;:16;;12971:1:::1;::::0;12956:11;:16:::1;::::0;12971:1;;12956:16:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12917:55;12900:3:::0;::::1;::::0;::::1;:::i;:::-;;;;12864:108;;;-1:-1:-1::0;12983:14:1::1;::::0;::::1;;::::0;;;:7:::1;:14;::::0;;;;:31;;-1:-1:-1;;;;12983:31:1::1;-1:-1:-1::0;;;12983:31:1::1;::::0;;12279:742;;:::o;2039:487:7:-;2151:7;-1:-1:-1;;;;;2195:19:7;;2174:111;;;;-1:-1:-1;;;2174:111:7;;20861:2:22;2174:111:7;;;20843:21:22;20900:2;20880:18;;;20873:30;20939:34;20919:18;;;20912:62;-1:-1:-1;;;20990:18:22;;;20983:43;21043:19;;2174:111:7;20659:409:22;2174:111:7;2296:13;2324:9;2319:179;2339:7;;2335:1;:11;2319:179;;;2371:10;2379:1;8468:7;;-1:-1:-1;8458:17:7;8370:112;2371:10;2367:121;;;2414:10;2422:1;2414:7;:10::i;:::-;-1:-1:-1;;;;;2405:19:7;:5;-1:-1:-1;;;;;2405:19:7;;2401:73;;2448:7;;;:::i;:::-;;;2401:73;2348:3;;;:::i;:::-;;;2319:179;;;-1:-1:-1;2514:5:7;2039:487;-1:-1:-1;;2039:487:7:o;1824:101:16:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;16648:296:1:-;2418:9;2408:20;;;;:9;:20;;;;;;;;2407:21;:46;;;;-1:-1:-1;1266:6:16;;-1:-1:-1;;;;;1266:6:16;2432:10:1;:21;;2407:46;2403:104;;;2467:40;;-1:-1:-1;;;2467:40:1;;;;;;;:::i;2403:104::-;3415:14;;3396:15;:33;16732:45:::1;;;::::0;-1:-1:-1;;;16732:45:1;;21275:2:22;16732:45:1::1;::::0;::::1;21257:21:22::0;21314:2;21294:18;;;21287:30;-1:-1:-1;;;21333:18:22;;;21326:44;21387:18;;16732:45:1::1;21073:338:22::0;16732:45:1::1;16795:4;:11:::0;1148:4:::1;::::0;16795:22:::1;::::0;:36:::1;:22:::0;::::1;::::0;::::1;:::i;:::-;:36;;16787:61;;;::::0;-1:-1:-1;;;16787:61:1;;21618:2:22;16787:61:1::1;::::0;::::1;21600:21:22::0;21657:2;21637:18;;;21630:30;-1:-1:-1;;;21676:18:22;;;21669:42;21728:18;;16787:61:1::1;21416:336:22::0;16787:61:1::1;16859:19;16865:2;16869:8;16859:19;;:5;:19::i;:::-;16893:7;16888:49;16910:8;16906:12;;:1;:12;;;16888:49;;;16925:4;:12:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;16925:12:1;;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;;;::::1;;;;;;;;;::::0;;16920:3;::::1;::::0;::::1;:::i;:::-;;;;16888:49;;18363:239:::0;18459:7;18480;18501;1087:13:16;:11;:13::i;:::-;-1:-1:-1;;18575:3:1::1;::::0;18589:4:::1;::::0;244:42:9::1;::::0;-1:-1:-1;;;;;18575:3:1;;::::1;::::0;-1:-1:-1;18589:4:1;::::1;::::0;18363:239::o;17376:94::-;1087:13:16;:11;:13::i;:::-;17442:9:1::1;:21:::0;17376:94::o;3429:102:7:-;3485:13;3517:7;3510:14;;;;;:::i;15709:896:1:-;2418:9;2408:20;;;;:9;:20;;;;;;;;2407:21;:46;;;;-1:-1:-1;1266:6:16;;-1:-1:-1;;;;;1266:6:16;2432:10:1;:21;;2407:46;2403:104;;;2467:40;;-1:-1:-1;;;2467:40:1;;;;;;;:::i;2403:104::-;-1:-1:-1;;15774:14:1::1;;:28;15766:57;;;::::0;-1:-1:-1;;;15766:57:1;;22139:2:22;15766:57:1::1;::::0;::::1;22121:21:22::0;22178:2;22158:18;;;22151:30;-1:-1:-1;;;22197:18:22;;;22190:46;22253:18;;15766:57:1::1;21937:340:22::0;15766:57:1::1;15851:15;15834:14;:32:::0;;;15925:13:::1;::::0;:18;15921:203:::1;;16008:3;::::0;16046:13:::1;::::0;16008:52:::1;::::0;-1:-1:-1;;;16008:52:1;;15960:14:::1;::::0;;;-1:-1:-1;;;;;16008:3:1;;::::1;::::0;:37:::1;::::0;:52:::1;::::0;::::1;;738:25:22::0;;;726:2;711:18;;592:177;16008:52:1::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;16008:52:1::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;15959:101;;;;16078:9;16074:39;;;16099:11;16111:1;16099:14;;;;;;;;:::i;:::-;;;;;;;16089:24;;16074:39;15945:179;;15921:203;16155:3;::::0;:28:::1;::::0;-1:-1:-1;;;16155:28:1;;16169:4:::1;16155:28;::::0;::::1;23662:38:22::0;23716:18;;;23709:34;;;16134:18:1::1;::::0;-1:-1:-1;;;;;16155:3:1::1;::::0;:13:::1;::::0;23635:18:22;;16155:28:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;16155:28:1::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;16134:49;;16223:9;16218:325;16242:4;:11:::0;16238:15;::::1;16218:325;;;16278:12;16301:3;16293:2;16296:1;16293:5;;;;;;;;:::i;:::-;;;;;;;:11;;;;;;;:::i;:::-;;16278:26;;;;16322:10;16343:3;16335:2;16338:1;16335:5;;;;;;;;:::i;:::-;;;;;;;:11;;;;;;;:::i;:::-;;16322:24;;;;16526:1;16519:3;:8;;;;16512:2;16503:5;:11;;;;16502:26;16492:4;16497:1;16492:7;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;16260:283;;16255:3;;;;;;;16218:325;;;-1:-1:-1::0;16568:30:1::1;::::0;16582:15:::1;738:25:22::0;;16568:30:1::1;::::0;726:2:22;711:18;16568:30:1::1;;;;;;;15756:849;;15709:896::o:0;5225:321:7:-;719:10:5;-1:-1:-1;;;;;5355:24:7;;;5347:65;;;;-1:-1:-1;;;5347:65:7;;25047:2:22;5347:65:7;;;25029:21:22;25086:2;25066:18;;;25059:30;25125;25105:18;;;25098:58;25173:18;;5347:65:7;24845:352:22;5347:65:7;719:10:5;5423:32:7;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;5423:42:7;;;;;;;;;;;;:53;;-1:-1:-1;;5423:53:7;;;;;;;;;;5491:48;;540:41:22;;;5423:42:7;;719:10:5;5491:48:7;;513:18:22;5491:48:7;;;;;;;5225:321;;:::o;7805:828:1:-;2290:9;2303:10;2290:23;2286:59;;2315:30;;-1:-1:-1;;;2315:30:1;;;;;;;:::i;2286:59::-;1744:1:18::1;2325:7;;:19:::0;2317:63:::1;;;;-1:-1:-1::0;;;2317:63:18::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;3415:14:1;;3396:15;:33;;7931:55:::2;;;::::0;-1:-1:-1;;;7931:55:1;;25404:2:22;7931:55:1::2;::::0;::::2;25386:21:22::0;25443:2;25423:18;;;25416:30;25482:27;25462:18;;;25455:55;25527:18;;7931:55:1::2;25202:349:22::0;7931:55:1::2;8012:2;8004:5;:10;;;7996:44;;;::::0;-1:-1:-1;;;7996:44:1;;25758:2:22;7996:44:1::2;::::0;::::2;25740:21:22::0;25797:2;25777:18;;;25770:30;-1:-1:-1;;;25816:18:22;;;25809:51;25877:18;;7996:44:1::2;25556:345:22::0;7996:44:1::2;8058:16;8066:7;8058:16;;8468:7:7::0;;-1:-1:-1;8458:17:7;8370:112;8058:16:1::2;8050:45;;;::::0;-1:-1:-1;;;8050:45:1;;16691:2:22;8050:45:1::2;::::0;::::2;16673:21:22::0;16730:2;16710:18;;;16703:30;-1:-1:-1;;;16749:18:22;;;16742:46;16805:18;;8050:45:1::2;16489:340:22::0;8050:45:1::2;8133:10;8113:16;;::::0;::::2;:7;:16::i;:::-;-1:-1:-1::0;;;;;8113:30:1::2;;8105:53;;;;-1:-1:-1::0;;;8105:53:1::2;;;;;;;:::i;:::-;8176:4;8181:7;8176:13;;;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;;;::::2;::::0;;::::2;::::0;;::::2;::::0;;::::2;;;;;::::0;::::2;:20:::0;:25;8168:47:::2;;;::::0;-1:-1:-1;;;8168:47:1;;26108:2:22;8168:47:1::2;::::0;::::2;26090:21:22::0;26147:1;26127:18;;;26120:29;-1:-1:-1;;;26165:18:22;;;26158:39;26214:18;;8168:47:1::2;25906:332:22::0;8168:47:1::2;8246:9;;8233;:22;;8225:55;;;::::0;-1:-1:-1;;;8225:55:1;;26445:2:22;8225:55:1::2;::::0;::::2;26427:21:22::0;26484:2;26464:18;;;26457:30;-1:-1:-1;;;26503:18:22;;;26496:50;26563:18;;8225:55:1::2;26243:344:22::0;8225:55:1::2;8308:5;8316:4;8308:12;8291:29;;:4;8296:7;8291:13;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;:::i;:::-;::::0;;::::2;::::0;;::::2;;::::0;;::::2;;::::0;;::::2;::::0;;;::::2;;;::::0;;;8330:8:::2;:22:::0;;-1:-1:-1;8330:22:1;::::2;::::0;;-1:-1:-1;8330:22:1;;;;;::::2;::::0;::::2;;::::0;;;;;;::::2;;::::0;;::::2;;::::0;;::::2;;::::0;;::::2;::::0;;::::2;;;::::0;;-1:-1:-1;8409:9:1::2;::::0;8397::::2;:21;8393:206;;;8490:9;::::0;8435:12:::2;::::0;8453:10:::2;::::0;8476:24:::2;::::0;:9:::2;::::0;:13:::2;:24::i;:::-;8453:82;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8434:101;;;8557:7;8549:39;;;::::0;-1:-1:-1;;;8549:39:1;;27025:2:22;8549:39:1::2;::::0;::::2;27007:21:22::0;27064:2;27044:18;;;27037:30;-1:-1:-1;;;27083:18:22;;;27076:49;27142:18;;8549:39:1::2;26823:343:22::0;8549:39:1::2;8420:179;8393:206;8617:9;;8609:4;;:17;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;1701:1:18::1;2628:7;:22:::0;-1:-1:-1;;7805:828:1:o;6558:357:7:-;6740:41;719:10:5;6773:7:7;6740:18;:41::i;:::-;6719:140;;;;-1:-1:-1;;;6719:140:7;;;;;;;:::i;:::-;6869:39;6883:4;6889:2;6893:7;6902:5;6869:13;:39::i;:::-;6558:357;;;;:::o;4739:1066:1:-;2290:9;2303:10;2290:23;2286:59;;2315:30;;-1:-1:-1;;;2315:30:1;;;;;;;:::i;2286:59::-;1744:1:18::1;2325:7;;:19:::0;2317:63:::1;;;;-1:-1:-1::0;;;2317:63:18::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;4843:10:1::2;4823:16;4831:7:::0;4823::::2;:16::i;:::-;-1:-1:-1::0;;;;;4823:30:1::2;;4815:53;;;;-1:-1:-1::0;;;4815:53:1::2;;;;;;;:::i;:::-;4894:2;4886:11;::::0;:7:::2;:11;::::0;-1:-1:-1;;;;;;;;;;;4886:21:1;-1:-1:-1;;;4886:21:1;::::2;:11;:21;4878:59;;;;-1:-1:-1::0;;;4878:59:1::2;;;;;;;:::i;:::-;4953:26;::::0;::::2;;::::0;;;:9:::2;:26;::::0;;;;;::::2;;4948:64;;4981:31;;-1:-1:-1::0;;;4981:31:1::2;;;;;;;:::i;4948:64::-;5066:12;:19:::0;5023:13:::2;::::0;;5119:187:::2;5143:5;5139:1;:9;5119:187;;;5190:7;5171:12;5184:1;5171:15;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;;::::2;::::0;::::2;;::::0;;;;;::::2;;;;::::0;::::2;;;:26:::0;5167:139:::2;;5226:42;5262:5;5226:31;5251:5;5226:20;5243:2;5226:12;5235:2;5226:4;;:8;;:12;;;;:::i;:42::-;5217:51;::::0;;::::2;:::i;:::-;;;5286:5;;5167:139;5150:3:::0;::::2;::::0;::::2;:::i;:::-;;;;5119:187;;;-1:-1:-1::0;;5324:12:1::2;:19:::0;5358:9:::2;5353:187;5377:5;5373:1;:9;5353:187;;;5424:7;5405:12;5418:1;5405:15;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;;::::2;::::0;::::2;;::::0;;;;;::::2;;;;::::0;::::2;;;:26:::0;5401:139:::2;;5460:42;5496:5;5460:31;5485:5;5460:20;5477:2;5460:12;5469:2;5460:4;;:8;;:12;;;;:::i;:42::-;5451:51;::::0;;::::2;:::i;:::-;;;5520:5;;5401:139;5384:3:::0;::::2;::::0;::::2;:::i;:::-;;;;5353:187;;;-1:-1:-1::0;5617:33:1::2;::::0;5599:12:::2;::::0;5617:10:::2;::::0;5640:5;;5599:12;5617:33;5599:12;5617:33;5640:5;5617:10;:33:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5598:52;;;5668:7;5660:41;;;::::0;-1:-1:-1;;;5660:41:1;;27723:2:22;5660:41:1::2;::::0;::::2;27705:21:22::0;27762:2;27742:18;;;27735:30;-1:-1:-1;;;27781:18:22;;;27774:51;27842:18;;5660:41:1::2;27521:345:22::0;5660:41:1::2;5712:26;::::0;::::2;5741:5;5712:26:::0;;;:9:::2;:26;::::0;;;;;;;;:34;;-1:-1:-1;;5712:34:1::2;::::0;;5761:37;;5771:10:::2;28073:51:22::0;;28140:18;;;28133:34;;;28183:18;;;28176:34;;;5761:37:1::2;::::0;28061:2:22;28046:18;5761:37:1::2;;;;;;;-1:-1:-1::0;;1701:1:18::1;2628:7;:22:::0;-1:-1:-1;;4739:1066:1:o;7302:497::-;2290:9;2303:10;2290:23;2286:59;;2315:30;;-1:-1:-1;;;2315:30:1;;;;;;;:::i;2286:59::-;1744:1:18::1;2325:7;;:19:::0;2317:63:::1;;;;-1:-1:-1::0;;;2317:63:18::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;3296:16:1;;3277:15;:35;;7382:57:::2;;;::::0;-1:-1:-1;;;7382:57:1;;28423:2:22;7382:57:1::2;::::0;::::2;28405:21:22::0;28462:2;28442:18;;;28435:30;28501:26;28481:18;;;28474:54;28545:18;;7382:57:1::2;28221:348:22::0;7382:57:1::2;3415:14:::0;;3396:15;:33;7449:52:::2;;;::::0;-1:-1:-1;;;7449:52:1;;28776:2:22;7449:52:1::2;::::0;::::2;28758:21:22::0;28815:2;28795:18;;;28788:30;-1:-1:-1;;;28834:18:22;;;28827:51;28895:18;;7449:52:1::2;28574:345:22::0;7449:52:1::2;7568:1;7556:8;7532:32;;:21;7542:10;7532:9;:21::i;:::-;:32;;;;:::i;:::-;:37;;7511:113;;;::::0;-1:-1:-1;;;7511:113:1;;29126:2:22;7511:113:1::2;::::0;::::2;29108:21:22::0;29165:2;29145:18;;;29138:30;29204:31;29184:18;;;29177:59;29253:18;;7511:113:1::2;28924:353:22::0;7511:113:1::2;7642:4;:11:::0;1148:4:::2;::::0;7642:22:::2;::::0;::::2;::::0;::::2;::::0;::::2;:::i;:::-;:36;;7634:61;;;::::0;-1:-1:-1;;;7634:61:1;;21618:2:22;7634:61:1::2;::::0;::::2;21600:21:22::0;21657:2;21637:18;;;21630:30;-1:-1:-1;;;21676:18:22;;;21669:42;21728:18;;7634:61:1::2;21416:336:22::0;7634:61:1::2;7706:27;7712:10;7724:8;7706:27;;:5;:27::i;:::-;7748:7;7743:49;7765:8;7761:12;;:1;:12;;;7743:49;;;7780:4;:12:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;7780:12:1;;;;;::::2;::::0;;::::2;::::0;;;::::2;::::0;;;;;::::2;;;;;;;;;::::0;;7775:3;::::2;::::0;::::2;:::i;:::-;;;;7743:49;;;-1:-1:-1::0;;1701:1:18::1;2628:7;:22:::0;7302:497:1:o;17161:209::-;17251:13;1087::16;:11;:13::i;:::-;17280:19:1;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;17314;17329:3;17314:19;;;;;;:::i;:::-;;;;;;;;17350:13;17343:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17161:209:::0;;;:::o;9153:2065::-;9266:13;9303:16;9311:7;8468::7;;-1:-1:-1;8458:17:7;8370:112;9303:16:1;9295:46;;;;-1:-1:-1;;;9295:46:1;;29484:2:22;9295:46:1;;;29466:21:22;29523:2;29503:18;;;29496:30;-1:-1:-1;;;29542:18:22;;;29535:47;29599:18;;9295:46:1;29282:341:22;9295:46:1;3415:14;;3396:15;:33;;9352:1860;;9419:10;:8;:10::i;:::-;9402:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;9388:57;;9153:2065;;;:::o;9352:1860::-;9474:12;9489:4;9494:7;9489:13;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;9474:28;;9516:18;9537:9;9557:2;9548:5;:11;;;;9563:4;9547:20;9537:31;;;;;;;;;:::i;:::-;;9516:52;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9582:16;9601:40;9629:1;9620:5;:10;;;;9634:5;9619:20;9611:29;;9601:9;:40::i;:::-;9655:33;;;;;;;;;;;;-1:-1:-1;;;9655:33:1;;;;9582:59;;-1:-1:-1;9655:21:1;9763:5;9758:1;9749:10;;;9748:20;9716:28;9733:4;9727:2;9718:11;;;9717:20;9741:3;9716:28;:::i;:::-;:53;;;;:::i;:::-;9702:67;;;-1:-1:-1;9784:19:1;9829:4;9821:12;;:16;9817:552;;9867:9;9885:4;9877:12;;9867:23;;;;;;;:::i;:::-;;9857:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10027:14;10037:3;10027:9;:14::i;:::-;10182:7;9944:267;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9908:321;;9817:552;;;10336:14;10346:3;10336:9;:14::i;:::-;10302:49;;;;;;;;:::i;:::-;;;;;;;;;;;;;10266:103;;9817:552;10384:17;10468:5;10564:10;:8;:10::i;:::-;10592:14;10602:3;10592:9;:14::i;:::-;10777:4;10857:2;10932:7;10404:573;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10384:593;;11142:19;11156:4;11142:13;:19::i;:::-;11043:140;;;;;;;;:::i;:::-;;;;;;;;;;;;;10992:209;;;;;;;;;9153:2065;;;:::o;13027:2228::-;2418:9;2408:20;;;;:9;:20;;;;;;;;2407:21;:46;;;;-1:-1:-1;1266:6:16;;-1:-1:-1;;;;;1266:6:16;2432:10:1;:21;;2407:46;2403:104;;;2467:40;;-1:-1:-1;;;2467:40:1;;;;;;;:::i;2403:104::-;13117:5:::1;:11;;13126:2;13117:11;13109:53;;;::::0;-1:-1:-1;;;13109:53:1;;35315:2:22;13109:53:1::1;::::0;::::1;35297:21:22::0;35354:2;35334:18;;;35327:30;35393:31;35373:18;;;35366:59;35442:18;;13109:53:1::1;35113:353:22::0;13109:53:1::1;13176:14;::::0;;::::1;;::::0;;;:7:::1;:14;::::0;;;;:24;-1:-1:-1;;;13176:24:1;::::1;;13172:64;;;13202:34;::::0;-1:-1:-1;;;13202:34:1;;20097:2:22;13202:34:1::1;::::0;::::1;20079:21:22::0;20136:2;20116:18;;;20109:30;-1:-1:-1;;;20155:18:22;;;20148:54;20219:18;;13202:34:1::1;19895:348:22::0;13172:64:1::1;13264:14;::::0;::::1;126:42:15;13264:14:1::0;;;:7:::1;:14;::::0;;;;:23;::::1;::::0;::::1;-1:-1:-1::0;;;;;13264:23:1::1;:31:::0;;:84:::1;;-1:-1:-1::0;13311:14:1::1;::::0;::::1;;::::0;;;:7:::1;:14;::::0;;;;:23;::::1;::::0;::::1;-1:-1:-1::0;;;;;13311:23:1::1;13338:10;13311:37;13264:84;13247:207;;;13390:33;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;13405:10:::1;13390:33;::::0;;::::1;::::0;;;-1:-1:-1;13390:33:1;;;;;;13373:14;;::::1;::::0;;:7:::1;:14:::0;;;;;;;:50;;;;;;;;::::1;;-1:-1:-1::0;;;13373:50:1::1;-1:-1:-1::0;;;;;;;;;13373:50:1;;;::::1;;;-1:-1:-1::0;;;;;;13373:50:1;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;12279:742;;:::o;13247:207::-:1;13468:30;:14:::0;;::::1;;::::0;;;:7:::1;:14;::::0;;;;:21;;::::1;:30:::0;;::::1;;13464:160;;13514:14;::::0;;::::1;;::::0;;;:7:::1;:14;::::0;;;;:36;;-1:-1:-1;;;;;;13564:29:1;13540:10:::1;13514:36;;-1:-1:-1::0;;13564:29:1;;;;;::::1;;::::0;;12279:742::o;13464:160::-:1;13650:4;:11:::0;13633:14:::1;13672:410;13695:6;13691:1;:10;;;13672:410;;;13722:12;13737:4;13742:1;13737:7;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;13722:22;;13789:5;13763:31;;13774:2;13765:5;:11;;;;13780:4;13764:20;13763:31;;::::0;13759:161:::1;;13814:11;::::0;::::1;;::::0;;;:8:::1;:11;::::0;;;;:16;;13829:1:::1;::::0;13814:11;:16:::1;::::0;13829:1;;13814:16:::1;;;:::i;:::-;::::0;;::::1;::::0;;::::1;;::::0;;::::1;::::0;;::::1;::::0;::::1;;;;::::0;;;13848:12:::1;:20:::0;;-1:-1:-1;13848:20:1;;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;;::::0;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;;;::::0;;;::::1;::::0;;;-1:-1:-1;13886:12:1;;;:9:::1;13848:20;13886:12:::0;;;;;:19;;-1:-1:-1;;13886:19:1::1;::::0;;::::1;::::0;;-1:-1:-1;13759:161:1::1;13945:4;13937:12:::0;::::1;:16:::0;;;;:43:::1;;-1:-1:-1::0;13966:4:1::1;13958:12:::0;::::1;:21;::::0;::::1;;13937:43;13933:139;;;14000:12;:20:::0;;::::1;::::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;;::::0;;;;;;;::::1;;;::::0;;::::1;::::0;::::1;;::::0;;::::1;;::::0;;-1:-1:-1;14038:12:1;;;:9:::1;14000:20;14038:12:::0;;;;:19;;-1:-1:-1;;14038:19:1::1;::::0;;::::1;::::0;;13933:139:::1;-1:-1:-1::0;13703:3:1;::::1;::::0;::::1;:::i;:::-;;;;13672:410;;;-1:-1:-1::0;14096:12:1::1;:19:::0;14119:1:::1;14096:24:::0;14092:106:::1;;-1:-1:-1::0;14136:14:1::1;::::0;::::1;;::::0;;;:7:::1;:14;::::0;;;;:31;;-1:-1:-1;;;;14136:31:1::1;-1:-1:-1::0;;;14136:31:1::1;::::0;;12279:742;;:::o;14092:106::-:1;14212:12;:19:::0;14235:1:::1;14212:24:::0;14208:779:::1;;14262:12;14275:1;14262:15;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;::::1;::::0;::::1;;::::0;14252:7:::1;:25:::0;;14262:15;;;;::::1;;;;::::0;;::::1;;;-1:-1:-1::0;;14252:25:1;;::::1;::::0;;;::::1;::::0;;14301:12:::1;:15:::0;;:12;;14262:15;14301::::1;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;14291:7;;:25;;;;;;;;;;;;;;;;;;14208:779;;;14337:12;:19:::0;14360:1:::1;14337:24:::0;14333:654:::1;;14387:12;14400:1;14387:15;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;::::0;14377:7:::1;:25:::0;;14387:15;;;;::::1;;;;::::0;;::::1;;;-1:-1:-1::0;;14377:25:1;;::::1;::::0;;;::::1;::::0;;14426:12:::1;:15:::0;;-1:-1:-1;;14426:15:1;::::1;;;;;:::i;14333:654::-;14524:13;::::0;14490:15:::1;::::0;14524:18;14520:219:::1;;14611:3;::::0;14653:13:::1;::::0;14611:56:::1;::::0;-1:-1:-1;;;14611:56:1;;14563:14:::1;::::0;;;-1:-1:-1;;;;;14611:3:1;;::::1;::::0;:41:::1;::::0;:56:::1;::::0;::::1;;738:25:22::0;;;726:2;711:18;;592:177;14611:56:1::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;14611:56:1::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;14562:105;;;;14689:9;14685:39;;;14710:11;14722:1;14710:14;;;;;;;;:::i;:::-;;;;;;;14700:24;;14685:39;14544:195;;14520:219;14780:3;::::0;14818:12:::1;:19:::0;14780:97:::1;::::0;-1:-1:-1;;;14780:97:1;;23692:6:22;23680:19;;;14780:97:1::1;::::0;::::1;23662:38:22::0;23716:18;;;23709:34;;;14753:24:1::1;::::0;-1:-1:-1;;;;;14780:3:1::1;::::0;:13:::1;::::0;23635:18:22;;14780:97:1::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;14780:97:1::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;14753:124;;14902:12;14915:8;14924:1;14915:11;;;;;;;;:::i;:::-;;;;;;;14902:25;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;::::0;14892:7:::1;:35:::0;;14902:25;;;;::::1;;;;::::0;;::::1;;;-1:-1:-1::0;;14892:35:1;;::::1;::::0;;;::::1;::::0;;14964:11;;14951:12:::1;::::0;14964:11;;-1:-1:-1;;14964:11:1;::::1;;;;;:::i;:::-;;;;;;;14951:25;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;14941:7;;:35;;;;;;;;;;;;;;;;;;14458:529;;14333:654;14997:14;:24:::0;;-1:-1:-1;;15031:24:1;;;;;15086:7:::1;::::0;15071:41:::1;::::0;15086:7:::1;;15095:16;15086:7:::0;15095::::1;:16::i;:::-;15071:41;::::0;;35937:6:22;35925:19;;;35907:38;;-1:-1:-1;;;;;35981:32:22;;;35976:2;35961:18;;35954:60;35880:18;15071:41:1::1;;;;;;;15142:7;::::0;15127:41:::1;::::0;15142:7;;::::1;;;15151:16;15142:7:::0;15151::::1;:16::i;:::-;15127:41;::::0;;35937:6:22;35925:19;;;35907:38;;-1:-1:-1;;;;;35981:32:22;;;35976:2;35961:18;;35954:60;35880:18;15127:41:1::1;;;;;;;-1:-1:-1::0;15179:14:1::1;::::0;::::1;;::::0;;;:7:::1;:14;::::0;;;;;;:31;;-1:-1:-1;;;;15179:31:1::1;-1:-1:-1::0;;;15179:31:1::1;::::0;;1148:4:::1;15220:21:::0;;;:9:::1;:21:::0;;;:28;;-1:-1:-1;;15220:28:1::1;15206:4;15220:28;::::0;;13027:2228;;:::o;11224:453::-;11320:13;11347:11;11372:12;11417:16;11425:7;8468::7;;-1:-1:-1;8458:17:7;8370:112;11417:16:1;11409:46;;;;-1:-1:-1;;;11409:46:1;;29484:2:22;11409:46:1;;;29466:21:22;29523:2;29503:18;;;29496:30;-1:-1:-1;;;29542:18:22;;;29535:47;29599:18;;11409:46:1;29282:341:22;11409:46:1;11466:12;11481:4;11486:7;11481:13;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;11466:28;;11523:1;11508:5;11516:4;11508:12;:16;;;11504:74;;;11549:4;11541:12;;;-1:-1:-1;11504:74:1;;;11576:2;11569:9;;11504:74;11620:4;11614:2;11605:11;;;11604:20;;11659:1;11650:10;;;;11605:11;11649:20;;-1:-1:-1;11224:453:1;;-1:-1:-1;11224:453:1;-1:-1:-1;11224:453:1:o;6344:952::-;2290:9;2303:10;2290:23;2286:59;;2315:30;;-1:-1:-1;;;2315:30:1;;;;;;;:::i;2286:59::-;1744:1:18::1;2325:7;;:19:::0;2317:63:::1;;;;-1:-1:-1::0;;;2317:63:18::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;6457:10:1::2;6437:16;6445:7:::0;6437::::2;:16::i;:::-;-1:-1:-1::0;;;;;6437:30:1::2;;6429:53;;;;-1:-1:-1::0;;;6429:53:1::2;;;;;;;:::i;:::-;6508:2;6500:11;::::0;:7:::2;:11;::::0;-1:-1:-1;;;;;;;;;;;6500:21:1;-1:-1:-1;;;6500:21:1;::::2;:11;:21;6492:59;;;;-1:-1:-1::0;;;6492:59:1::2;;;;;;;:::i;:::-;6605:7;::::0;6562:13:::2;::::0;6605:7:::2;;6594:18:::0;;6590:236:::2;;6633:14;:17:::0;::::2;;6628:55;;6652:31;;-1:-1:-1::0;;;6652:31:1::2;;;;;;;:::i;6628:55::-;6738:38;6774:1;6738:31;6763:5;6738:20;6755:2;6738:12;6747:2;6738:4;;:8;;:12;;;;:::i;:38::-;6729:47;::::0;;::::2;:::i;:::-;6790:14;:25:::0;;-1:-1:-1;;6790:25:1::2;::::0;;6729:47;-1:-1:-1;6590:236:1::2;6850:7;::::0;;;::::2;;;6839:18:::0;;6835:240:::2;;6878:14;:17:::0;::::2;::::0;::::2;;;6873:55;;6897:31;;-1:-1:-1::0;;;6897:31:1::2;;;;;;;:::i;6873:55::-;6987:38;7023:1;6987:31;7012:5;6987:20;7004:2;6987:12;6996:2;6987:4;;:8;;:12;;;;:::i;:38::-;6978:47;::::0;;::::2;:::i;:::-;7039:14;:25:::0;;-1:-1:-1;;7039:25:1::2;::::0;;6978:47;-1:-1:-1;6835:240:1::2;7152:33;::::0;7134:12:::2;::::0;7152:10:::2;::::0;7175:5;;7134:12;7152:33;7134:12;7152:33;7175:5;7152:10;:33:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7133:52;;;7203:7;7195:41;;;::::0;-1:-1:-1;;;7195:41:1;;27723:2:22;7195:41:1::2;::::0;::::2;27705:21:22::0;27762:2;27742:18;;;27735:30;-1:-1:-1;;;27781:18:22;;;27774:51;27842:18;;7195:41:1::2;27521:345:22::0;7195:41:1::2;7252:37;::::0;;7262:10:::2;28073:51:22::0;;28155:2;28140:18;;28133:34;;;28183:18;;;28176:34;;;7252:37:1::2;::::0;28061:2:22;28046:18;7252:37:1::2;;;;;;;-1:-1:-1::0;;1701:1:18::1;2628:7;:22:::0;-1:-1:-1;6344:952:1:o;18608:118::-;1087:13:16;:11;:13::i;:::-;18675:42:1::1;18654:65;16975:180:::0;1087:13:16;:11;:13::i;:::-;17062:9:1::1;17057:91;17077:21:::0;;::::1;17057:91;;;17144:4;17117:9;:24;17127:10;;17138:1;17127:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;17117:24:1::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;17117:24:1;:31;;-1:-1:-1;;17117:31:1::1;::::0;::::1;;::::0;;;::::1;::::0;;17100:3;::::1;::::0;::::1;:::i;:::-;;;;17057:91;;2074:198:16::0;1087:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:16;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:16;;36227:2:22;2154:73:16::1;::::0;::::1;36209:21:22::0;36266:2;36246:18;;;36239:30;36305:34;36285:18;;;36278:62;-1:-1:-1;;;36356:18:22;;;36349:36;36402:19;;2154:73:16::1;36025:402:22::0;2154:73:16::1;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;1352:130::-;1266:6;;-1:-1:-1;;;;;1266:6:16;719:10:5;1415:23:16;1407:68;;;;-1:-1:-1;;;1407:68:16;;36634:2:22;1407:68:16;;;36616:21:22;;;36653:18;;;36646:30;36712:34;36692:18;;;36685:62;36764:18;;1407:68:16;36432:356:22;12150:164:7;12224:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;12224:29:7;-1:-1:-1;;;;;12224:29:7;;;;;;;;:24;;12277:16;12224:24;12277:7;:16::i;:::-;-1:-1:-1;;;;;12268:39:7;;;;;;;;;;;12150:164;;:::o;8640:434::-;8765:4;8806:16;8814:7;8468;;-1:-1:-1;8458:17:7;8370:112;8806:16;8785:110;;;;-1:-1:-1;;;8785:110:7;;36995:2:22;8785:110:7;;;36977:21:22;37034:2;37014:18;;;37007:30;37073:34;37053:18;;;37046:62;-1:-1:-1;;;37124:18:22;;;37117:45;37179:19;;8785:110:7;36793:411:22;8785:110:7;8905:13;8921:16;8929:7;8921;:16::i;:::-;8905:32;;8966:5;-1:-1:-1;;;;;8955:16:7;:7;-1:-1:-1;;;;;8955:16:7;;:63;;;;9011:7;-1:-1:-1;;;;;8987:31:7;:20;8999:7;8987:11;:20::i;:::-;-1:-1:-1;;;;;8987:31:7;;8955:63;:111;;;-1:-1:-1;;;;;;5776:25:7;;;5749:4;5776:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;9034:32;8947:120;8640:434;-1:-1:-1;;;;8640:434:7:o;11090:949::-;11210:13;11225:24;11253:51;11287:7;11253:20;:51::i;:::-;11209:95;;;;11332:4;-1:-1:-1;;;;;11323:13:7;:5;-1:-1:-1;;;;;11323:13:7;;11315:70;;;;-1:-1:-1;;;11315:70:7;;37411:2:22;11315:70:7;;;37393:21:22;37450:2;37430:18;;;37423:30;37489:34;37469:18;;;37462:62;-1:-1:-1;;;37540:18:22;;;37533:42;37592:19;;11315:70:7;37209:408:22;11315:70:7;-1:-1:-1;;;;;11403:16:7;;11395:68;;;;-1:-1:-1;;;11395:68:7;;37824:2:22;11395:68:7;;;37806:21:22;37863:2;37843:18;;;37836:30;37902:34;37882:18;;;37875:62;-1:-1:-1;;;37953:18:22;;;37946:37;38000:19;;11395:68:7;37622:403:22;11395:68:7;11579:29;11596:1;11600:7;11579:8;:29::i;:::-;11619:19;11641:11;:7;11651:1;11641:11;:::i;:::-;1811:1:3;1802:10;;;11668::7;1887:20:3;;;;;;;;;;;1802:10;;-1:-1:-1;;;;1865:4:3;1857:12;;1837:33;1887:27;:32;;;11667:53:7;;;11713:7;;11699:11;:21;11667:53;11663:152;;;11736:20;;;;:7;:20;;;;;:27;;-1:-1:-1;;;;;;11736:27:7;-1:-1:-1;;;;;11736:27:7;;;;;11777;;11736:20;11777:14;:27::i;:::-;11825:16;;;;:7;:16;;;;;:21;;-1:-1:-1;;;;;;11825:21:7;-1:-1:-1;;;;;11825:21:7;;;;;11860:27;;;11856:81;;11903:23;:10;11918:7;11903:14;:23::i;:::-;11971:7;11967:2;-1:-1:-1;;;;;11952:27:7;11961:4;-1:-1:-1;;;;;11952:27:7;;;;;;;;;;;11199:840;;;11090:949;;;:::o;3465:96:19:-;3523:7;3549:5;3553:1;3549;:5;:::i;:::-;3542:12;3465:96;-1:-1:-1;;;3465:96:19:o;3850:::-;3908:7;3934:5;3938:1;3934;:5;:::i;2848:357:7:-;2942:13;2957:24;3018:16;3026:7;8468;;-1:-1:-1;8458:17:7;8370:112;3018:16;2997:107;;;;-1:-1:-1;;;2997:107:7;;38627:2:22;2997:107:7;;;38609:21:22;38666:2;38646:18;;;38639:30;38705:34;38685:18;;;38678:62;-1:-1:-1;;;38756:18:22;;;38749:42;38808:19;;2997:107:7;38425:408:22;2997:107:7;3133:22;3147:7;3133:13;:22::i;:::-;3173:25;;;;:7;:25;;;;;;-1:-1:-1;;;;;3173:25:7;;3114:41;;-1:-1:-1;2848:357:7;-1:-1:-1;;2848:357:7:o;2426:187:16:-;2518:6;;;-1:-1:-1;;;;;2534:17:16;;;-1:-1:-1;;;;;;2534:17:16;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;10012:754:7:-;10111:7;;10137:12;10129:62;;;;-1:-1:-1;;;10129:62:7;;39040:2:22;10129:62:7;;;39022:21:22;39079:2;39059:18;;;39052:30;39118:34;39098:18;;;39091:62;-1:-1:-1;;;39169:18:22;;;39162:35;39214:19;;10129:62:7;38838:401:22;10129:62:7;-1:-1:-1;;;;;10209:16:7;;10201:64;;;;-1:-1:-1;;;10201:64:7;;39446:2:22;10201:64:7;;;39428:21:22;39485:2;39465:18;;;39458:30;39524:34;39504:18;;;39497:62;-1:-1:-1;;;39575:18:22;;;39568:33;39618:19;;10201:64:7;39244:399:22;10201:64:7;10362:8;10351:7;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;10380:25:7;;;;:7;:25;;;;;:30;;-1:-1:-1;;;;;;10380:30:7;-1:-1:-1;;;;;10380:30:7;;;;;10420:32;;10380:25;10420:14;:32::i;:::-;10596:16;10560:200;10636:27;10655:8;10636:16;:27;:::i;:::-;10626:7;:37;10560:200;;;10716:33;;10741:7;;-1:-1:-1;;;;;10716:33:7;;;10733:1;;10716:33;;10733:1;;10716:33;10677:9;;;;:::i;:::-;;;;10560:200;;3122:96:19;3180:7;3206:5;3210:1;3206;:5;:::i;7777:347:7:-;7928:28;7938:4;7944:2;7948:7;7928:9;:28::i;:::-;7987:51;8010:4;8016:2;8020:7;8029:1;8032:5;7987:22;:51::i;:::-;7966:151;;;;-1:-1:-1;;;7966:151:7;;;;;;;:::i;8656:112:1:-;8716:13;8748;8741:20;;;;;:::i;18823:1585::-;19337:4;19331:11;;19344:4;19327:22;19421:17;;;;19327:22;19771:5;19753:419;19818:1;19813:3;19809:11;19802:18;;19986:2;19980:4;19976:13;19972:2;19968:22;19963:3;19955:36;20078:2;20068:13;;20133:25;19753:419;20133:25;-1:-1:-1;20200:13:1;;;-1:-1:-1;;20313:14:1;;;20373:19;;;20313:14;18823:1585;-1:-1:-1;18823:1585:1:o;505:3026:2:-;563:13;795:4;:11;810:1;795:16;791:31;;-1:-1:-1;;813:9:2;;;;;;;;;-1:-1:-1;813:9:2;;;505:3026::o;791:31::-;872:19;894:6;;;;;;;;;;;;;;;;;872:28;;1303:20;1362:1;1343:4;:11;1357:1;1343:15;;;;:::i;:::-;1342:21;;;;:::i;:::-;1337:27;;:1;:27;:::i;:::-;1326:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1326:39:2;;1303:62;;1540:1;1533:5;1529:13;1641:2;1633:6;1629:15;1748:4;1799;1793:11;1787:4;1783:22;1711:1403;1832:6;1823:7;1820:19;1711:1403;;;1934:1;1925:7;1921:15;1910:26;;1972:7;1966:14;2615:4;2607:5;2603:2;2599:14;2595:25;2585:8;2581:40;2575:47;2564:9;2556:67;2668:1;2657:9;2653:17;2640:30;;2758:4;2750:5;2746:2;2742:14;2738:25;2728:8;2724:40;2718:47;2707:9;2699:67;2811:1;2800:9;2796:17;2783:30;;2900:4;2892:5;2889:1;2885:13;2881:24;2871:8;2867:39;2861:46;2850:9;2842:66;2953:1;2942:9;2938:17;2925:30;;3034:4;3027:5;3023:16;3013:8;3009:31;3003:38;2992:9;2984:58;;3087:1;3076:9;3072:17;3059:30;;1711:1403;;;1715:104;;3272:1;3265:4;3259:11;3255:19;3292:1;3287:120;;;;3425:1;3420:71;;;;3248:243;;3287:120;3339:4;3335:1;3324:9;3320:17;3312:32;3388:4;3384:1;3373:9;3369:17;3361:32;3287:120;;3420:71;3472:4;3468:1;3457:9;3453:17;3445:32;3248:243;-1:-1:-1;3518:6:2;;505:3026;-1:-1:-1;;;;;505:3026:2:o;2292:200:3:-;2388:1;2379:10;;;2362:14;2457:20;;;;;;;;;;;;:28;;-1:-1:-1;;;2442:4:3;2434:12;;;2414:33;;;;2457:28;;;;;2292:200::o;14294:184:7:-;14381:24;14440:31;14381:24;14463:7;14440:22;:31::i;12955:1333::-;13136:6;-1:-1:-1;;;;;13158:13:7;;1465:19:0;:23;13154:1128:7;;-1:-1:-1;13193:4:7;13251:12;13211:997;13291:23;13306:8;13291:12;:23;:::i;:::-;13281:7;:33;13211:997;;;13398:190;;-1:-1:-1;;;13398:190:7;;-1:-1:-1;;;;;13398:36:7;;;;;:190;;719:10:5;;13498:4:7;;13528:7;;13561:5;;13398:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13398:190:7;;;;;;;;-1:-1:-1;;13398:190:7;;;;;;;;;;;;:::i;:::-;;;13374:820;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13833:6;:13;13850:1;13833:18;13829:347;;13879:117;;-1:-1:-1;;;13879:117:7;;;;;;;:::i;13829:347::-;14120:6;14114:13;14105:6;14101:2;14097:15;14090:38;13374:820;13679:1;:80;;;;-1:-1:-1;;;;;;;13708:51:7;;-1:-1:-1;;;13708:51:7;13679:80;13651:108;;13605:173;13332:9;;;;:::i;:::-;;;;13211:997;;;;14221:8;;13154:1128;-1:-1:-1;14267:4:7;13154:1128;12955:1333;;;;;;;:::o;6840:1201:3:-;6979:1;6970:10;;;6922:19;7130:20;;;;;;;;;;;6922:19;;6970:10;7057:4;7049:12;;;;7232:18;;;7225:26;7302:6;;7299:736;;7398:22;:2;:20;:22::i;:::-;7383:37;;:11;:37;7377:1;7367:6;:11;;7366:55;7352:69;;7299:736;;;7517:1;7508:6;:10;7500:75;;;;-1:-1:-1;;;7500:75:3;;41031:2:22;7500:75:3;;;41013:21:22;41070:2;41050:18;;;41043:30;41109:34;41089:18;;;41082:62;-1:-1:-1;;;41160:18:22;;;41153:50;41220:19;;7500:75:3;40829:416:22;7500:75:3;-1:-1:-1;;;7625:8:3;;;7753:12;:20;;;;;;;;;;;7625:8;;-1:-1:-1;7811:6:3;;7808:202;;7915:22;:2;:20;:22::i;:::-;7908:3;:29;7891:47;;7902:1;7892:6;:11;;7891:47;7877:61;;7964:5;;7808:202;7470:555;;;6943:1098;;;6840:1201;;;;:::o;2032:197:4:-;2094:5;2148:16;;;;;;;;;;;;;;;;;2204:3;583:64;2166:18;2181:2;2166:14;:18::i;:::-;:33;2165:42;;2148:60;;;;;;;;:::i;:::-;;;;;;;;2032:197;-1:-1:-1;;2032:197:4:o;1288:164::-;1347:7;1379:1;1374:2;:6;1366:15;;;;;;-1:-1:-1;1428:1:4;:6;;;1422:13;;1288:164::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:22;-1:-1:-1;;;;;;88:32:22;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:22;1004:16;;997:27;774:258::o;1037:269::-;1090:3;1128:5;1122:12;1155:6;1150:3;1143:19;1171:63;1227:6;1220:4;1215:3;1211:14;1204:4;1197:5;1193:16;1171:63;:::i;:::-;1288:2;1267:15;-1:-1:-1;;1263:29:22;1254:39;;;;1295:4;1250:50;;1037:269;-1:-1:-1;;1037:269:22:o;1311:231::-;1460:2;1449:9;1442:21;1423:4;1480:56;1532:2;1521:9;1517:18;1509:6;1480:56;:::i;1547:180::-;1606:6;1659:2;1647:9;1638:7;1634:23;1630:32;1627:52;;;1675:1;1672;1665:12;1627:52;-1:-1:-1;1698:23:22;;1547:180;-1:-1:-1;1547:180:22:o;1940:173::-;2008:20;;-1:-1:-1;;;;;2057:31:22;;2047:42;;2037:70;;2103:1;2100;2093:12;2118:254;2186:6;2194;2247:2;2235:9;2226:7;2222:23;2218:32;2215:52;;;2263:1;2260;2253:12;2215:52;2286:29;2305:9;2286:29;:::i;:::-;2276:39;2362:2;2347:18;;;;2334:32;;-1:-1:-1;;;2118:254:22:o;2377:643::-;2546:2;2598:21;;;2668:13;;2571:18;;;2690:22;;;2517:4;;2546:2;2769:15;;;;2743:2;2728:18;;;2517:4;2812:182;2826:6;2823:1;2820:13;2812:182;;;2891:13;;2906:6;2887:26;2875:39;;2969:15;;;;2934:12;;;;2848:1;2841:9;2812:182;;;-1:-1:-1;3011:3:22;;2377:643;-1:-1:-1;;;;;;2377:643:22:o;3317:328::-;3394:6;3402;3410;3463:2;3451:9;3442:7;3438:23;3434:32;3431:52;;;3479:1;3476;3469:12;3431:52;3502:29;3521:9;3502:29;:::i;:::-;3492:39;;3550:38;3584:2;3573:9;3569:18;3550:38;:::i;:::-;3540:48;;3635:2;3624:9;3620:18;3607:32;3597:42;;3317:328;;;;;:::o;4285:156::-;4351:20;;4411:4;4400:16;;4390:27;;4380:55;;4431:1;4428;4421:12;4446:182;4503:6;4556:2;4544:9;4535:7;4531:23;4527:32;4524:52;;;4572:1;4569;4562:12;4524:52;4595:27;4612:9;4595:27;:::i;5049:186::-;5108:6;5161:2;5149:9;5140:7;5136:23;5132:32;5129:52;;;5177:1;5174;5167:12;5129:52;5200:29;5219:9;5200:29;:::i;5240:632::-;5411:2;5463:21;;;5533:13;;5436:18;;;5555:22;;;5382:4;;5411:2;5634:15;;;;5608:2;5593:18;;;5382:4;5677:169;5691:6;5688:1;5685:13;5677:169;;;5752:13;;5740:26;;5821:15;;;;5786:12;;;;5713:1;5706:9;5677:169;;5877:252;5941:6;5949;6002:2;5990:9;5981:7;5977:23;5973:32;5970:52;;;6018:1;6015;6008:12;5970:52;6041:27;6058:9;6041:27;:::i;:::-;6031:37;;6087:36;6119:2;6108:9;6104:18;6087:36;:::i;:::-;6077:46;;5877:252;;;;;:::o;6134:117::-;6219:6;6212:5;6208:18;6201:5;6198:29;6188:57;;6241:1;6238;6231:12;6256:319;6323:6;6331;6384:2;6372:9;6363:7;6359:23;6355:32;6352:52;;;6400:1;6397;6390:12;6352:52;6423:29;6442:9;6423:29;:::i;:::-;6413:39;;6502:2;6491:9;6487:18;6474:32;6515:30;6539:5;6515:30;:::i;:::-;6564:5;6554:15;;;6256:319;;;;;:::o;6969:118::-;7055:5;7048:13;7041:21;7034:5;7031:32;7021:60;;7077:1;7074;7067:12;7092:315;7157:6;7165;7218:2;7206:9;7197:7;7193:23;7189:32;7186:52;;;7234:1;7231;7224:12;7186:52;7257:29;7276:9;7257:29;:::i;:::-;7247:39;;7336:2;7325:9;7321:18;7308:32;7349:28;7371:5;7349:28;:::i;7412:315::-;7477:6;7485;7538:2;7526:9;7517:7;7513:23;7509:32;7506:52;;;7554:1;7551;7544:12;7506:52;7593:9;7580:23;7612:30;7636:5;7612:30;:::i;7732:127::-;7793:10;7788:3;7784:20;7781:1;7774:31;7824:4;7821:1;7814:15;7848:4;7845:1;7838:15;7864:275;7935:2;7929:9;8000:2;7981:13;;-1:-1:-1;;7977:27:22;7965:40;;8035:18;8020:34;;8056:22;;;8017:62;8014:88;;;8082:18;;:::i;:::-;8118:2;8111:22;7864:275;;-1:-1:-1;7864:275:22:o;8144:406::-;8208:5;8242:18;8234:6;8231:30;8228:56;;;8264:18;;:::i;:::-;8302:57;8347:2;8326:15;;-1:-1:-1;;8322:29:22;8353:4;8318:40;8302:57;:::i;:::-;8293:66;;8382:6;8375:5;8368:21;8422:3;8413:6;8408:3;8404:16;8401:25;8398:45;;;8439:1;8436;8429:12;8398:45;8488:6;8483:3;8476:4;8469:5;8465:16;8452:43;8542:1;8535:4;8526:6;8519:5;8515:18;8511:29;8504:40;8144:406;;;;;:::o;8555:666::-;8650:6;8658;8666;8674;8727:3;8715:9;8706:7;8702:23;8698:33;8695:53;;;8744:1;8741;8734:12;8695:53;8767:29;8786:9;8767:29;:::i;:::-;8757:39;;8815:38;8849:2;8838:9;8834:18;8815:38;:::i;:::-;8805:48;;8900:2;8889:9;8885:18;8872:32;8862:42;;8955:2;8944:9;8940:18;8927:32;8982:18;8974:6;8971:30;8968:50;;;9014:1;9011;9004:12;8968:50;9037:22;;9090:4;9082:13;;9078:27;-1:-1:-1;9068:55:22;;9119:1;9116;9109:12;9068:55;9142:73;9207:7;9202:2;9189:16;9184:2;9180;9176:11;9142:73;:::i;:::-;9132:83;;;8555:666;;;;;;;:::o;9226:450::-;9295:6;9348:2;9336:9;9327:7;9323:23;9319:32;9316:52;;;9364:1;9361;9354:12;9316:52;9404:9;9391:23;9437:18;9429:6;9426:30;9423:50;;;9469:1;9466;9459:12;9423:50;9492:22;;9545:4;9537:13;;9533:27;-1:-1:-1;9523:55:22;;9574:1;9571;9564:12;9523:55;9597:73;9662:7;9657:2;9644:16;9639:2;9635;9631:11;9597:73;:::i;10005:615::-;10091:6;10099;10152:2;10140:9;10131:7;10127:23;10123:32;10120:52;;;10168:1;10165;10158:12;10120:52;10208:9;10195:23;10237:18;10278:2;10270:6;10267:14;10264:34;;;10294:1;10291;10284:12;10264:34;10332:6;10321:9;10317:22;10307:32;;10377:7;10370:4;10366:2;10362:13;10358:27;10348:55;;10399:1;10396;10389:12;10348:55;10439:2;10426:16;10465:2;10457:6;10454:14;10451:34;;;10481:1;10478;10471:12;10451:34;10534:7;10529:2;10519:6;10516:1;10512:14;10508:2;10504:23;10500:32;10497:45;10494:65;;;10555:1;10552;10545:12;10494:65;10586:2;10578:11;;;;;10608:6;;-1:-1:-1;10005:615:22;;-1:-1:-1;;;;10005:615:22:o;10625:260::-;10693:6;10701;10754:2;10742:9;10733:7;10729:23;10725:32;10722:52;;;10770:1;10767;10760:12;10722:52;10793:29;10812:9;10793:29;:::i;:::-;10783:39;;10841:38;10875:2;10864:9;10860:18;10841:38;:::i;10890:380::-;10969:1;10965:12;;;;11012;;;11033:61;;11087:4;11079:6;11075:17;11065:27;;11033:61;11140:2;11132:6;11129:14;11109:18;11106:38;11103:161;;11186:10;11181:3;11177:20;11174:1;11167:31;11221:4;11218:1;11211:15;11249:4;11246:1;11239:15;11103:161;;10890:380;;;:::o;12524:354::-;12726:2;12708:21;;;12765:2;12745:18;;;12738:30;12804:32;12799:2;12784:18;;12777:60;12869:2;12854:18;;12524:354::o;13089:184::-;13159:6;13212:2;13200:9;13191:7;13187:23;13183:32;13180:52;;;13228:1;13225;13218:12;13180:52;-1:-1:-1;13251:16:22;;13089:184;-1:-1:-1;13089:184:22:o;13278:344::-;13480:2;13462:21;;;13519:2;13499:18;;;13492:30;-1:-1:-1;;;13553:2:22;13538:18;;13531:50;13613:2;13598:18;;13278:344::o;13627:355::-;13829:2;13811:21;;;13868:2;13848:18;;;13841:30;13907:33;13902:2;13887:18;;13880:61;13973:2;13958:18;;13627:355::o;13987:334::-;14189:2;14171:21;;;14228:2;14208:18;;;14201:30;-1:-1:-1;;;14262:2:22;14247:18;;14240:40;14312:2;14297:18;;13987:334::o;15317:416::-;15519:2;15501:21;;;15558:2;15538:18;;;15531:30;15597:34;15592:2;15577:18;;15570:62;-1:-1:-1;;;15663:2:22;15648:18;;15641:50;15723:3;15708:19;;15317:416::o;15738:349::-;15940:2;15922:21;;;15979:2;15959:18;;;15952:30;16018:27;16013:2;15998:18;;15991:55;16078:2;16063:18;;15738:349::o;16092:127::-;16153:10;16148:3;16144:20;16141:1;16134:31;16184:4;16181:1;16174:15;16208:4;16205:1;16198:15;16224:127;16285:10;16280:3;16276:20;16273:1;16266:31;16316:4;16313:1;16306:15;16340:4;16337:1;16330:15;16356:128;16396:3;16427:1;16423:6;16420:1;16417:13;16414:39;;;16433:18;;:::i;:::-;-1:-1:-1;16469:9:22;;16356:128::o;16834:135::-;16873:3;16894:17;;;16891:43;;16914:18;;:::i;:::-;-1:-1:-1;16961:1:22;16950:13;;16834:135::o;18092:125::-;18132:4;18160:1;18157;18154:8;18151:34;;;18165:18;;:::i;:::-;-1:-1:-1;18202:9:22;;18092:125::o;20248:204::-;20286:3;20322:4;20319:1;20315:12;20354:4;20351:1;20347:12;20389:3;20383:4;20379:14;20374:3;20371:23;20368:49;;;20397:18;;:::i;:::-;20433:13;;20248:204;-1:-1:-1;;;20248:204:22:o;20457:197::-;20495:3;20523:6;20564:2;20557:5;20553:14;20591:2;20582:7;20579:15;20576:41;;20597:18;;:::i;:::-;20646:1;20633:15;;20457:197;-1:-1:-1;;;20457:197:22:o;21757:175::-;21794:3;21838:4;21831:5;21827:16;21867:4;21858:7;21855:17;21852:43;;21875:18;;:::i;:::-;21924:1;21911:15;;21757:175;-1:-1:-1;;21757:175:22:o;22282:183::-;22342:4;22375:18;22367:6;22364:30;22361:56;;;22397:18;;:::i;:::-;-1:-1:-1;22442:1:22;22438:14;22454:4;22434:25;;22282:183::o;22470:1003::-;22571:6;22579;22632:2;22620:9;22611:7;22607:23;22603:32;22600:52;;;22648:1;22645;22638:12;22600:52;22680:9;22674:16;22699:28;22721:5;22699:28;:::i;:::-;22746:5;22736:15;;;22770:2;22816;22805:9;22801:18;22795:25;22843:18;22835:6;22832:30;22829:50;;;22875:1;22872;22865:12;22829:50;22898:22;;22951:4;22943:13;;22939:27;-1:-1:-1;22929:55:22;;22980:1;22977;22970:12;22929:55;23009:2;23003:9;23032:60;23048:43;23088:2;23048:43;:::i;:::-;23032:60;:::i;:::-;23126:15;;;23208:1;23204:10;;;;23196:19;;23192:28;;;23157:12;;;;23232:19;;;23229:39;;;23264:1;23261;23254:12;23229:39;23288:11;;;;23308:135;23324:6;23319:3;23316:15;23308:135;;;23390:10;;23378:23;;23341:12;;;;23421;;;;23308:135;;;23462:5;23452:15;;;;;;;22470:1003;;;;;:::o;23754:954::-;23848:6;23879:2;23922;23910:9;23901:7;23897:23;23893:32;23890:52;;;23938:1;23935;23928:12;23890:52;23971:9;23965:16;24004:18;23996:6;23993:30;23990:50;;;24036:1;24033;24026:12;23990:50;24059:22;;24112:4;24104:13;;24100:27;-1:-1:-1;24090:55:22;;24141:1;24138;24131:12;24090:55;24170:2;24164:9;24193:60;24209:43;24249:2;24209:43;:::i;24193:60::-;24287:15;;;24369:1;24365:10;;;;24357:19;;24353:28;;;24318:12;;;;24393:19;;;24390:39;;;24425:1;24422;24415:12;24390:39;24449:11;;;;24469:209;24485:6;24480:3;24477:15;24469:209;;;24558:3;24552:10;24575:30;24599:5;24575:30;:::i;:::-;24618:18;;24502:12;;;;24656;;;;24469:209;;;24697:5;23754:954;-1:-1:-1;;;;;;;23754:954:22:o;24713:127::-;24774:10;24769:3;24765:20;24762:1;24755:31;24805:4;24802:1;24795:15;24829:4;24826:1;24819:15;26592:226;26631:3;26659:8;26694:2;26691:1;26687:10;26724:2;26721:1;26717:10;26755:3;26751:2;26747:12;26742:3;26739:21;26736:47;;;26763:18;;:::i;:::-;26799:13;;26592:226;-1:-1:-1;;;;26592:226:22:o;27171:345::-;27373:2;27355:21;;;27412:2;27392:18;;;27385:30;-1:-1:-1;;;27446:2:22;27431:18;;27424:51;27507:2;27492:18;;27171:345::o;29628:185::-;29670:3;29708:5;29702:12;29723:52;29768:6;29763:3;29756:4;29749:5;29745:16;29723:52;:::i;:::-;29791:16;;;;;29628:185;-1:-1:-1;;29628:185:22:o;29818:449::-;30050:3;30088:6;30082:13;30104:53;30150:6;30145:3;30138:4;30130:6;30126:17;30104:53;:::i;:::-;-1:-1:-1;;;30179:16:22;;30204:27;;;-1:-1:-1;30258:2:22;30247:14;;29818:449;-1:-1:-1;29818:449:22:o;30272:260::-;30311:7;30343:8;30378:2;30375:1;30371:10;30408:2;30405:1;30401:10;30464:3;30460:2;30456:12;30451:3;30448:21;30441:3;30434:11;30427:19;30423:47;30420:73;;;30473:18;;:::i;:::-;30513:13;;30272:260;-1:-1:-1;;;;30272:260:22:o;30537:781::-;-1:-1:-1;;;30943:3:22;30936:28;30918:3;30993:6;30987:13;31009:62;31064:6;31059:2;31054:3;31050:12;31043:4;31035:6;31031:17;31009:62;:::i;:::-;-1:-1:-1;;;31130:2:22;31090:16;;;31122:11;;;31115:45;31185:13;;31207:63;31185:13;31256:2;31248:11;;31241:4;31229:17;;31207:63;:::i;:::-;31290:17;31309:2;31286:26;;30537:781;-1:-1:-1;;;;30537:781:22:o;31323:432::-;-1:-1:-1;;;31580:3:22;31573:28;31555:3;31630:6;31624:13;31646:62;31701:6;31696:2;31691:3;31687:12;31680:4;31672:6;31668:17;31646:62;:::i;:::-;31728:16;;;;31746:2;31724:25;;31323:432;-1:-1:-1;;31323:432:22:o;32360:2295::-;-1:-1:-1;;;33355:45:22;;33423:13;;33337:3;;33445:62;33423:13;33495:2;33486:12;;33479:4;33467:17;;33445:62;:::i;:::-;33571:66;33566:2;33526:16;;;33558:11;;;33551:87;-1:-1:-1;;;33662:2:22;33654:11;;33647:74;33746:13;;33768:63;33746:13;33817:2;33809:11;;33802:4;33790:17;;33768:63;:::i;:::-;33892:13;;33850:17;;;33914:63;33892:13;33963:2;33955:11;;33948:4;33936:17;;33914:63;:::i;:::-;34042:66;34037:2;33996:17;;;;34029:11;;;34022:87;34138:66;34133:2;34125:11;;34118:87;34235:66;34229:3;34221:12;;34214:88;34332:66;34326:3;34318:12;;34311:88;-1:-1:-1;;;34423:3:22;34415:12;;34408:44;34468:181;34498:150;34524:123;34549:97;34575:70;34605:39;34639:3;34631:12;;34623:6;34605:39;:::i;:::-;31837:66;31825:79;;-1:-1:-1;;;31929:2:22;31920:12;;31913:46;31984:2;31975:12;;31760:233;34575:70;34567:6;34549:97;:::i;:::-;32070:66;32058:79;;-1:-1:-1;;;32162:2:22;32153:12;;32146:39;32210:2;32201:12;;31998:221;34524:123;34516:6;34498:150;:::i;:::-;-1:-1:-1;;;32289:33:22;;32347:1;32338:11;;32224:131;34468:181;34461:188;32360:2295;-1:-1:-1;;;;;;;;;32360:2295:22:o;34660:448::-;34922:31;34917:3;34910:44;34892:3;34983:6;34977:13;34999:62;35054:6;35049:2;35044:3;35040:12;35033:4;35025:6;35021:17;34999:62;:::i;:::-;35081:16;;;;35099:2;35077:25;;34660:448;-1:-1:-1;;34660:448:22:o;38030:168::-;38070:7;38136:1;38132;38128:6;38124:14;38121:1;38118:21;38113:1;38106:9;38099:17;38095:45;38092:71;;;38143:18;;:::i;:::-;-1:-1:-1;38183:9:22;;38030:168::o;38203:217::-;38243:1;38269;38259:132;;38313:10;38308:3;38304:20;38301:1;38294:31;38348:4;38345:1;38338:15;38376:4;38373:1;38366:15;38259:132;-1:-1:-1;38405:9:22;;38203:217::o;39648:417::-;39850:2;39832:21;;;39889:2;39869:18;;;39862:30;39928:34;39923:2;39908:18;;39901:62;-1:-1:-1;;;39994:2:22;39979:18;;39972:51;40055:3;40040:19;;39648:417::o;40070:500::-;-1:-1:-1;;;;;40339:15:22;;;40321:34;;40391:15;;40386:2;40371:18;;40364:43;40438:2;40423:18;;40416:34;;;40486:3;40481:2;40466:18;;40459:31;;;40264:4;;40507:57;;40544:19;;40536:6;40507:57;:::i;:::-;40499:65;40070:500;-1:-1:-1;;;;;;40070:500:22:o;40575:249::-;40644:6;40697:2;40685:9;40676:7;40672:23;40668:32;40665:52;;;40713:1;40710;40703:12;40665:52;40745:9;40739:16;40764:30;40788:5;40764:30;:::i

Swarm Source

ipfs://51d709d01671e84e1171a5a5564d4b6383661afc072e354ef63f01e5ee215214
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.