ETH Price: $2,852.44 (-10.29%)
Gas: 14 Gwei

Token

TheEnigma (ENG)
 

Overview

Max Total Supply

8,000 ENG

Holders

244

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 ENG
0xc0c27d29ac68df3675ed3e5e24acc571e0dcc710
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

https://www.twitter.com/EnigmaECONOMY

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheEnigma

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 13 of 13: TheEnigma.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";

contract TheEnigma is ERC721 {
    event Mint(address indexed from, uint256 indexed tokenId);

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    modifier onlyCollaborator() {
        bool isCollaborator = false;
        for (uint256 i; i < collaborators.length; i++) {
            if (collaborators[i].addr == msg.sender) {
                isCollaborator = true;

                break;
            }
        }

        require(
            owner() == _msgSender() || isCollaborator,
            "Ownable: caller is not the owner nor a collaborator"
        );

        _;
    }

    modifier claimStarted() {
        require(
            startClaimDate != 0 && startClaimDate <= block.timestamp,
            "You are too early"
        );

        _;
    }

    modifier presaleStarted() {
        require(
            startPresaleDate != 0 && startPresaleDate <= block.timestamp,
            "Presale not started yet"
        );

        _;
    }

    modifier onlyWhitelisted() {
        require(whitelistedAddresses[msg.sender] == true, "You are not whitelisted for presale");

        _;
    }

    struct Collaborators {
        address addr;
        uint256 cut;
    }

    uint256 private startClaimDate = 1636912800;
    uint256 private startPresaleDate = 1636750800;
    uint256 private mintPrice = 140000000000000000;
    uint256 private presaleMintPrice = 70000000000000000;

    uint256 private totalTokens = 8000;
    uint256 private totalMintedTokens = 0;

    uint256 private maxMinerPerTransactionDuringPresale = 3;
    uint256 private maxMinerPerTransaction = 6;

    uint256 private maxMinerPerWalletDuringPresale = 3;
    uint256 private maxMinerPerWallet = 9;

    uint128 private basisPoints = 10000;
    string private baseURI =
        "https://enigmaminer.s3.amazonaws.com/";
    
    uint256 public giveawayCount = 200;
    bool public giveawayReservationComplete = false;
    
    uint256 public presaleLimit = 6300;
    uint256 public presaleMintedTokens = 0;

    mapping(address => uint256) private claimedMinerPerWallet;

    uint16[] availableMiners;
    Collaborators[] private collaborators;

    mapping (address => bool) whitelistedAddresses;

    constructor() ERC721("TheEnigma", "ENG") {}

    // ONLY OWNER

    /**
     * Sets the collaborators of the project with their cuts
     */
    function addCollaborators(Collaborators[] memory _collaborators)
        external
        onlyOwner
    {
        require(collaborators.length == 0, "Collaborators were already set");

        uint128 totalCut;
        for (uint256 i; i < _collaborators.length; i++) {
            collaborators.push(_collaborators[i]);
            totalCut += uint128(_collaborators[i].cut);
        }

        require(totalCut == basisPoints, "Total cut does not add to 100%");
    }

    // ONLY COLLABORATORS

    /**
     * @dev Allows to withdraw the Ether in the contract and split it among the collaborators
     */
    function withdraw() external onlyCollaborator {
        uint256 totalBalance = address(this).balance;

        for (uint256 i; i < collaborators.length; i++) {
            payable(collaborators[i].addr).transfer(
                mulScale(totalBalance, collaborators[i].cut, basisPoints)
            );
        }
    }

    /**
     * @dev Sets the base URI for the API that provides the NFT data.
     */
    function setBaseTokenURI(string memory _uri) external onlyCollaborator {
        baseURI = _uri;
    }

    /**
     * @dev Sets the claim price for each miner
     */
    function setMintPrice(uint256 _mintPrice) external onlyCollaborator {
        mintPrice = _mintPrice;
    }

    /**
     * @dev Sets the claim price for each miner
     */
    function setPresaleMintPrice(uint256 _presaleMintPrice) external onlyCollaborator {
        presaleMintPrice = _presaleMintPrice;
    }

    /**
     * @dev Populates the available miners
     */
    function addAvailableMiners(uint16 from, uint16 to)
        external
        onlyCollaborator
    {
        for (uint16 i = from; i <= to; i++) {
            availableMiners.push(i);
        }
    }

    /**
     * @dev Removes a chosen miner from the available list, only a utility function
     */
    function removeMinerFromAvailableMiners(uint16 tokenId)
        external
        onlyCollaborator
    {
        for (uint16 i; i <= availableMiners.length; i++) {
            if (availableMiners[i] != tokenId) {
                continue;
            }

            availableMiners[i] = availableMiners[availableMiners.length - 1];
            availableMiners.pop();

            break;
        }
    }

    /**
     * @dev Sets the date that users can start claiming miners
     */
    function setStartClaimDate(uint256 _startClaimDate)
        external
        onlyCollaborator
    {
        startClaimDate = _startClaimDate;
    }

    /**
     * @dev Sets the date that users can start claiming miners for presale
     */
    function setStartPresaleDate(uint256 _startPresaleDate)
        external
        onlyCollaborator
    {
        startPresaleDate = _startPresaleDate;
    }

    /**
     * @dev Sets the presale limit for presale
     */
    function setPresaleLimit(uint256 _presaleLimit)
        external
        onlyCollaborator
    {
        presaleLimit = _presaleLimit;
    }

    /**
     * @dev Checks if a miner is in the available list
     */
    function isMinerAvailable(uint16 tokenId)
        external
        view
        onlyCollaborator
        returns (bool)
    {
        for (uint16 i; i < availableMiners.length; i++) {
            if (availableMiners[i] == tokenId) {
                return true;
            }
        }

        return false;
    }


    /**
     * @dev Give random miners to the provided address
     */
    function reserveGiveawayMiners(address _address)
        external
        onlyCollaborator
    {
        require(availableMiners.length >= giveawayCount, "No miners left to be claimed");
        require(!giveawayReservationComplete, "Miners were already reserved for giveaways!");
        
        totalMintedTokens += giveawayCount;

        uint256[] memory tokenIds = new uint256[](giveawayCount);

        for (uint256 i; i < giveawayCount; i++) {
            tokenIds[i] = getMinerToBeClaimed();
        }

        _batchMint(_address, tokenIds);
        giveawayReservationComplete = true;
    }

    /**
    * @dev Whitelist addresses
     */
    function whitelistAddress (address[] memory users) external onlyCollaborator {
        for (uint i = 0; i < users.length; i++) {
            whitelistedAddresses[users[i]] = true;
        }
    }

    // END ONLY COLLABORATORS

    /**
     * @dev Claim a single Miner
     */
    function claimMiner() external payable callerIsUser claimStarted returns (uint256) {
        require(msg.value >= mintPrice, "Not enough Ether to claim a miner");

        require(availableMiners.length > 0, "Not enough miners left");

        require(availableMiners.length - giveawayCount > 0, "No miners left to be claimed");

        require(claimedMinerPerWallet[msg.sender] < maxMinerPerWallet, "You can only claim 9 miners per wallet");

        claimedMinerPerWallet[msg.sender]++;
        totalMintedTokens++;

        uint256 tokenId = getMinerToBeClaimed();

        _mint(msg.sender, tokenId);
        return tokenId;
    }

    /**
     * @dev Claim up to 6 miners at once
     */
    function claimMiners(uint256 quantity)
        external
        payable
        callerIsUser
        claimStarted
        returns (uint256[] memory)
    {
        require(
            msg.value >= mintPrice * quantity,
            "Not enough Ether to claim the Miners"
        );
        
        require(quantity <= maxMinerPerTransaction, "You can only claim 6 Miners per transaction");
        
        require(availableMiners.length >= quantity, "Not enough miners left");

        require(availableMiners.length - giveawayCount >= quantity, "No Miners left to be claimed");

        require(claimedMinerPerWallet[msg.sender] + quantity <= maxMinerPerWallet, "You can only claim 9 miners per wallet");

        uint256[] memory tokenIds = new uint256[](quantity);

        claimedMinerPerWallet[msg.sender] += quantity;
        totalMintedTokens += quantity;

        for (uint256 i; i < quantity; i++) {
            tokenIds[i] = getMinerToBeClaimed();
        }

        _batchMint(msg.sender, tokenIds);
        return tokenIds;
    }

    /**
     * @dev Claim up to 3 miners at once in presale
     */
    function presaleMintMiners(uint256 quantity)
        external
        payable
        callerIsUser
        presaleStarted
        onlyWhitelisted
        returns (uint256[] memory)
    {
        require(
            msg.value >= presaleMintPrice * quantity,
            "Not enough Ether to claim the Miners"
        );
        
        require(quantity <= maxMinerPerTransactionDuringPresale, "You can only claim 3 miners per transaction during presale");

        require(availableMiners.length >= quantity, "Not enough miners left");

        require(availableMiners.length - giveawayCount >= quantity, "No Miners left to be claimed");

        require(quantity + presaleMintedTokens <= presaleLimit, "No more miners left for presale");

        require(claimedMinerPerWallet[msg.sender] + quantity <= maxMinerPerWalletDuringPresale, "You can only claim 3 miners during presale");

        uint256[] memory tokenIds = new uint256[](quantity);

        claimedMinerPerWallet[msg.sender] += quantity;
        totalMintedTokens += quantity;
        presaleMintedTokens += quantity;

        for (uint256 i; i < quantity; i++) {
            tokenIds[i] = getMinerToBeClaimed();
        }

        _batchMint(msg.sender, tokenIds);
        return tokenIds;
    }

    /**
     * @dev Returns the tokenId by index
     */
    function tokenByIndex(uint256 tokenId) external view returns (uint256) {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );

        return tokenId;
    }

    /**
     * @dev Returns the base URI for the tokens API.
     */
    function baseTokenURI() external view returns (string memory) {
        return baseURI;
    }

    /**
     * @dev Returns how many Miners are still available to be claimed
     */
    function getAvailableMiners() external view returns (uint256) {
        return availableMiners.length;
    }

    /**
     * @dev Returns the claim price
     */
    function getmintPrice() external view returns (uint256) {
        return mintPrice;
    }

    /**
     * @dev Returns the total supply
     */
    function totalSupply() external view virtual returns (uint256) {
        return totalMintedTokens;
    }

    /**
     * @dev Returns the total minted tokens in presale
     */
    function totalPresaleMintCount() external view virtual returns (uint256) {
        return presaleMintedTokens;
    }

    // Private and Internal functions

    /**
     * @dev Returns a random available Miner to be claimed
     */
    function getMinerToBeClaimed() private returns (uint256) {
        uint256 random = _getRandomNumber(availableMiners.length);
        uint256 tokenId = uint256(availableMiners[random]);

        availableMiners[random] = availableMiners[availableMiners.length - 1];
        availableMiners.pop();

        return tokenId;
    }

    /**
     * @dev Generates a pseudo-random number.
     */
    function _getRandomNumber(uint256 _upper) private view returns (uint256) {
        uint256 random = uint256(
            keccak256(
                abi.encodePacked(
                    availableMiners.length,
                    blockhash(block.number - 1),
                    block.coinbase,
                    block.difficulty,
                    msg.sender
                )
            )
        );

        return random % _upper;
    }

    /**
     * @dev See {ERC721}.
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function mulScale(
        uint256 x,
        uint256 y,
        uint128 scale
    ) internal pure returns (uint256) {
        uint256 a = x / scale;
        uint256 b = x % scale;
        uint256 c = y / scale;
        uint256 d = y % scale;

        return a * c * scale + a * d + b * c + (b * d) / scale;
    }
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 13: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 3 of 13: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 13: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, Ownable {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Mapping owner address to token count
    mapping(address => uint256) internal _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    function _batchMint(address to, uint256[] memory tokenIds)
        internal
        virtual
    {
        require(to != address(0), "ERC721: mint to the zero address");
        _balances[to] += tokenIds.length;

        for (uint256 i; i < tokenIds.length; i++) {
            require(!_exists(tokenIds[i]), "ERC721: token already minted");

            _beforeTokenTransfer(address(0), to, tokenIds[i]);

            _owners[tokenIds[i]] = to;

            emit Transfer(address(0), to, tokenIds[i]);
        }
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     * 
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 5 of 13: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 6 of 13: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 7 of 13: IERC721.sol
// SPDX-License-Identifier: MIT

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

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

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

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

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

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

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

File 8 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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

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

File 9 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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

File 10 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

File 11 of 13: Ownable.sol
// SPDX-License-Identifier: MIT

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 12 of 13: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint16","name":"from","type":"uint16"},{"internalType":"uint16","name":"to","type":"uint16"}],"name":"addAvailableMiners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"cut","type":"uint256"}],"internalType":"struct TheEnigma.Collaborators[]","name":"_collaborators","type":"tuple[]"}],"name":"addCollaborators","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimMiner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"claimMiners","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAvailableMiners","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getmintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveawayCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giveawayReservationComplete","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"tokenId","type":"uint16"}],"name":"isMinerAvailable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"presaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"presaleMintMiners","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleMintedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"tokenId","type":"uint16"}],"name":"removeMinerFromAvailableMiners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"reserveGiveawayMiners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presaleLimit","type":"uint256"}],"name":"setPresaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presaleMintPrice","type":"uint256"}],"name":"setPresaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startClaimDate","type":"uint256"}],"name":"setStartClaimDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startPresaleDate","type":"uint256"}],"name":"setStartPresaleDate","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":"tokenId","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPresaleMintCount","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":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6361914ea060075563618ed5d06008556701f161421c8e0000600990815566f8b0a10e470000600a55611f40600b556000600c556003600d8190556006600e55600f55601055601180546001600160801b03191661271017905560e0604052602560808181529062003fc260a039805162000083916012916020909101906200017e565b5060c86013556014805460ff1916905561189c6015556000601655348015620000ab57600080fd5b5060405180604001604052806009815260200168546865456e69676d6160b81b81525060405180604001604052806003815260200162454e4760e81b8152506000620000fc6200017a60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200015b9060019060208501906200017e565b508051620001719060029060208401906200017e565b50505062000261565b3390565b8280546200018c9062000224565b90600052602060002090601f016020900481019282620001b05760008555620001fb565b82601f10620001cb57805160ff1916838001178555620001fb565b82800160010185558215620001fb579182015b82811115620001fb578251825591602001919060010190620001de565b50620002099291506200020d565b5090565b5b808211156200020957600081556001016200020e565b6002810460018216806200023957607f821691505b602082108114156200025b57634e487b7160e01b600052602260045260246000fd5b50919050565b613d5180620002716000396000f3fe6080604052600436106102515760003560e01c80636d44aef511610139578063b91fbe53116100b6578063e82942c51161007a578063e82942c514610679578063e985e9c514610699578063e9be0f3f146106b9578063f2fde38b146106ce578063f4a0a528146106ee578063fedc6ccc1461070e57610251565b8063b91fbe53146105fa578063be652c3c1461060f578063c87b56dd1461062f578063d16cd6031461064f578063d547cfb71461066457610251565b80638da5cb5b116100fd5780638da5cb5b1461057057806395d89b4114610585578063a22cb4651461059a578063b31d61b0146105ba578063b88d4fde146105da57610251565b80636d44aef5146104e657806370a0823114610506578063715018a6146105265780637fd255f11461053b5780638d4823541461055b57610251565b806323ab18f1116101d2578063403e03ab11610196578063403e03ab1461044957806342842e0e1461045e5780634f6ccce71461047e57806350b487541461049e578063525b3fe3146104b15780636352211e146104c657610251565b806323ab18f1146103b457806323b872dd146103d457806330176e13146103f457806337a13193146104145780633ccfd60b1461043457610251565b80630aad3a71116102195780630aad3a711461031d5780630d0b6b741461033f578063107810d91461035f57806318160ddd1461037f5780631edee5221461039457610251565b806301ffc9a71461025657806306fdde031461028c578063081812fc146102ae5780630955f63c146102db578063095ea7b3146102fd575b600080fd5b34801561026257600080fd5b50610276610271366004613030565b610716565b6040516102839190613235565b60405180910390f35b34801561029857600080fd5b506102a161075e565b6040516102839190613240565b3480156102ba57600080fd5b506102ce6102c93660046130f1565b6107f0565b60405161028391906131a0565b3480156102e757600080fd5b506102fb6102f6366004612f5b565b61083c565b005b34801561030957600080fd5b506102fb610318366004612e96565b610992565b34801561032957600080fd5b50610332610a2a565b6040516102839190613b33565b34801561034b57600080fd5b5061027661035a3660046130ae565b610a30565b61037261036d3660046130f1565b610b78565b60405161028391906131f1565b34801561038b57600080fd5b50610332610d95565b3480156103a057600080fd5b506102fb6103af3660046130c8565b610d9b565b3480156103c057600080fd5b506102fb6103cf3660046130f1565b610ed8565b3480156103e057600080fd5b506102fb6103ef366004612da8565b610f9a565b34801561040057600080fd5b506102fb61040f366004613068565b610fd2565b34801561042057600080fd5b506102fb61042f3660046130f1565b6110a1565b34801561044057600080fd5b506102fb611163565b34801561045557600080fd5b50610332611304565b34801561046a57600080fd5b506102fb610479366004612da8565b61130a565b34801561048a57600080fd5b506103326104993660046130f1565b611325565b6103726104ac3660046130f1565b611350565b3480156104bd57600080fd5b506103326115dd565b3480156104d257600080fd5b506102ce6104e13660046130f1565b6115e3565b3480156104f257600080fd5b506102fb6105013660046130f1565b611618565b34801561051257600080fd5b50610332610521366004612d5c565b6116da565b34801561053257600080fd5b506102fb61171e565b34801561054757600080fd5b506102fb6105563660046130f1565b6117a7565b34801561056757600080fd5b50610332611869565b34801561057c57600080fd5b506102ce61186f565b34801561059157600080fd5b506102a161187e565b3480156105a657600080fd5b506102fb6105b5366004612e5c565b61188d565b3480156105c657600080fd5b506102fb6105d5366004612ebf565b61195b565b3480156105e657600080fd5b506102fb6105f5366004612de3565b611a8d565b34801561060657600080fd5b50610332611ac6565b34801561061b57600080fd5b506102fb61062a366004612d5c565b611acc565b34801561063b57600080fd5b506102a161064a3660046130f1565b611caf565b34801561065b57600080fd5b50610276611d32565b34801561067057600080fd5b506102a1611d3b565b34801561068557600080fd5b506102fb6106943660046130ae565b611d4a565b3480156106a557600080fd5b506102766106b4366004612d76565b611f74565b3480156106c557600080fd5b50610332611fa2565b3480156106da57600080fd5b506102fb6106e9366004612d5c565b611fa8565b3480156106fa57600080fd5b506102fb6107093660046130f1565b612068565b61033261212a565b60006001600160e01b031982166380ac58cd60e01b148061074757506001600160e01b03198216635b5e139f60e01b145b8061075657506107568261226a565b90505b919050565b60606001805461076d90613c3a565b80601f016020809104026020016040519081016040528092919081815260200182805461079990613c3a565b80156107e65780601f106107bb576101008083540402835291602001916107e6565b820191906000526020600020905b8154815290600101906020018083116107c957829003601f168201915b5050505050905090565b60006107fb82612283565b6108205760405162461bcd60e51b815260040161081790613737565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6108446122a0565b6001600160a01b031661085561186f565b6001600160a01b03161461087b5760405162461bcd60e51b81526004016108179061380d565b6019541561089b5760405162461bcd60e51b81526004016108179061337f565b6000805b82518110156109605760198382815181106108ca57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151825460018082018555600094855293839020825160029092020180546001600160a01b0319166001600160a01b03909216919091178155910151910155825183908290811061093557634e487b7160e01b600052603260045260246000fd5b6020026020010151602001518261094c9190613b8a565b91508061095881613c91565b91505061089f565b506011546001600160801b0382811691161461098e5760405162461bcd60e51b8152600401610817906134b3565b5050565b600061099d826115e3565b9050806001600160a01b0316836001600160a01b031614156109d15760405162461bcd60e51b8152600401610817906139a7565b806001600160a01b03166109e36122a0565b6001600160a01b031614806109ff57506109ff816106b46122a0565b610a1b5760405162461bcd60e51b8152600401610817906135b7565b610a2583836122a4565b505050565b60165481565b600080805b601954811015610aa557336001600160a01b031660198281548110610a6a57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610a935760019150610aa5565b80610a9d81613c91565b915050610a35565b50610aae6122a0565b6001600160a01b0316610abf61186f565b6001600160a01b03161480610ad15750805b610aed5760405162461bcd60e51b815260040161081790613954565b60005b60185461ffff82161015610b6c578361ffff1660188261ffff1681548110610b2857634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff161415610b5a576001925050610b72565b80610b6481613c6f565b915050610af0565b50600091505b50919050565b6060323314610b995760405162461bcd60e51b815260040161081790613580565b60075415801590610bac57504260075411155b610bc85760405162461bcd60e51b815260040161081790613644565b81600954610bd69190613bd8565b341015610bf55760405162461bcd60e51b815260040161081790613783565b600e54821115610c175760405162461bcd60e51b8152600401610817906133b6565b601854821115610c395760405162461bcd60e51b815260040161081790613614565b6013546018548391610c4a91613bf7565b1015610c685760405162461bcd60e51b81526004016108179061347c565b60105433600090815260176020526040902054610c86908490613bac565b1115610ca45760405162461bcd60e51b8152600401610817906137c7565b60008267ffffffffffffffff811115610ccd57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610cf6578160200160208202803683370190505b5033600090815260176020526040812080549293508592909190610d1b908490613bac565b9250508190555082600c6000828254610d349190613bac565b90915550600090505b83811015610d8a57610d4d612312565b828281518110610d6d57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d8281613c91565b915050610d3d565b506107563382612469565b600c5490565b6000805b601954811015610e0f57336001600160a01b031660198281548110610dd457634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610dfd5760019150610e0f565b80610e0781613c91565b915050610d9f565b50610e186122a0565b6001600160a01b0316610e2961186f565b6001600160a01b03161480610e3b5750805b610e575760405162461bcd60e51b815260040161081790613954565b825b8261ffff168161ffff1611610ed257601880546001810182556000919091527fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e60108204018054600f9092166002026101000a61ffff818102199093169284160291909117905580610eca81613c6f565b915050610e59565b50505050565b6000805b601954811015610f4c57336001600160a01b031660198281548110610f1157634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610f3a5760019150610f4c565b80610f4481613c91565b915050610edc565b50610f556122a0565b6001600160a01b0316610f6661186f565b6001600160a01b03161480610f785750805b610f945760405162461bcd60e51b815260040161081790613954565b50600755565b610fab610fa56122a0565b82612625565b610fc75760405162461bcd60e51b815260040161081790613a56565b610a258383836126aa565b6000805b60195481101561104657336001600160a01b03166019828154811061100b57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156110345760019150611046565b8061103e81613c91565b915050610fd6565b5061104f6122a0565b6001600160a01b031661106061186f565b6001600160a01b031614806110725750805b61108e5760405162461bcd60e51b815260040161081790613954565b8151610a25906012906020850190612c4b565b6000805b60195481101561111557336001600160a01b0316601982815481106110da57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156111035760019150611115565b8061110d81613c91565b9150506110a5565b5061111e6122a0565b6001600160a01b031661112f61186f565b6001600160a01b031614806111415750805b61115d5760405162461bcd60e51b815260040161081790613954565b50600a55565b6000805b6019548110156111d757336001600160a01b03166019828154811061119c57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156111c557600191506111d7565b806111cf81613c91565b915050611167565b506111e06122a0565b6001600160a01b03166111f161186f565b6001600160a01b031614806112035750805b61121f5760405162461bcd60e51b815260040161081790613954565b4760005b601954811015610a25576019818154811061124e57634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020160000160009054906101000a90046001600160a01b03166001600160a01b03166108fc6112c984601985815481106112a457634e487b7160e01b600052603260045260246000fd5b60009182526020909120600160029092020101546011546001600160801b03166127d7565b6040518115909202916000818181858888f193505050501580156112f1573d6000803e3d6000fd5b50806112fc81613c91565b915050611223565b60165490565b610a2583838360405180602001604052806000815250611a8d565b600061133082612283565b61134c5760405162461bcd60e51b815260040161081790613534565b5090565b60603233146113715760405162461bcd60e51b815260040161081790613580565b6008541580159061138457504260085411155b6113a05760405162461bcd60e51b8152600401610817906138da565b336000908152601a602052604090205460ff1615156001146113d45760405162461bcd60e51b815260040161081790613911565b81600a546113e29190613bd8565b3410156114015760405162461bcd60e51b815260040161081790613783565b600d548211156114235760405162461bcd60e51b815260040161081790613253565b6018548211156114455760405162461bcd60e51b815260040161081790613614565b601354601854839161145691613bf7565b10156114745760405162461bcd60e51b81526004016108179061347c565b6015546016546114849084613bac565b11156114a25760405162461bcd60e51b815260040161081790613a1f565b600f54336000908152601760205260409020546114c0908490613bac565b11156114de5760405162461bcd60e51b8152600401610817906134ea565b60008267ffffffffffffffff81111561150757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611530578160200160208202803683370190505b5033600090815260176020526040812080549293508592909190611555908490613bac565b9250508190555082600c600082825461156e9190613bac565b9250508190555082601660008282546115879190613bac565b90915550600090505b83811015610d8a576115a0612312565b8282815181106115c057634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806115d581613c91565b915050611590565b60155481565b6000818152600360205260408120546001600160a01b0316806107565760405162461bcd60e51b8152600401610817906136b9565b6000805b60195481101561168c57336001600160a01b03166019828154811061165157634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b0316141561167a576001915061168c565b8061168481613c91565b91505061161c565b506116956122a0565b6001600160a01b03166116a661186f565b6001600160a01b031614806116b85750805b6116d45760405162461bcd60e51b815260040161081790613954565b50600855565b60006001600160a01b0382166117025760405162461bcd60e51b81526004016108179061366f565b506001600160a01b031660009081526004602052604090205490565b6117266122a0565b6001600160a01b031661173761186f565b6001600160a01b03161461175d5760405162461bcd60e51b81526004016108179061380d565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000805b60195481101561181b57336001600160a01b0316601982815481106117e057634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415611809576001915061181b565b8061181381613c91565b9150506117ab565b506118246122a0565b6001600160a01b031661183561186f565b6001600160a01b031614806118475750805b6118635760405162461bcd60e51b815260040161081790613954565b50601555565b60095490565b6000546001600160a01b031690565b60606002805461076d90613c3a565b6118956122a0565b6001600160a01b0316826001600160a01b031614156118c65760405162461bcd60e51b815260040161081790613445565b80600660006118d36122a0565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556119176122a0565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161194f9190613235565b60405180910390a35050565b6000805b6019548110156119cf57336001600160a01b03166019828154811061199457634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156119bd57600191506119cf565b806119c781613c91565b91505061195f565b506119d86122a0565b6001600160a01b03166119e961186f565b6001600160a01b031614806119fb5750805b611a175760405162461bcd60e51b815260040161081790613954565b60005b8251811015610a25576001601a6000858481518110611a4957634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611a8581613c91565b915050611a1a565b611a9e611a986122a0565b83612625565b611aba5760405162461bcd60e51b815260040161081790613a56565b610ed2848484846128ae565b60185490565b6000805b601954811015611b4057336001600160a01b031660198281548110611b0557634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415611b2e5760019150611b40565b80611b3881613c91565b915050611ad0565b50611b496122a0565b6001600160a01b0316611b5a61186f565b6001600160a01b03161480611b6c5750805b611b885760405162461bcd60e51b815260040161081790613954565b6013546018541015611bac5760405162461bcd60e51b8152600401610817906139e8565b60145460ff1615611bcf5760405162461bcd60e51b815260040161081790613ae8565b601354600c6000828254611be39190613bac565b909155505060135460009067ffffffffffffffff811115611c1457634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611c3d578160200160208202803683370190505b50905060005b601354811015611c9257611c55612312565b828281518110611c7557634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611c8a81613c91565b915050611c43565b50611c9d8382612469565b50506014805460ff1916600117905550565b6060611cba82612283565b611cd65760405162461bcd60e51b81526004016108179061388b565b6000611ce0611d3b565b90506000815111611d005760405180602001604052806000815250611d2b565b80611d0a846128e1565b604051602001611d1b929190613135565b6040516020818303038152906040525b9392505050565b60145460ff1681565b60606012805461076d90613c3a565b6000805b601954811015611dbe57336001600160a01b031660198281548110611d8357634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415611dac5760019150611dbe565b80611db681613c91565b915050611d4e565b50611dc76122a0565b6001600160a01b0316611dd861186f565b6001600160a01b03161480611dea5750805b611e065760405162461bcd60e51b815260040161081790613954565b60005b60185461ffff821611610a25578261ffff1660188261ffff1681548110611e4057634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff1614611e6c57611f62565b60188054611e7c90600190613bf7565b81548110611e9a57634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1660188261ffff1681548110611ee357634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506018805480611f3157634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a02191690559055610a25565b80611f6c81613c6f565b915050611e09565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60135481565b611fb06122a0565b6001600160a01b0316611fc161186f565b6001600160a01b031614611fe75760405162461bcd60e51b81526004016108179061380d565b6001600160a01b03811661200d5760405162461bcd60e51b815260040161081790613302565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000805b6019548110156120dc57336001600160a01b0316601982815481106120a157634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156120ca57600191506120dc565b806120d481613c91565b91505061206c565b506120e56122a0565b6001600160a01b03166120f661186f565b6001600160a01b031614806121085750805b6121245760405162461bcd60e51b815260040161081790613954565b50600955565b600032331461214b5760405162461bcd60e51b815260040161081790613580565b6007541580159061215e57504260075411155b61217a5760405162461bcd60e51b815260040161081790613644565b60095434101561219c5760405162461bcd60e51b815260040161081790613aa7565b6018546121bb5760405162461bcd60e51b815260040161081790613614565b6013546018546000916121cd91613bf7565b116121ea5760405162461bcd60e51b8152600401610817906139e8565b601054336000908152601760205260409020541061221a5760405162461bcd60e51b8152600401610817906137c7565b33600090815260176020526040812080549161223583613c91565b9091555050600c805490600061224a83613c91565b91905055506000612259612312565b905061226533826129fc565b905090565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122d9826115e3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612323601880549050612adb565b905060006018828154811061234857634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169050601860016018805490506123869190613bf7565b815481106123a457634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff16601883815481106123e957634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550601880548061243757634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905591505090565b6001600160a01b03821661248f5760405162461bcd60e51b815260040161081790613702565b80516001600160a01b038316600090815260046020526040812080549091906124b9908490613bac565b90915550600090505b8151811015610a25576124fb8282815181106124ee57634e487b7160e01b600052603260045260246000fd5b6020026020010151612283565b156125185760405162461bcd60e51b815260040161081790613348565b61254b60008484848151811061253e57634e487b7160e01b600052603260045260246000fd5b6020026020010151610a25565b826003600084848151811061257057634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508181815181106125ca57634e487b7160e01b600052603260045260246000fd5b6020026020010151836001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48061261d81613c91565b9150506124c2565b600061263082612283565b61264c5760405162461bcd60e51b815260040161081790613534565b6000612657836115e3565b9050806001600160a01b0316846001600160a01b031614806126925750836001600160a01b0316612687846107f0565b6001600160a01b0316145b806126a257506126a28185611f74565b949350505050565b826001600160a01b03166126bd826115e3565b6001600160a01b0316146126e35760405162461bcd60e51b815260040161081790613842565b6001600160a01b0382166127095760405162461bcd60e51b815260040161081790613401565b612714838383610a25565b61271f6000826122a4565b6001600160a01b0383166000908152600460205260408120805460019290612748908490613bf7565b90915550506001600160a01b0382166000908152600460205260408120805460019290612776908490613bac565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806127ed6001600160801b03841686613bc4565b905060006128046001600160801b03851687613cac565b9050600061281b6001600160801b03861687613bc4565b905060006128326001600160801b03871688613cac565b90506001600160801b0386166128488285613bd8565b6128529190613bc4565b61285c8385613bd8565b6128668387613bd8565b6001600160801b03891661287a8689613bd8565b6128849190613bd8565b61288e9190613bac565b6128989190613bac565b6128a29190613bac565b98975050505050505050565b6128b98484846126aa565b6128c584848484612b2a565b610ed25760405162461bcd60e51b8152600401610817906132b0565b60608161290657506040805180820190915260018152600360fc1b6020820152610759565b8160005b8115612930578061291a81613c91565b91506129299050600a83613bc4565b915061290a565b60008167ffffffffffffffff81111561295957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612983576020820181803683370190505b5090505b84156126a257612998600183613bf7565b91506129a5600a86613cac565b6129b0906030613bac565b60f81b8183815181106129d357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506129f5600a86613bc4565b9450612987565b6001600160a01b038216612a225760405162461bcd60e51b815260040161081790613702565b612a2b81612283565b15612a485760405162461bcd60e51b815260040161081790613348565b612a5460008383610a25565b6001600160a01b0382166000908152600460205260408120805460019290612a7d908490613bac565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6018546000908190612aee600143613bf7565b40414433604051602001612b06959493929190613164565b60408051601f1981840301815291905280516020909101209050611d2b8382613cac565b6000612b3e846001600160a01b0316612c45565b15612c3a57836001600160a01b031663150b7a02612b5a6122a0565b8786866040518563ffffffff1660e01b8152600401612b7c94939291906131b4565b602060405180830381600087803b158015612b9657600080fd5b505af1925050508015612bc6575060408051601f3d908101601f19168201909252612bc39181019061304c565b60015b612c20573d808015612bf4576040519150601f19603f3d011682016040523d82523d6000602084013e612bf9565b606091505b508051612c185760405162461bcd60e51b8152600401610817906132b0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506126a2565b506001949350505050565b3b151590565b828054612c5790613c3a565b90600052602060002090601f016020900481019282612c795760008555612cbf565b82601f10612c9257805160ff1916838001178555612cbf565b82800160010185558215612cbf579182015b82811115612cbf578251825591602001919060010190612ca4565b5061134c9291505b8082111561134c5760008155600101612cc7565b600067ffffffffffffffff831115612cf557612cf5613cec565b612d08601f8401601f1916602001613b3c565b9050828152838383011115612d1c57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461075957600080fd5b803561ffff8116811461075957600080fd5b600060208284031215612d6d578081fd5b611d2b82612d33565b60008060408385031215612d88578081fd5b612d9183612d33565b9150612d9f60208401612d33565b90509250929050565b600080600060608486031215612dbc578081fd5b612dc584612d33565b9250612dd360208501612d33565b9150604084013590509250925092565b60008060008060808587031215612df8578081fd5b612e0185612d33565b9350612e0f60208601612d33565b925060408501359150606085013567ffffffffffffffff811115612e31578182fd5b8501601f81018713612e41578182fd5b612e5087823560208401612cdb565b91505092959194509250565b60008060408385031215612e6e578182fd5b612e7783612d33565b915060208301358015158114612e8b578182fd5b809150509250929050565b60008060408385031215612ea8578182fd5b612eb183612d33565b946020939093013593505050565b60006020808385031215612ed1578182fd5b823567ffffffffffffffff811115612ee7578283fd5b8301601f81018513612ef7578283fd5b8035612f0a612f0582613b66565b613b3c565b8181528381019083850185840285018601891015612f26578687fd5b8694505b83851015612f4f57612f3b81612d33565b835260019490940193918501918501612f2a565b50979650505050505050565b60006020808385031215612f6d578182fd5b823567ffffffffffffffff80821115612f84578384fd5b818501915085601f830112612f97578384fd5b8135612fa5612f0582613b66565b818152848101908486016040808502870188018b1015612fc3578889fd5b8896505b848710156130215780828c031215612fdd578889fd5b80518181018181108882111715612ff657612ff6613cec565b825261300183612d33565b815282890135898201528452600196909601959287019290810190612fc7565b50909998505050505050505050565b600060208284031215613041578081fd5b8135611d2b81613d02565b60006020828403121561305d578081fd5b8151611d2b81613d02565b600060208284031215613079578081fd5b813567ffffffffffffffff81111561308f578182fd5b8201601f8101841361309f578182fd5b6126a284823560208401612cdb565b6000602082840312156130bf578081fd5b611d2b82612d4a565b600080604083850312156130da578182fd5b6130e383612d4a565b9150612d9f60208401612d4a565b600060208284031215613102578081fd5b5035919050565b60008151808452613121816020860160208601613c0e565b601f01601f19169290920160200192915050565b60008351613147818460208801613c0e565b83519083019061315b818360208801613c0e565b01949350505050565b94855260208501939093526bffffffffffffffffffffffff19606092831b81166040860152605485019190915291901b16607482015260880190565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131e790830184613109565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156132295783518352928401929184019160010161320d565b50909695505050505050565b901515815260200190565b600060208252611d2b6020830184613109565b6020808252603a908201527f596f752063616e206f6e6c7920636c61696d2033206d696e657273207065722060408201527f7472616e73616374696f6e20647572696e672070726573616c65000000000000606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601e908201527f436f6c6c61626f7261746f7273207765726520616c7265616479207365740000604082015260600190565b6020808252602b908201527f596f752063616e206f6e6c7920636c61696d2036204d696e657273207065722060408201526a3a3930b739b0b1ba34b7b760a91b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601c908201527f4e6f204d696e657273206c65667420746f20626520636c61696d656400000000604082015260600190565b6020808252601e908201527f546f74616c2063757420646f6573206e6f742061646420746f20313030250000604082015260600190565b6020808252602a908201527f596f752063616e206f6e6c7920636c61696d2033206d696e65727320647572696040820152696e672070726573616c6560b01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b602080825260169082015275139bdd08195b9bdd59da081b5a5b995c9cc81b19599d60521b604082015260600190565b602080825260119082015270596f752061726520746f6f206561726c7960781b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526024908201527f4e6f7420656e6f75676820457468657220746f20636c61696d20746865204d696040820152636e65727360e01b606082015260800190565b60208082526026908201527f596f752063616e206f6e6c7920636c61696d2039206d696e65727320706572206040820152651dd85b1b195d60d21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526017908201527f50726573616c65206e6f74207374617274656420796574000000000000000000604082015260600190565b60208082526023908201527f596f7520617265206e6f742077686974656c697374656420666f722070726573604082015262616c6560e81b606082015260800190565b60208082526033908201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015272103737b910309031b7b63630b137b930ba37b960691b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601c908201527f4e6f206d696e657273206c65667420746f20626520636c61696d656400000000604082015260600190565b6020808252601f908201527f4e6f206d6f7265206d696e657273206c65667420666f722070726573616c6500604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f4e6f7420656e6f75676820457468657220746f20636c61696d2061206d696e656040820152603960f91b606082015260800190565b6020808252602b908201527f4d696e657273207765726520616c726561647920726573657276656420666f7260408201526a206769766561776179732160a81b606082015260800190565b90815260200190565b60405181810167ffffffffffffffff81118282101715613b5e57613b5e613cec565b604052919050565b600067ffffffffffffffff821115613b8057613b80613cec565b5060209081020190565b60006001600160801b0380831681851680830382111561315b5761315b613cc0565b60008219821115613bbf57613bbf613cc0565b500190565b600082613bd357613bd3613cd6565b500490565b6000816000190483118215151615613bf257613bf2613cc0565b500290565b600082821015613c0957613c09613cc0565b500390565b60005b83811015613c29578181015183820152602001613c11565b83811115610ed25750506000910152565b600281046001821680613c4e57607f821691505b60208210811415610b7257634e487b7160e01b600052602260045260246000fd5b600061ffff80831681811415613c8757613c87613cc0565b6001019392505050565b6000600019821415613ca557613ca5613cc0565b5060010190565b600082613cbb57613cbb613cd6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114613d1857600080fd5b5056fea2646970667358221220f5548e2129524c7885d198ecb0aabe4b27cfec09f7d748952009520ee6d7ff0164736f6c6343000800003368747470733a2f2f656e69676d616d696e65722e73332e616d617a6f6e6177732e636f6d2f

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636d44aef511610139578063b91fbe53116100b6578063e82942c51161007a578063e82942c514610679578063e985e9c514610699578063e9be0f3f146106b9578063f2fde38b146106ce578063f4a0a528146106ee578063fedc6ccc1461070e57610251565b8063b91fbe53146105fa578063be652c3c1461060f578063c87b56dd1461062f578063d16cd6031461064f578063d547cfb71461066457610251565b80638da5cb5b116100fd5780638da5cb5b1461057057806395d89b4114610585578063a22cb4651461059a578063b31d61b0146105ba578063b88d4fde146105da57610251565b80636d44aef5146104e657806370a0823114610506578063715018a6146105265780637fd255f11461053b5780638d4823541461055b57610251565b806323ab18f1116101d2578063403e03ab11610196578063403e03ab1461044957806342842e0e1461045e5780634f6ccce71461047e57806350b487541461049e578063525b3fe3146104b15780636352211e146104c657610251565b806323ab18f1146103b457806323b872dd146103d457806330176e13146103f457806337a13193146104145780633ccfd60b1461043457610251565b80630aad3a71116102195780630aad3a711461031d5780630d0b6b741461033f578063107810d91461035f57806318160ddd1461037f5780631edee5221461039457610251565b806301ffc9a71461025657806306fdde031461028c578063081812fc146102ae5780630955f63c146102db578063095ea7b3146102fd575b600080fd5b34801561026257600080fd5b50610276610271366004613030565b610716565b6040516102839190613235565b60405180910390f35b34801561029857600080fd5b506102a161075e565b6040516102839190613240565b3480156102ba57600080fd5b506102ce6102c93660046130f1565b6107f0565b60405161028391906131a0565b3480156102e757600080fd5b506102fb6102f6366004612f5b565b61083c565b005b34801561030957600080fd5b506102fb610318366004612e96565b610992565b34801561032957600080fd5b50610332610a2a565b6040516102839190613b33565b34801561034b57600080fd5b5061027661035a3660046130ae565b610a30565b61037261036d3660046130f1565b610b78565b60405161028391906131f1565b34801561038b57600080fd5b50610332610d95565b3480156103a057600080fd5b506102fb6103af3660046130c8565b610d9b565b3480156103c057600080fd5b506102fb6103cf3660046130f1565b610ed8565b3480156103e057600080fd5b506102fb6103ef366004612da8565b610f9a565b34801561040057600080fd5b506102fb61040f366004613068565b610fd2565b34801561042057600080fd5b506102fb61042f3660046130f1565b6110a1565b34801561044057600080fd5b506102fb611163565b34801561045557600080fd5b50610332611304565b34801561046a57600080fd5b506102fb610479366004612da8565b61130a565b34801561048a57600080fd5b506103326104993660046130f1565b611325565b6103726104ac3660046130f1565b611350565b3480156104bd57600080fd5b506103326115dd565b3480156104d257600080fd5b506102ce6104e13660046130f1565b6115e3565b3480156104f257600080fd5b506102fb6105013660046130f1565b611618565b34801561051257600080fd5b50610332610521366004612d5c565b6116da565b34801561053257600080fd5b506102fb61171e565b34801561054757600080fd5b506102fb6105563660046130f1565b6117a7565b34801561056757600080fd5b50610332611869565b34801561057c57600080fd5b506102ce61186f565b34801561059157600080fd5b506102a161187e565b3480156105a657600080fd5b506102fb6105b5366004612e5c565b61188d565b3480156105c657600080fd5b506102fb6105d5366004612ebf565b61195b565b3480156105e657600080fd5b506102fb6105f5366004612de3565b611a8d565b34801561060657600080fd5b50610332611ac6565b34801561061b57600080fd5b506102fb61062a366004612d5c565b611acc565b34801561063b57600080fd5b506102a161064a3660046130f1565b611caf565b34801561065b57600080fd5b50610276611d32565b34801561067057600080fd5b506102a1611d3b565b34801561068557600080fd5b506102fb6106943660046130ae565b611d4a565b3480156106a557600080fd5b506102766106b4366004612d76565b611f74565b3480156106c557600080fd5b50610332611fa2565b3480156106da57600080fd5b506102fb6106e9366004612d5c565b611fa8565b3480156106fa57600080fd5b506102fb6107093660046130f1565b612068565b61033261212a565b60006001600160e01b031982166380ac58cd60e01b148061074757506001600160e01b03198216635b5e139f60e01b145b8061075657506107568261226a565b90505b919050565b60606001805461076d90613c3a565b80601f016020809104026020016040519081016040528092919081815260200182805461079990613c3a565b80156107e65780601f106107bb576101008083540402835291602001916107e6565b820191906000526020600020905b8154815290600101906020018083116107c957829003601f168201915b5050505050905090565b60006107fb82612283565b6108205760405162461bcd60e51b815260040161081790613737565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6108446122a0565b6001600160a01b031661085561186f565b6001600160a01b03161461087b5760405162461bcd60e51b81526004016108179061380d565b6019541561089b5760405162461bcd60e51b81526004016108179061337f565b6000805b82518110156109605760198382815181106108ca57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151825460018082018555600094855293839020825160029092020180546001600160a01b0319166001600160a01b03909216919091178155910151910155825183908290811061093557634e487b7160e01b600052603260045260246000fd5b6020026020010151602001518261094c9190613b8a565b91508061095881613c91565b91505061089f565b506011546001600160801b0382811691161461098e5760405162461bcd60e51b8152600401610817906134b3565b5050565b600061099d826115e3565b9050806001600160a01b0316836001600160a01b031614156109d15760405162461bcd60e51b8152600401610817906139a7565b806001600160a01b03166109e36122a0565b6001600160a01b031614806109ff57506109ff816106b46122a0565b610a1b5760405162461bcd60e51b8152600401610817906135b7565b610a2583836122a4565b505050565b60165481565b600080805b601954811015610aa557336001600160a01b031660198281548110610a6a57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610a935760019150610aa5565b80610a9d81613c91565b915050610a35565b50610aae6122a0565b6001600160a01b0316610abf61186f565b6001600160a01b03161480610ad15750805b610aed5760405162461bcd60e51b815260040161081790613954565b60005b60185461ffff82161015610b6c578361ffff1660188261ffff1681548110610b2857634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff161415610b5a576001925050610b72565b80610b6481613c6f565b915050610af0565b50600091505b50919050565b6060323314610b995760405162461bcd60e51b815260040161081790613580565b60075415801590610bac57504260075411155b610bc85760405162461bcd60e51b815260040161081790613644565b81600954610bd69190613bd8565b341015610bf55760405162461bcd60e51b815260040161081790613783565b600e54821115610c175760405162461bcd60e51b8152600401610817906133b6565b601854821115610c395760405162461bcd60e51b815260040161081790613614565b6013546018548391610c4a91613bf7565b1015610c685760405162461bcd60e51b81526004016108179061347c565b60105433600090815260176020526040902054610c86908490613bac565b1115610ca45760405162461bcd60e51b8152600401610817906137c7565b60008267ffffffffffffffff811115610ccd57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610cf6578160200160208202803683370190505b5033600090815260176020526040812080549293508592909190610d1b908490613bac565b9250508190555082600c6000828254610d349190613bac565b90915550600090505b83811015610d8a57610d4d612312565b828281518110610d6d57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d8281613c91565b915050610d3d565b506107563382612469565b600c5490565b6000805b601954811015610e0f57336001600160a01b031660198281548110610dd457634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610dfd5760019150610e0f565b80610e0781613c91565b915050610d9f565b50610e186122a0565b6001600160a01b0316610e2961186f565b6001600160a01b03161480610e3b5750805b610e575760405162461bcd60e51b815260040161081790613954565b825b8261ffff168161ffff1611610ed257601880546001810182556000919091527fb13d2d76d1f4b7be834882e410b3e3a8afaf69f83600ae24db354391d2378d2e60108204018054600f9092166002026101000a61ffff818102199093169284160291909117905580610eca81613c6f565b915050610e59565b50505050565b6000805b601954811015610f4c57336001600160a01b031660198281548110610f1157634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415610f3a5760019150610f4c565b80610f4481613c91565b915050610edc565b50610f556122a0565b6001600160a01b0316610f6661186f565b6001600160a01b03161480610f785750805b610f945760405162461bcd60e51b815260040161081790613954565b50600755565b610fab610fa56122a0565b82612625565b610fc75760405162461bcd60e51b815260040161081790613a56565b610a258383836126aa565b6000805b60195481101561104657336001600160a01b03166019828154811061100b57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156110345760019150611046565b8061103e81613c91565b915050610fd6565b5061104f6122a0565b6001600160a01b031661106061186f565b6001600160a01b031614806110725750805b61108e5760405162461bcd60e51b815260040161081790613954565b8151610a25906012906020850190612c4b565b6000805b60195481101561111557336001600160a01b0316601982815481106110da57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156111035760019150611115565b8061110d81613c91565b9150506110a5565b5061111e6122a0565b6001600160a01b031661112f61186f565b6001600160a01b031614806111415750805b61115d5760405162461bcd60e51b815260040161081790613954565b50600a55565b6000805b6019548110156111d757336001600160a01b03166019828154811061119c57634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156111c557600191506111d7565b806111cf81613c91565b915050611167565b506111e06122a0565b6001600160a01b03166111f161186f565b6001600160a01b031614806112035750805b61121f5760405162461bcd60e51b815260040161081790613954565b4760005b601954811015610a25576019818154811061124e57634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020160000160009054906101000a90046001600160a01b03166001600160a01b03166108fc6112c984601985815481106112a457634e487b7160e01b600052603260045260246000fd5b60009182526020909120600160029092020101546011546001600160801b03166127d7565b6040518115909202916000818181858888f193505050501580156112f1573d6000803e3d6000fd5b50806112fc81613c91565b915050611223565b60165490565b610a2583838360405180602001604052806000815250611a8d565b600061133082612283565b61134c5760405162461bcd60e51b815260040161081790613534565b5090565b60603233146113715760405162461bcd60e51b815260040161081790613580565b6008541580159061138457504260085411155b6113a05760405162461bcd60e51b8152600401610817906138da565b336000908152601a602052604090205460ff1615156001146113d45760405162461bcd60e51b815260040161081790613911565b81600a546113e29190613bd8565b3410156114015760405162461bcd60e51b815260040161081790613783565b600d548211156114235760405162461bcd60e51b815260040161081790613253565b6018548211156114455760405162461bcd60e51b815260040161081790613614565b601354601854839161145691613bf7565b10156114745760405162461bcd60e51b81526004016108179061347c565b6015546016546114849084613bac565b11156114a25760405162461bcd60e51b815260040161081790613a1f565b600f54336000908152601760205260409020546114c0908490613bac565b11156114de5760405162461bcd60e51b8152600401610817906134ea565b60008267ffffffffffffffff81111561150757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611530578160200160208202803683370190505b5033600090815260176020526040812080549293508592909190611555908490613bac565b9250508190555082600c600082825461156e9190613bac565b9250508190555082601660008282546115879190613bac565b90915550600090505b83811015610d8a576115a0612312565b8282815181106115c057634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806115d581613c91565b915050611590565b60155481565b6000818152600360205260408120546001600160a01b0316806107565760405162461bcd60e51b8152600401610817906136b9565b6000805b60195481101561168c57336001600160a01b03166019828154811061165157634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b0316141561167a576001915061168c565b8061168481613c91565b91505061161c565b506116956122a0565b6001600160a01b03166116a661186f565b6001600160a01b031614806116b85750805b6116d45760405162461bcd60e51b815260040161081790613954565b50600855565b60006001600160a01b0382166117025760405162461bcd60e51b81526004016108179061366f565b506001600160a01b031660009081526004602052604090205490565b6117266122a0565b6001600160a01b031661173761186f565b6001600160a01b03161461175d5760405162461bcd60e51b81526004016108179061380d565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000805b60195481101561181b57336001600160a01b0316601982815481106117e057634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415611809576001915061181b565b8061181381613c91565b9150506117ab565b506118246122a0565b6001600160a01b031661183561186f565b6001600160a01b031614806118475750805b6118635760405162461bcd60e51b815260040161081790613954565b50601555565b60095490565b6000546001600160a01b031690565b60606002805461076d90613c3a565b6118956122a0565b6001600160a01b0316826001600160a01b031614156118c65760405162461bcd60e51b815260040161081790613445565b80600660006118d36122a0565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556119176122a0565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161194f9190613235565b60405180910390a35050565b6000805b6019548110156119cf57336001600160a01b03166019828154811061199457634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156119bd57600191506119cf565b806119c781613c91565b91505061195f565b506119d86122a0565b6001600160a01b03166119e961186f565b6001600160a01b031614806119fb5750805b611a175760405162461bcd60e51b815260040161081790613954565b60005b8251811015610a25576001601a6000858481518110611a4957634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611a8581613c91565b915050611a1a565b611a9e611a986122a0565b83612625565b611aba5760405162461bcd60e51b815260040161081790613a56565b610ed2848484846128ae565b60185490565b6000805b601954811015611b4057336001600160a01b031660198281548110611b0557634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415611b2e5760019150611b40565b80611b3881613c91565b915050611ad0565b50611b496122a0565b6001600160a01b0316611b5a61186f565b6001600160a01b03161480611b6c5750805b611b885760405162461bcd60e51b815260040161081790613954565b6013546018541015611bac5760405162461bcd60e51b8152600401610817906139e8565b60145460ff1615611bcf5760405162461bcd60e51b815260040161081790613ae8565b601354600c6000828254611be39190613bac565b909155505060135460009067ffffffffffffffff811115611c1457634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611c3d578160200160208202803683370190505b50905060005b601354811015611c9257611c55612312565b828281518110611c7557634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611c8a81613c91565b915050611c43565b50611c9d8382612469565b50506014805460ff1916600117905550565b6060611cba82612283565b611cd65760405162461bcd60e51b81526004016108179061388b565b6000611ce0611d3b565b90506000815111611d005760405180602001604052806000815250611d2b565b80611d0a846128e1565b604051602001611d1b929190613135565b6040516020818303038152906040525b9392505050565b60145460ff1681565b60606012805461076d90613c3a565b6000805b601954811015611dbe57336001600160a01b031660198281548110611d8357634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b03161415611dac5760019150611dbe565b80611db681613c91565b915050611d4e565b50611dc76122a0565b6001600160a01b0316611dd861186f565b6001600160a01b03161480611dea5750805b611e065760405162461bcd60e51b815260040161081790613954565b60005b60185461ffff821611610a25578261ffff1660188261ffff1681548110611e4057634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff1614611e6c57611f62565b60188054611e7c90600190613bf7565b81548110611e9a57634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1660188261ffff1681548110611ee357634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506018805480611f3157634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a02191690559055610a25565b80611f6c81613c6f565b915050611e09565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60135481565b611fb06122a0565b6001600160a01b0316611fc161186f565b6001600160a01b031614611fe75760405162461bcd60e51b81526004016108179061380d565b6001600160a01b03811661200d5760405162461bcd60e51b815260040161081790613302565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000805b6019548110156120dc57336001600160a01b0316601982815481106120a157634e487b7160e01b600052603260045260246000fd5b60009182526020909120600290910201546001600160a01b031614156120ca57600191506120dc565b806120d481613c91565b91505061206c565b506120e56122a0565b6001600160a01b03166120f661186f565b6001600160a01b031614806121085750805b6121245760405162461bcd60e51b815260040161081790613954565b50600955565b600032331461214b5760405162461bcd60e51b815260040161081790613580565b6007541580159061215e57504260075411155b61217a5760405162461bcd60e51b815260040161081790613644565b60095434101561219c5760405162461bcd60e51b815260040161081790613aa7565b6018546121bb5760405162461bcd60e51b815260040161081790613614565b6013546018546000916121cd91613bf7565b116121ea5760405162461bcd60e51b8152600401610817906139e8565b601054336000908152601760205260409020541061221a5760405162461bcd60e51b8152600401610817906137c7565b33600090815260176020526040812080549161223583613c91565b9091555050600c805490600061224a83613c91565b91905055506000612259612312565b905061226533826129fc565b905090565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122d9826115e3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612323601880549050612adb565b905060006018828154811061234857634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169050601860016018805490506123869190613bf7565b815481106123a457634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff16601883815481106123e957634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550601880548061243757634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905591505090565b6001600160a01b03821661248f5760405162461bcd60e51b815260040161081790613702565b80516001600160a01b038316600090815260046020526040812080549091906124b9908490613bac565b90915550600090505b8151811015610a25576124fb8282815181106124ee57634e487b7160e01b600052603260045260246000fd5b6020026020010151612283565b156125185760405162461bcd60e51b815260040161081790613348565b61254b60008484848151811061253e57634e487b7160e01b600052603260045260246000fd5b6020026020010151610a25565b826003600084848151811061257057634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508181815181106125ca57634e487b7160e01b600052603260045260246000fd5b6020026020010151836001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48061261d81613c91565b9150506124c2565b600061263082612283565b61264c5760405162461bcd60e51b815260040161081790613534565b6000612657836115e3565b9050806001600160a01b0316846001600160a01b031614806126925750836001600160a01b0316612687846107f0565b6001600160a01b0316145b806126a257506126a28185611f74565b949350505050565b826001600160a01b03166126bd826115e3565b6001600160a01b0316146126e35760405162461bcd60e51b815260040161081790613842565b6001600160a01b0382166127095760405162461bcd60e51b815260040161081790613401565b612714838383610a25565b61271f6000826122a4565b6001600160a01b0383166000908152600460205260408120805460019290612748908490613bf7565b90915550506001600160a01b0382166000908152600460205260408120805460019290612776908490613bac565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806127ed6001600160801b03841686613bc4565b905060006128046001600160801b03851687613cac565b9050600061281b6001600160801b03861687613bc4565b905060006128326001600160801b03871688613cac565b90506001600160801b0386166128488285613bd8565b6128529190613bc4565b61285c8385613bd8565b6128668387613bd8565b6001600160801b03891661287a8689613bd8565b6128849190613bd8565b61288e9190613bac565b6128989190613bac565b6128a29190613bac565b98975050505050505050565b6128b98484846126aa565b6128c584848484612b2a565b610ed25760405162461bcd60e51b8152600401610817906132b0565b60608161290657506040805180820190915260018152600360fc1b6020820152610759565b8160005b8115612930578061291a81613c91565b91506129299050600a83613bc4565b915061290a565b60008167ffffffffffffffff81111561295957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612983576020820181803683370190505b5090505b84156126a257612998600183613bf7565b91506129a5600a86613cac565b6129b0906030613bac565b60f81b8183815181106129d357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506129f5600a86613bc4565b9450612987565b6001600160a01b038216612a225760405162461bcd60e51b815260040161081790613702565b612a2b81612283565b15612a485760405162461bcd60e51b815260040161081790613348565b612a5460008383610a25565b6001600160a01b0382166000908152600460205260408120805460019290612a7d908490613bac565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6018546000908190612aee600143613bf7565b40414433604051602001612b06959493929190613164565b60408051601f1981840301815291905280516020909101209050611d2b8382613cac565b6000612b3e846001600160a01b0316612c45565b15612c3a57836001600160a01b031663150b7a02612b5a6122a0565b8786866040518563ffffffff1660e01b8152600401612b7c94939291906131b4565b602060405180830381600087803b158015612b9657600080fd5b505af1925050508015612bc6575060408051601f3d908101601f19168201909252612bc39181019061304c565b60015b612c20573d808015612bf4576040519150601f19603f3d011682016040523d82523d6000602084013e612bf9565b606091505b508051612c185760405162461bcd60e51b8152600401610817906132b0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506126a2565b506001949350505050565b3b151590565b828054612c5790613c3a565b90600052602060002090601f016020900481019282612c795760008555612cbf565b82601f10612c9257805160ff1916838001178555612cbf565b82800160010185558215612cbf579182015b82811115612cbf578251825591602001919060010190612ca4565b5061134c9291505b8082111561134c5760008155600101612cc7565b600067ffffffffffffffff831115612cf557612cf5613cec565b612d08601f8401601f1916602001613b3c565b9050828152838383011115612d1c57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461075957600080fd5b803561ffff8116811461075957600080fd5b600060208284031215612d6d578081fd5b611d2b82612d33565b60008060408385031215612d88578081fd5b612d9183612d33565b9150612d9f60208401612d33565b90509250929050565b600080600060608486031215612dbc578081fd5b612dc584612d33565b9250612dd360208501612d33565b9150604084013590509250925092565b60008060008060808587031215612df8578081fd5b612e0185612d33565b9350612e0f60208601612d33565b925060408501359150606085013567ffffffffffffffff811115612e31578182fd5b8501601f81018713612e41578182fd5b612e5087823560208401612cdb565b91505092959194509250565b60008060408385031215612e6e578182fd5b612e7783612d33565b915060208301358015158114612e8b578182fd5b809150509250929050565b60008060408385031215612ea8578182fd5b612eb183612d33565b946020939093013593505050565b60006020808385031215612ed1578182fd5b823567ffffffffffffffff811115612ee7578283fd5b8301601f81018513612ef7578283fd5b8035612f0a612f0582613b66565b613b3c565b8181528381019083850185840285018601891015612f26578687fd5b8694505b83851015612f4f57612f3b81612d33565b835260019490940193918501918501612f2a565b50979650505050505050565b60006020808385031215612f6d578182fd5b823567ffffffffffffffff80821115612f84578384fd5b818501915085601f830112612f97578384fd5b8135612fa5612f0582613b66565b818152848101908486016040808502870188018b1015612fc3578889fd5b8896505b848710156130215780828c031215612fdd578889fd5b80518181018181108882111715612ff657612ff6613cec565b825261300183612d33565b815282890135898201528452600196909601959287019290810190612fc7565b50909998505050505050505050565b600060208284031215613041578081fd5b8135611d2b81613d02565b60006020828403121561305d578081fd5b8151611d2b81613d02565b600060208284031215613079578081fd5b813567ffffffffffffffff81111561308f578182fd5b8201601f8101841361309f578182fd5b6126a284823560208401612cdb565b6000602082840312156130bf578081fd5b611d2b82612d4a565b600080604083850312156130da578182fd5b6130e383612d4a565b9150612d9f60208401612d4a565b600060208284031215613102578081fd5b5035919050565b60008151808452613121816020860160208601613c0e565b601f01601f19169290920160200192915050565b60008351613147818460208801613c0e565b83519083019061315b818360208801613c0e565b01949350505050565b94855260208501939093526bffffffffffffffffffffffff19606092831b81166040860152605485019190915291901b16607482015260880190565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131e790830184613109565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156132295783518352928401929184019160010161320d565b50909695505050505050565b901515815260200190565b600060208252611d2b6020830184613109565b6020808252603a908201527f596f752063616e206f6e6c7920636c61696d2033206d696e657273207065722060408201527f7472616e73616374696f6e20647572696e672070726573616c65000000000000606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601e908201527f436f6c6c61626f7261746f7273207765726520616c7265616479207365740000604082015260600190565b6020808252602b908201527f596f752063616e206f6e6c7920636c61696d2036204d696e657273207065722060408201526a3a3930b739b0b1ba34b7b760a91b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601c908201527f4e6f204d696e657273206c65667420746f20626520636c61696d656400000000604082015260600190565b6020808252601e908201527f546f74616c2063757420646f6573206e6f742061646420746f20313030250000604082015260600190565b6020808252602a908201527f596f752063616e206f6e6c7920636c61696d2033206d696e65727320647572696040820152696e672070726573616c6560b01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b602080825260169082015275139bdd08195b9bdd59da081b5a5b995c9cc81b19599d60521b604082015260600190565b602080825260119082015270596f752061726520746f6f206561726c7960781b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526024908201527f4e6f7420656e6f75676820457468657220746f20636c61696d20746865204d696040820152636e65727360e01b606082015260800190565b60208082526026908201527f596f752063616e206f6e6c7920636c61696d2039206d696e65727320706572206040820152651dd85b1b195d60d21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526017908201527f50726573616c65206e6f74207374617274656420796574000000000000000000604082015260600190565b60208082526023908201527f596f7520617265206e6f742077686974656c697374656420666f722070726573604082015262616c6560e81b606082015260800190565b60208082526033908201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015272103737b910309031b7b63630b137b930ba37b960691b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601c908201527f4e6f206d696e657273206c65667420746f20626520636c61696d656400000000604082015260600190565b6020808252601f908201527f4e6f206d6f7265206d696e657273206c65667420666f722070726573616c6500604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f4e6f7420656e6f75676820457468657220746f20636c61696d2061206d696e656040820152603960f91b606082015260800190565b6020808252602b908201527f4d696e657273207765726520616c726561647920726573657276656420666f7260408201526a206769766561776179732160a81b606082015260800190565b90815260200190565b60405181810167ffffffffffffffff81118282101715613b5e57613b5e613cec565b604052919050565b600067ffffffffffffffff821115613b8057613b80613cec565b5060209081020190565b60006001600160801b0380831681851680830382111561315b5761315b613cc0565b60008219821115613bbf57613bbf613cc0565b500190565b600082613bd357613bd3613cd6565b500490565b6000816000190483118215151615613bf257613bf2613cc0565b500290565b600082821015613c0957613c09613cc0565b500390565b60005b83811015613c29578181015183820152602001613c11565b83811115610ed25750506000910152565b600281046001821680613c4e57607f821691505b60208210811415610b7257634e487b7160e01b600052602260045260246000fd5b600061ffff80831681811415613c8757613c87613cc0565b6001019392505050565b6000600019821415613ca557613ca5613cc0565b5060010190565b600082613cbb57613cbb613cd6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114613d1857600080fd5b5056fea2646970667358221220f5548e2129524c7885d198ecb0aabe4b27cfec09f7d748952009520ee6d7ff0164736f6c63430008000033

Deployed Bytecode Sourcemap

82:12440:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500:344:3;;;;;;;;;;-1:-1:-1;1500:344:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2618:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4164:295::-;;;;;;;;;;-1:-1:-1;4164:295:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2489:468:12:-;;;;;;;;;;-1:-1:-1;2489:468:12;;;;;:::i;:::-;;:::i;:::-;;3679:424:3;;;;;;;;;;-1:-1:-1;3679:424:3;;;;;:::i;:::-;;:::i;2108:38:12:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;5532:314::-;;;;;;;;;;-1:-1:-1;5532:314:12;;;;;:::i;:::-;;:::i;7557:1042::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10790:104::-;;;;;;;;;;;;;:::i;4058:198::-;;;;;;;;;;-1:-1:-1;4058:198:12;;;;;:::i;:::-;;:::i;4848:147::-;;;;;;;;;;-1:-1:-1;4848:147:12;;;;;:::i;:::-;;:::i;5178:364:3:-;;;;;;;;;;-1:-1:-1;5178:364:3;;;;;:::i;:::-;;:::i;3509:102:12:-;;;;;;;;;;-1:-1:-1;3509:102:12;;;;;:::i;:::-;;:::i;3858:135::-;;;;;;;;;;-1:-1:-1;3858:135:12;;;;;:::i;:::-;;:::i;3100:317::-;;;;;;;;;;;;;:::i;10971:116::-;;;;;;;;;;;;;:::i;5608:179:3:-;;;;;;;;;;-1:-1:-1;5608:179:3;;;;;:::i;:::-;;:::i;9996:220:12:-;;;;;;;;;;-1:-1:-1;9996:220:12;;;;;:::i;:::-;;:::i;8673:1260::-;;;;;;:::i;:::-;;:::i;2068:34::-;;;;;;;;;;;;;:::i;2243:313:3:-;;;;;;;;;;-1:-1:-1;2243:313:3;;;;;:::i;:::-;;:::i;5092:155:12:-;;;;;;;;;;-1:-1:-1;5092:155:12;;;;;:::i;:::-;;:::i;1903:283:3:-;;;;;;;;;;-1:-1:-1;1903:283:3;;;;;:::i;:::-;;:::i;1693:145:10:-;;;;;;;;;;;;;:::i;5316:139:12:-;;;;;;;;;;-1:-1:-1;5316:139:12;;;;;:::i;:::-;;:::i;10642:89::-;;;;;;;;;;;;;:::i;1061:85:10:-;;;;;;;;;;;;;:::i;2780:102:3:-;;;;;;;;;;;;;:::i;4526:318::-;;;;;;;;;;-1:-1:-1;4526:318:3;;;;;:::i;:::-;;:::i;6578:195:12:-;;;;;;;;;;-1:-1:-1;6578:195:12;;;;;:::i;:::-;;:::i;5853:354:3:-;;;;;;;;;;-1:-1:-1;5853:354:3;;;;;:::i;:::-;;:::i;10476:108:12:-;;;;;;;;;;;;;:::i;5924:601::-;;;;;;;;;;-1:-1:-1;5924:601:12;;;;;:::i;:::-;;:::i;2948:451:3:-;;;;;;;;;;-1:-1:-1;2948:451:3;;;;;:::i;:::-;;:::i;2010:47:12:-;;;;;;;;;;;;;:::i;10291:93::-;;;;;;;;;;;;;:::i;4362:401::-;;;;;;;;;;-1:-1:-1;4362:401:12;;;;;:::i;:::-;;:::i;4910:206:3:-;;;;;;;;;;-1:-1:-1;4910:206:3;;;;;:::i;:::-;;:::i;1970:34:12:-;;;;;;;;;;;;;:::i;1987:240:10:-;;;;;;;;;;-1:-1:-1;1987:240:10;;;;;:::i;:::-;;:::i;3681:107:12:-;;;;;;;;;;-1:-1:-1;3681:107:12;;;;;:::i;:::-;;:::i;6859:635::-;;;:::i;1500:344:3:-;1642:4;-1:-1:-1;;;;;;1681:40:3;;-1:-1:-1;;;1681:40:3;;:104;;-1:-1:-1;;;;;;;1737:48:3;;-1:-1:-1;;;1737:48:3;1681:104;:156;;;;1801:36;1825:11;1801:23;:36::i;:::-;1662:175;;1500:344;;;;:::o;2618:98::-;2672:13;2704:5;2697:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2618:98;:::o;4164:295::-;4280:7;4324:16;4332:7;4324;:16::i;:::-;4303:107;;;;-1:-1:-1;;;4303:107:3;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;4428:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4428:24:3;;4164:295::o;2489:468:12:-;1284:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:10;;1265:68;;;;-1:-1:-1;;;1265:68:10;;;;;;;:::i;:::-;2611:13:12::1;:20:::0;:25;2603:68:::1;;;;-1:-1:-1::0;;;2603:68:12::1;;;;;;;:::i;:::-;2682:16;2713:9:::0;2708:166:::1;2728:14;:21;2724:1;:25;2708:166;;;2770:13;2789:14;2804:1;2789:17;;;;;;-1:-1:-1::0;;;2789:17:12::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;2770:37;;::::1;::::0;;::::1;::::0;;-1:-1:-1;2770:37:12;;;;;;;;;::::1;::::0;;::::1;;::::0;;-1:-1:-1;;;;;;2770:37:12::1;-1:-1:-1::0;;;;;2770:37:12;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;2841:17;;;;2856:1;;2841:17;::::1;;;-1:-1:-1::0;;;2841:17:12::1;;;;;;;;;;;;;;;:21;;;2821:42;;;;;:::i;:::-;::::0;-1:-1:-1;2751:3:12;::::1;::::0;::::1;:::i;:::-;;;;2708:166;;;-1:-1:-1::0;2904:11:12::1;::::0;-1:-1:-1;;;;;2892:23:12;;::::1;2904:11:::0;::::1;2892:23;2884:66;;;;-1:-1:-1::0;;;2884:66:12::1;;;;;;;:::i;:::-;1343:1:10;2489:468:12::0;:::o;3679:424:3:-;3759:13;3775:23;3790:7;3775:14;:23::i;:::-;3759:39;;3822:5;-1:-1:-1;;;;;3816:11:3;:2;-1:-1:-1;;;;;3816:11:3;;;3808:57;;;;-1:-1:-1;;;3808:57:3;;;;;;;:::i;:::-;3913:5;-1:-1:-1;;;;;3897:21:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3897:21:3;;:85;;;;3938:44;3962:5;3969:12;:10;:12::i;3938:44::-;3876:188;;;;-1:-1:-1;;;3876:188:3;;;;;;;:::i;:::-;4075:21;4084:2;4088:7;4075:8;:21::i;:::-;3679:424;;;:::o;2108:38:12:-;;;;:::o;5532:314::-;5646:4;;;380:190;400:13;:20;396:24;;380:190;;;470:10;-1:-1:-1;;;;;445:35:12;:13;459:1;445:16;;;;;;-1:-1:-1;;;445:16:12;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;445:21:12;:35;441:119;;;517:4;500:21;;540:5;;441:119;422:3;;;;:::i;:::-;;;;380:190;;;;612:12;:10;:12::i;:::-;-1:-1:-1;;;;;601:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;601:23:12;;:41;;;;628:14;601:41;580:139;;;;-1:-1:-1;;;580:139:12;;;;;;;:::i;:::-;5671:8:::1;5666:151;5685:15;:22:::0;5681:26:::1;::::0;::::1;;5666:151;;;5754:7;5732:29;;:15;5748:1;5732:18;;;;;;;;-1:-1:-1::0;;;5732:18:12::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;::::0;;;;;::::1;;;;::::0;::::1;;;:29;5728:79;;;5788:4;5781:11;;;;;5728:79;5709:3:::0;::::1;::::0;::::1;:::i;:::-;;;;5666:151;;;;5834:5;5827:12;;730:1;5532:314:::0;;;;:::o;7557:1042::-;7688:16;223:9;236:10;223:23;215:66;;;;-1:-1:-1;;;215:66:12;;;;;;;:::i;:::-;799:14:::1;::::0;:19;;::::1;::::0;:56:::1;;;840:15;822:14;;:33;;799:56;778:120;;;;-1:-1:-1::0;;;778:120:12::1;;;;;;;:::i;:::-;7766:8:::2;7754:9;;:20;;;;:::i;:::-;7741:9;:33;;7720:116;;;;-1:-1:-1::0;;;7720:116:12::2;;;;;;;:::i;:::-;7875:22;;7863:8;:34;;7855:90;;;;-1:-1:-1::0;;;7855:90:12::2;;;;;;;:::i;:::-;7972:15;:22:::0;:34;-1:-1:-1;7972:34:12::2;7964:69;;;;-1:-1:-1::0;;;7964:69:12::2;;;;;;;:::i;:::-;8077:13;::::0;8052:15:::2;:22:::0;8094:8;;8052:38:::2;::::0;::::2;:::i;:::-;:50;;8044:91;;;;-1:-1:-1::0;;;8044:91:12::2;;;;;;;:::i;:::-;8202:17;::::0;8176:10:::2;8154:33;::::0;;;:21:::2;:33;::::0;;;;;:44:::2;::::0;8190:8;;8154:44:::2;:::i;:::-;:65;;8146:116;;;;-1:-1:-1::0;;;8146:116:12::2;;;;;;;:::i;:::-;8273:25;8315:8;8301:23;;;;;;-1:-1:-1::0;;;8301:23:12::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;8301:23:12::2;-1:-1:-1::0;8357:10:12::2;8335:33;::::0;;;:21:::2;:33;::::0;;;;:45;;8273:51;;-1:-1:-1;8372:8:12;;8335:33;;;:45:::2;::::0;8372:8;;8335:45:::2;:::i;:::-;;;;;;;;8411:8;8390:17;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;8435:9:12::2;::::0;-1:-1:-1;8430:95:12::2;8450:8;8446:1;:12;8430:95;;;8493:21;:19;:21::i;:::-;8479:8;8488:1;8479:11;;;;;;-1:-1:-1::0;;;8479:11:12::2;;;;;;;;;;::::0;;::::2;::::0;;;;;:35;8460:3;::::2;::::0;::::2;:::i;:::-;;;;8430:95;;;;8535:32;8546:10;8558:8;8535:10;:32::i;10790:104::-:0;10870:17;;10790:104;:::o;4058:198::-;343:19;385:9;380:190;400:13;:20;396:24;;380:190;;;470:10;-1:-1:-1;;;;;445:35:12;:13;459:1;445:16;;;;;;-1:-1:-1;;;445:16:12;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;445:21:12;:35;441:119;;;517:4;500:21;;540:5;;441:119;422:3;;;;:::i;:::-;;;;380:190;;;;612:12;:10;:12::i;:::-;-1:-1:-1;;;;;601:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;601:23:12;;:41;;;;628:14;601:41;580:139;;;;-1:-1:-1;;;580:139:12;;;;;;;:::i;:::-;4182:4;4166:84:::1;4193:2;4188:7;;:1;:7;;;4166:84;;4216:15;:23:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;4216:23:12;;;;;::::1;::::0;::::1;;::::0;;;;;;::::1;;;;;::::0;;::::1;;::::0;;::::1;::::0;;::::1;;::::0;;;::::1;::::0;;;4197:3:::1;4216:23:::0;4197:3:::1;:::i;:::-;;;;4166:84;;;;4058:198:::0;;;:::o;4848:147::-;343:19;385:9;380:190;400:13;:20;396:24;;380:190;;;470:10;-1:-1:-1;;;;;445:35:12;:13;459:1;445:16;;;;;;-1:-1:-1;;;445:16:12;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;445:21:12;:35;441:119;;;517:4;500:21;;540:5;;441:119;422:3;;;;:::i;:::-;;;;380:190;;;;612:12;:10;:12::i;:::-;-1:-1:-1;;;;;601:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;601:23:12;;:41;;;;628:14;601:41;580:139;;;;-1:-1:-1;;;580:139:12;;;;;;;:::i;:::-;-1:-1:-1;4956:14:12::1;:32:::0;4848:147::o;5178:364:3:-;5380:41;5399:12;:10;:12::i;:::-;5413:7;5380:18;:41::i;:::-;5359:137;;;;-1:-1:-1;;;5359:137:3;;;;;;;:::i;:::-;5507:28;5517:4;5523:2;5527:7;5507:9;:28::i;3509:102:12:-;343:19;385:9;380:190;400:13;:20;396:24;;380:190;;;470:10;-1:-1:-1;;;;;445:35:12;:13;459:1;445:16;;;;;;-1:-1:-1;;;445:16:12;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;445:21:12;:35;441:119;;;517:4;500:21;;540:5;;441:119;422:3;;;;:::i;:::-;;;;380:190;;;;612:12;:10;:12::i;:::-;-1:-1:-1;;;;;601:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;601:23:12;;:41;;;;628:14;601:41;580:139;;;;-1:-1:-1;;;580:139:12;;;;;;;:::i;:::-;3590:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;3858:135::-:0;343:19;385:9;380:190;400:13;:20;396:24;;380:190;;;470:10;-1:-1:-1;;;;;445:35:12;:13;459:1;445:16;;;;;;-1:-1:-1;;;445:16:12;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;445:21:12;:35;441:119;;;517:4;500:21;;540:5;;441:119;422:3;;;;:::i;:::-;;;;380:190;;;;612:12;:10;:12::i;:::-;-1:-1:-1;;;;;601:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;601:23:12;;:41;;;;628:14;601:41;580:139;;;;-1:-1:-1;;;580:139:12;;;;;;;:::i;:::-;-1:-1:-1;3950:16:12::1;:36:::0;3858:135::o;3100:317::-;343:19;385:9;380:190;400:13;:20;396:24;;380:190;;;470:10;-1:-1:-1;;;;;445:35:12;:13;459:1;445:16;;;;;;-1:-1:-1;;;445:16:12;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;445:21:12;:35;441:119;;;517:4;500:21;;540:5;;441:119;422:3;;;;:::i;:::-;;;;380:190;;;;612:12;:10;:12::i;:::-;-1:-1:-1;;;;;601:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;601:23:12;;:41;;;;628:14;601:41;580:139;;;;-1:-1:-1;;;580:139:12;;;;;;;:::i;:::-;3179:21:::1;3156:20;3211:200;3231:13;:20:::0;3227:24;::::1;3211:200;;;3280:13;3294:1;3280:16;;;;;;-1:-1:-1::0;;;3280:16:12::1;;;;;;;;;;;;;;;;;;;:21;;;;;;;;;;-1:-1:-1::0;;;;;3280:21:12::1;-1:-1:-1::0;;;;;3272:39:12::1;:128;3329:57;3338:12;3352:13;3366:1;3352:16;;;;;;-1:-1:-1::0;;;3352:16:12::1;;;;;;;;;;::::0;;;::::1;::::0;;;:20:::1;:16;::::0;;::::1;;:20;::::0;3374:11:::1;::::0;-1:-1:-1;;;;;3374:11:12::1;3329:8;:57::i;:::-;3272:128;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;3253:3:12;::::1;::::0;::::1;:::i;:::-;;;;3211:200;;10971:116:::0;11061:19;;10971:116;:::o;5608:179:3:-;5741:39;5758:4;5764:2;5768:7;5741:39;;;;;;;;;;;;:16;:39::i;9996:220:12:-;10058:7;10098:16;10106:7;10098;:16::i;:::-;10077:107;;;;-1:-1:-1;;;10077:107:12;;;;;;;:::i;:::-;-1:-1:-1;10202:7:12;9996:220::o;8673:1260::-;8836:16;223:9;236:10;223:23;215:66;;;;-1:-1:-1;;;215:66:12;;;;;;;:::i;:::-;980:16:::1;::::0;:21;;::::1;::::0;:60:::1;;;1025:15;1005:16;;:35;;980:60;959:130;;;;-1:-1:-1::0;;;959:130:12::1;;;;;;;:::i;:::-;1180:10:::2;1159:32;::::0;;;:20:::2;:32;::::0;;;;;::::2;;:40;;:32:::0;:40:::2;1151:88;;;;-1:-1:-1::0;;;1151:88:12::2;;;;;;;:::i;:::-;8921:8:::3;8902:16;;:27;;;;:::i;:::-;8889:9;:40;;8868:123;;;;-1:-1:-1::0;;;8868:123:12::3;;;;;;;:::i;:::-;9030:35;;9018:8;:47;;9010:118;;;;-1:-1:-1::0;;;9010:118:12::3;;;;;;;:::i;:::-;9147:15;:22:::0;:34;-1:-1:-1;9147:34:12::3;9139:69;;;;-1:-1:-1::0;;;9139:69:12::3;;;;;;;:::i;:::-;9252:13;::::0;9227:15:::3;:22:::0;9269:8;;9227:38:::3;::::0;::::3;:::i;:::-;:50;;9219:91;;;;-1:-1:-1::0;;;9219:91:12::3;;;;;;;:::i;:::-;9363:12;::::0;9340:19:::3;::::0;9329:30:::3;::::0;:8;:30:::3;:::i;:::-;:46;;9321:90;;;;-1:-1:-1::0;;;9321:90:12::3;;;;;;;:::i;:::-;9478:30;::::0;9452:10:::3;9430:33;::::0;;;:21:::3;:33;::::0;;;;;:44:::3;::::0;9466:8;;9430:44:::3;:::i;:::-;:78;;9422:133;;;;-1:-1:-1::0;;;9422:133:12::3;;;;;;;:::i;:::-;9566:25;9608:8;9594:23;;;;;;-1:-1:-1::0;;;9594:23:12::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;9594:23:12::3;-1:-1:-1::0;9650:10:12::3;9628:33;::::0;;;:21:::3;:33;::::0;;;;:45;;9566:51;;-1:-1:-1;9665:8:12;;9628:33;;;:45:::3;::::0;9665:8;;9628:45:::3;:::i;:::-;;;;;;;;9704:8;9683:17;;:29;;;;;;;:::i;:::-;;;;;;;;9745:8;9722:19;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;9769:9:12::3;::::0;-1:-1:-1;9764:95:12::3;9784:8;9780:1;:12;9764:95;;;9827:21;:19;:21::i;:::-;9813:8;9822:1;9813:11;;;;;;-1:-1:-1::0;;;9813:11:12::3;;;;;;;;;;::::0;;::::3;::::0;;;;;:35;9794:3;::::3;::::0;::::3;:::i;:::-;;;;9764:95;;2068:34:::0;;;;:::o;2243:313:3:-;2355:7;2394:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2394:16:3;2441:19;2420:107;;;;-1:-1:-1;;;2420:107:3;;;;;;;:::i;5092:155:12:-;343:19;385:9;380:190;400:13;:20;396:24;;380:190;;;470:10;-1:-1:-1;;;;;445:35:12;:13;459:1;445:16;;;;;;-1:-1:-1;;;445:16:12;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;445:21:12;:35;441:119;;;517:4;500:21;;540:5;;441:119;422:3;;;;:::i;:::-;;;;380:190;;;;612:12;:10;:12::i;:::-;-1:-1:-1;;;;;601:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;601:23:12;;:41;;;;628:14;601:41;580:139;;;;-1:-1:-1;;;580:139:12;;;;;;;:::i;:::-;-1:-1:-1;5204:16:12::1;:36:::0;5092:155::o;1903:283:3:-;2015:7;-1:-1:-1;;;;;2059:19:3;;2038:108;;;;-1:-1:-1;;;2038:108:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;2163:16:3;;;;;:9;:16;;;;;;;1903:283::o;1693:145:10:-;1284:12;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:10;;1265:68;;;;-1:-1:-1;;;1265:68:10;;;;;;;:::i;:::-;1799:1:::1;1783:6:::0;;1762:40:::1;::::0;-1:-1:-1;;;;;1783:6:10;;::::1;::::0;1762:40:::1;::::0;1799:1;;1762:40:::1;1829:1;1812:19:::0;;-1:-1:-1;;;;;;1812:19:10::1;::::0;;1693:145::o;5316:139:12:-;343:19;385:9;380:190;400:13;:20;396:24;;380:190;;;470:10;-1:-1:-1;;;;;445:35:12;:13;459:1;445:16;;;;;;-1:-1:-1;;;445:16:12;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;445:21:12;:35;441:119;;;517:4;500:21;;540:5;;441:119;422:3;;;;:::i;:::-;;;;380:190;;;;612:12;:10;:12::i;:::-;-1:-1:-1;;;;;601:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;601:23:12;;:41;;;;628:14;601:41;580:139;;;;-1:-1:-1;;;580:139:12;;;;;;;:::i;:::-;-1:-1:-1;5420:12:12::1;:28:::0;5316:139::o;10642:89::-;10715:9;;10642:89;:::o;1061:85:10:-;1107:7;1133:6;-1:-1:-1;;;;;1133:6:10;1061:85;:::o;2780:102:3:-;2836:13;2868:7;2861:14;;;;;:::i;4526:318::-;4668:12;:10;:12::i;:::-;-1:-1:-1;;;;;4656:24:3;:8;-1:-1:-1;;;;;4656:24:3;;;4648:62;;;;-1:-1:-1;;;4648:62:3;;;;;;;:::i;:::-;4766:8;4721:18;:32;4740:12;:10;:12::i;:::-;-1:-1:-1;;;;;4721:32:3;;;;;;;;;;;;;;;;;-1:-1:-1;4721:32:3;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4721:53:3;;;;;;;;;;;4804:12;:10;:12::i;:::-;-1:-1:-1;;;;;4789:48:3;;4828:8;4789:48;;;;;;:::i;:::-;;;;;;;;4526:318;;:::o;6578:195:12:-;343:19;385:9;380:190;400:13;:20;396:24;;380:190;;;470:10;-1:-1:-1;;;;;445:35:12;:13;459:1;445:16;;;;;;-1:-1:-1;;;445:16:12;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;445:21:12;:35;441:119;;;517:4;500:21;;540:5;;441:119;422:3;;;;:::i;:::-;;;;380:190;;;;612:12;:10;:12::i;:::-;-1:-1:-1;;;;;601:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;601:23:12;;:41;;;;628:14;601:41;580:139;;;;-1:-1:-1;;;580:139:12;;;;;;;:::i;:::-;6670:6:::1;6665:102;6686:5;:12;6682:1;:16;6665:102;;;6752:4;6719:20;:30;6740:5;6746:1;6740:8;;;;;;-1:-1:-1::0;;;6740:8:12::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;6719:30:12::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;6719:30:12;:37;;-1:-1:-1;;6719:37:12::1;::::0;::::1;;::::0;;;::::1;::::0;;6700:3;::::1;::::0;::::1;:::i;:::-;;;;6665:102;;5853:354:3::0;6035:41;6054:12;:10;:12::i;:::-;6068:7;6035:18;:41::i;:::-;6014:137;;;;-1:-1:-1;;;6014:137:3;;;;;;;:::i;:::-;6161:39;6175:4;6181:2;6185:7;6194:5;6161:13;:39::i;10476:108:12:-;10555:15;:22;10476:108;:::o;5924:601::-;343:19;385:9;380:190;400:13;:20;396:24;;380:190;;;470:10;-1:-1:-1;;;;;445:35:12;:13;459:1;445:16;;;;;;-1:-1:-1;;;445:16:12;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;445:21:12;:35;441:119;;;517:4;500:21;;540:5;;441:119;422:3;;;;:::i;:::-;;;;380:190;;;;612:12;:10;:12::i;:::-;-1:-1:-1;;;;;601:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;601:23:12;;:41;;;;628:14;601:41;580:139;;;;-1:-1:-1;;;580:139:12;;;;;;;:::i;:::-;6063:13:::1;::::0;6037:15:::1;:22:::0;:39:::1;;6029:80;;;;-1:-1:-1::0;;;6029:80:12::1;;;;;;;:::i;:::-;6128:27;::::0;::::1;;6127:28;6119:84;;;;-1:-1:-1::0;;;6119:84:12::1;;;;;;;:::i;:::-;6243:13;;6222:17;;:34;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;6309:13:12::1;::::0;6267:25:::1;::::0;6295:28:::1;::::0;::::1;;;;-1:-1:-1::0;;;6295:28:12::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;6295:28:12::1;;6267:56;;6339:9;6334:100;6354:13;;6350:1;:17;6334:100;;;6402:21;:19;:21::i;:::-;6388:8;6397:1;6388:11;;;;;;-1:-1:-1::0;;;6388:11:12::1;;;;;;;;;;::::0;;::::1;::::0;;;;;:35;6369:3;::::1;::::0;::::1;:::i;:::-;;;;6334:100;;;;6444:30;6455:8;6465;6444:10;:30::i;:::-;-1:-1:-1::0;;6484:27:12::1;:34:::0;;-1:-1:-1;;6484:34:12::1;6514:4;6484:34;::::0;;-1:-1:-1;5924:601:12:o;2948:451:3:-;3061:13;3111:16;3119:7;3111;:16::i;:::-;3090:110;;;;-1:-1:-1;;;3090:110:3;;;;;;;:::i;:::-;3211:21;3235:10;:8;:10::i;:::-;3211:34;;3298:1;3280:7;3274:21;:25;:118;;;;;;;;;;;;;;;;;3342:7;3351:18;:7;:16;:18::i;:::-;3325:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3274:118;3255:137;2948:451;-1:-1:-1;;;2948:451:3:o;2010:47:12:-;;;;;;:::o;10291:93::-;10338:13;10370:7;10363:14;;;;;:::i;4362:401::-;343:19;385:9;380:190;400:13;:20;396:24;;380:190;;;470:10;-1:-1:-1;;;;;445:35:12;:13;459:1;445:16;;;;;;-1:-1:-1;;;445:16:12;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;445:21:12;:35;441:119;;;517:4;500:21;;540:5;;441:119;422:3;;;;:::i;:::-;;;;380:190;;;;612:12;:10;:12::i;:::-;-1:-1:-1;;;;;601:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;601:23:12;;:41;;;;628:14;601:41;580:139;;;;-1:-1:-1;;;580:139:12;;;;;;;:::i;:::-;4479:8:::1;4474:283;4494:15;:22:::0;4489:27:::1;::::0;::::1;;4474:283;;4563:7;4541:29;;:15;4557:1;4541:18;;;;;;;;-1:-1:-1::0;;;4541:18:12::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;::::0;;;;;::::1;;;;::::0;::::1;;;:29;4537:76;;4590:8;;4537:76;4648:15;4664:22:::0;;:26:::1;::::0;4689:1:::1;::::0;4664:26:::1;:::i;:::-;4648:43;;;;;;-1:-1:-1::0;;;4648:43:12::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4627:15;4643:1;4627:18;;;;;;;;-1:-1:-1::0;;;4627:18:12::1;;;;;;;;;;;;;;;;;;;;;;;;;;;:64;;;;;;;;;;;;;;;;;;4705:15;:21;;;;;-1:-1:-1::0;;;4705:21:12::1;;;;;;;;;;::::0;;;::::1;::::0;;::::1;-1:-1:-1::0;;4705:21:12;;;;;::::1;;::::0;;::::1;;::::0;;;::::1;;;;;;::::0;;;;4741:5:::1;;4474:283;4518:3:::0;::::1;::::0;::::1;:::i;:::-;;;;4474:283;;4910:206:3::0;-1:-1:-1;;;;;5074:25:3;;;5047:4;5074:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4910:206::o;1970:34:12:-;;;;:::o;1987:240:10:-;1284:12;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:10;;1265:68;;;;-1:-1:-1;;;1265:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;2075:22:10;::::1;2067:73;;;;-1:-1:-1::0;;;2067:73:10::1;;;;;;;:::i;:::-;2176:6;::::0;;2155:38:::1;::::0;-1:-1:-1;;;;;2155:38:10;;::::1;::::0;2176:6;::::1;::::0;2155:38:::1;::::0;::::1;2203:6;:17:::0;;-1:-1:-1;;;;;;2203:17:10::1;-1:-1:-1::0;;;;;2203:17:10;;;::::1;::::0;;;::::1;::::0;;1987:240::o;3681:107:12:-;343:19;385:9;380:190;400:13;:20;396:24;;380:190;;;470:10;-1:-1:-1;;;;;445:35:12;:13;459:1;445:16;;;;;;-1:-1:-1;;;445:16:12;;;;;;;;;;;;;;;;;;;;;;:21;-1:-1:-1;;;;;445:21:12;:35;441:119;;;517:4;500:21;;540:5;;441:119;422:3;;;;:::i;:::-;;;;380:190;;;;612:12;:10;:12::i;:::-;-1:-1:-1;;;;;601:23:12;:7;:5;:7::i;:::-;-1:-1:-1;;;;;601:23:12;;:41;;;;628:14;601:41;580:139;;;;-1:-1:-1;;;580:139:12;;;;;;;:::i;:::-;-1:-1:-1;3759:9:12::1;:22:::0;3681:107::o;6859:635::-;6933:7;223:9;236:10;223:23;215:66;;;;-1:-1:-1;;;215:66:12;;;;;;;:::i;:::-;799:14:::1;::::0;:19;;::::1;::::0;:56:::1;;;840:15;822:14;;:33;;799:56;778:120;;;;-1:-1:-1::0;;;778:120:12::1;;;;;;;:::i;:::-;6973:9:::2;;6960;:22;;6952:68;;;;-1:-1:-1::0;;;6952:68:12::2;;;;;;;:::i;:::-;7039:15;:22:::0;7031:61:::2;;;;-1:-1:-1::0;;;7031:61:12::2;;;;;;;:::i;:::-;7136:13;::::0;7111:15:::2;:22:::0;7152:1:::2;::::0;7111:38:::2;::::0;::::2;:::i;:::-;:42;7103:83;;;;-1:-1:-1::0;;;7103:83:12::2;;;;;;;:::i;:::-;7241:17;::::0;7227:10:::2;7205:33;::::0;;;:21:::2;:33;::::0;;;;;:53:::2;7197:104;;;;-1:-1:-1::0;;;7197:104:12::2;;;;;;;:::i;:::-;7334:10;7312:33;::::0;;;:21:::2;:33;::::0;;;;:35;;;::::2;::::0;::::2;:::i;:::-;::::0;;;-1:-1:-1;;7357:17:12::2;:19:::0;;;:17:::2;:19;::::0;::::2;:::i;:::-;;;;;;7387:15;7405:21;:19;:21::i;:::-;7387:39;;7437:26;7443:10;7455:7;7437:5;:26::i;:::-;7480:7:::0;-1:-1:-1;6859:635:12;:::o;763:155:2:-;-1:-1:-1;;;;;;871:40:2;;-1:-1:-1;;;871:40:2;763:155;;;:::o;7713:125:3:-;7778:4;7801:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7801:16:3;:30;;;7713:125::o;586:96:1:-;665:10;586:96;:::o;12221:171:3:-;12295:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;12295:29:3;-1:-1:-1;;;;;12295:29:3;;;;;;;;:24;;12348:23;12295:24;12348:14;:23::i;:::-;-1:-1:-1;;;;;12339:46:3;;;;;;;;;;;12221:171;;:::o;11207:327:12:-;11255:7;11274:14;11291:40;11308:15;:22;;;;11291:16;:40::i;:::-;11274:57;;11341:15;11367;11383:6;11367:23;;;;;;-1:-1:-1;;;11367:23:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11359:32;;11341:50;;11428:15;11469:1;11444:15;:22;;;;:26;;;;:::i;:::-;11428:43;;;;;;-1:-1:-1;;;11428:43:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11402:15;11418:6;11402:23;;;;;;-1:-1:-1;;;11402:23:12;;;;;;;;;;;;;;;;;;;;;;;;;;;:69;;;;;;;;;;;;;;;;;;11481:15;:21;;;;;-1:-1:-1;;;11481:21:12;;;;;;;;;;;;;;;;;-1:-1:-1;;11481:21:12;;;;;;;;;;;;;;;;;;;;;;;;11520:7;-1:-1:-1;;11207:327:12;:::o;10111:516:3:-;-1:-1:-1;;;;;10225:16:3;;10217:61;;;;-1:-1:-1;;;10217:61:3;;;;;;;:::i;:::-;10305:15;;-1:-1:-1;;;;;10288:13:3;;;;;;:9;:13;;;;;:32;;:13;;;:32;;10305:15;;10288:32;:::i;:::-;;;;-1:-1:-1;10336:9:3;;-1:-1:-1;10331:290:3;10351:8;:15;10347:1;:19;10331:290;;;10396:20;10404:8;10413:1;10404:11;;;;;;-1:-1:-1;;;10404:11:3;;;;;;;;;;;;;;;10396:7;:20::i;:::-;10395:21;10387:62;;;;-1:-1:-1;;;10387:62:3;;;;;;;:::i;:::-;10464:49;10493:1;10497:2;10501:8;10510:1;10501:11;;;;;;-1:-1:-1;;;10501:11:3;;;;;;;;;;;;;;;10464:20;:49::i;:::-;10551:2;10528:7;:20;10536:8;10545:1;10536:11;;;;;;-1:-1:-1;;;10536:11:3;;;;;;;;;;;;;;;10528:20;;;;;;;;;;;;:25;;;;;-1:-1:-1;;;;;10528:25:3;;;;;-1:-1:-1;;;;;10528:25:3;;;;;;10598:8;10607:1;10598:11;;;;;;-1:-1:-1;;;10598:11:3;;;;;;;;;;;;;;;10594:2;-1:-1:-1;;;;;10573:37:3;10590:1;-1:-1:-1;;;;;10573:37:3;;;;;;;;;;;10368:3;;;;:::i;:::-;;;;10331:290;;7996:445;8121:4;8162:16;8170:7;8162;:16::i;:::-;8141:107;;;;-1:-1:-1;;;8141:107:3;;;;;;;:::i;:::-;8258:13;8274:23;8289:7;8274:14;:23::i;:::-;8258:39;;8326:5;-1:-1:-1;;;;;8315:16:3;:7;-1:-1:-1;;;;;8315:16:3;;:63;;;;8371:7;-1:-1:-1;;;;;8347:31:3;:20;8359:7;8347:11;:20::i;:::-;-1:-1:-1;;;;;8347:31:3;;8315:63;:118;;;;8394:39;8418:5;8425:7;8394:23;:39::i;:::-;8307:127;7996:445;-1:-1:-1;;;;7996:445:3:o;11516:594::-;11683:4;-1:-1:-1;;;;;11656:31:3;:23;11671:7;11656:14;:23::i;:::-;-1:-1:-1;;;;;11656:31:3;;11635:119;;;;-1:-1:-1;;;11635:119:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;11772:16:3;;11764:65;;;;-1:-1:-1;;;11764:65:3;;;;;;;:::i;:::-;11840:39;11861:4;11867:2;11871:7;11840:20;:39::i;:::-;11941:29;11958:1;11962:7;11941:8;:29::i;:::-;-1:-1:-1;;;;;11981:15:3;;;;;;:9;:15;;;;;:20;;12000:1;;11981:15;:20;;12000:1;;11981:20;:::i;:::-;;;;-1:-1:-1;;;;;;;12011:13:3;;;;;;:9;:13;;;;;:18;;12028:1;;12011:13;:18;;12028:1;;12011:18;:::i;:::-;;;;-1:-1:-1;;12039:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;12039:21:3;-1:-1:-1;;;;;12039:21:3;;;;;;;;;12076:27;;12039:16;;12076:27;;;;;;;11516:594;;;:::o;12207:313:12:-;12315:7;;12346:9;-1:-1:-1;;;;;12346:9:12;;:1;:9;:::i;:::-;12334:21;-1:-1:-1;12365:9:12;12377;-1:-1:-1;;;;;12377:9:12;;:1;:9;:::i;:::-;12365:21;-1:-1:-1;12396:9:12;12408;-1:-1:-1;;;;;12408:9:12;;:1;:9;:::i;:::-;12396:21;-1:-1:-1;12427:9:12;12439;-1:-1:-1;;;;;12439:9:12;;:1;:9;:::i;:::-;12427:21;-1:-1:-1;;;;;;12498:15:12;;12499:5;12427:21;12499:1;:5;:::i;:::-;12498:15;;;;:::i;:::-;12490:5;12494:1;12490;:5;:::i;:::-;12482;12486:1;12482;:5;:::i;:::-;-1:-1:-1;;;;;12466:13:12;;:5;12470:1;12466;:5;:::i;:::-;:13;;;;:::i;:::-;:21;;;;:::i;:::-;:29;;;;:::i;:::-;:47;;;;:::i;:::-;12459:54;12207:313;-1:-1:-1;;;;;;;;12207:313:12:o;7069:341:3:-;7220:28;7230:4;7236:2;7240:7;7220:9;:28::i;:::-;7279:48;7302:4;7308:2;7312:7;7321:5;7279:22;:48::i;:::-;7258:145;;;;-1:-1:-1;;;7258:145:3;;;;;;;:::i;271:703:11:-;327:13;544:10;540:51;;-1:-1:-1;570:10:11;;;;;;;;;;;;-1:-1:-1;;;570:10:11;;;;;;540:51;615:5;600:12;654:75;661:9;;654:75;;686:8;;;;:::i;:::-;;-1:-1:-1;708:10:11;;-1:-1:-1;716:2:11;708:10;;:::i;:::-;;;654:75;;;738:19;770:6;760:17;;;;;;-1:-1:-1;;;760:17:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;760:17:11;;738:39;;787:150;794:10;;787:150;;820:11;830:1;820:11;;:::i;:::-;;-1:-1:-1;888:10:11;896:2;888:5;:10;:::i;:::-;875:24;;:2;:24;:::i;:::-;862:39;;845:6;852;845:14;;;;;;-1:-1:-1;;;845:14:11;;;;;;;;;;;;:56;-1:-1:-1;;;;;845:56:11;;;;;;;;-1:-1:-1;915:11:11;924:2;915:11;;:::i;:::-;;;787:150;;9733:372:3;-1:-1:-1;;;;;9812:16:3;;9804:61;;;;-1:-1:-1;;;9804:61:3;;;;;;;:::i;:::-;9884:16;9892:7;9884;:16::i;:::-;9883:17;9875:58;;;;-1:-1:-1;;;9875:58:3;;;;;;;:::i;:::-;9944:45;9973:1;9977:2;9981:7;9944:20;:45::i;:::-;-1:-1:-1;;;;;10000:13:3;;;;;;:9;:13;;;;;:18;;10017:1;;10000:13;:18;;10017:1;;10000:18;:::i;:::-;;;;-1:-1:-1;;10028:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10028:21:3;-1:-1:-1;;;;;10028:21:3;;;;;;;;10065:33;;10028:16;;;10065:33;;10028:16;;10065:33;9733:372;;:::o;11602:445:12:-;11788:15;:22;11666:7;;;;11842:16;11857:1;11842:12;:16;:::i;:::-;11832:27;11881:14;11917:16;11955:10;11750:233;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;11750:233:12;;;;;;;;;11723:274;;11750:233;11723:274;;;;;-1:-1:-1;12025:15:12;12034:6;11723:274;12025:15;:::i;12945:1022:3:-;13095:4;13115:15;:2;-1:-1:-1;;;;;13115:13:3;;:15::i;:::-;13111:850;;;13182:2;-1:-1:-1;;;;;13166:36:3;;13224:12;:10;:12::i;:::-;13258:4;13284:7;13313:5;13166:170;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13166:170:3;;;;;;;;-1:-1:-1;;13166:170:3;;;;;;;;;;;;:::i;:::-;;;13146:763;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13519:13:3;;13515:380;;13561:106;;-1:-1:-1;;;13561:106:3;;;;;;;:::i;13515:380::-;13847:6;13841:13;13832:6;13828:2;13824:15;13817:38;13146:763;-1:-1:-1;;;;;;13398:55:3;-1:-1:-1;;;13398:55:3;;-1:-1:-1;13391:62:3;;13111:850;-1:-1:-1;13946:4:3;12945:1022;;;;;;:::o;718:413:0:-;1078:20;1116:8;;;718:413::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:409:13;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:13;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:13;;537:42;;527:2;;593:1;590;583:12;608:161;677:20;;737:6;726:18;;716:29;;706:2;;759:1;756;749:12;774:198;;886:2;874:9;865:7;861:23;857:32;854:2;;;907:6;899;892:22;854:2;935:31;956:9;935:31;:::i;977:274::-;;;1106:2;1094:9;1085:7;1081:23;1077:32;1074:2;;;1127:6;1119;1112:22;1074:2;1155:31;1176:9;1155:31;:::i;:::-;1145:41;;1205:40;1241:2;1230:9;1226:18;1205:40;:::i;:::-;1195:50;;1064:187;;;;;:::o;1256:342::-;;;;1402:2;1390:9;1381:7;1377:23;1373:32;1370:2;;;1423:6;1415;1408:22;1370:2;1451:31;1472:9;1451:31;:::i;:::-;1441:41;;1501:40;1537:2;1526:9;1522:18;1501:40;:::i;:::-;1491:50;;1588:2;1577:9;1573:18;1560:32;1550:42;;1360:238;;;;;:::o;1603:702::-;;;;;1775:3;1763:9;1754:7;1750:23;1746:33;1743:2;;;1797:6;1789;1782:22;1743:2;1825:31;1846:9;1825:31;:::i;:::-;1815:41;;1875:40;1911:2;1900:9;1896:18;1875:40;:::i;:::-;1865:50;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:2;;;2081:6;2073;2066:22;2030:2;2109:22;;2162:4;2154:13;;2150:27;-1:-1:-1;2140:2:13;;2196:6;2188;2181:22;2140:2;2224:75;2291:7;2286:2;2273:16;2268:2;2264;2260:11;2224:75;:::i;:::-;2214:85;;;1733:572;;;;;;;:::o;2310:369::-;;;2436:2;2424:9;2415:7;2411:23;2407:32;2404:2;;;2457:6;2449;2442:22;2404:2;2485:31;2506:9;2485:31;:::i;:::-;2475:41;;2566:2;2555:9;2551:18;2538:32;2613:5;2606:13;2599:21;2592:5;2589:32;2579:2;;2640:6;2632;2625:22;2579:2;2668:5;2658:15;;;2394:285;;;;;:::o;2684:266::-;;;2813:2;2801:9;2792:7;2788:23;2784:32;2781:2;;;2834:6;2826;2819:22;2781:2;2862:31;2883:9;2862:31;:::i;:::-;2852:41;2940:2;2925:18;;;;2912:32;;-1:-1:-1;;;2771:179:13:o;2955:961::-;;3070:2;3113;3101:9;3092:7;3088:23;3084:32;3081:2;;;3134:6;3126;3119:22;3081:2;3179:9;3166:23;3212:18;3204:6;3201:30;3198:2;;;3249:6;3241;3234:22;3198:2;3277:22;;3330:4;3322:13;;3318:27;-1:-1:-1;3308:2:13;;3364:6;3356;3349:22;3308:2;3405;3392:16;3428:65;3443:49;3489:2;3443:49;:::i;:::-;3428:65;:::i;:::-;3527:15;;;3558:12;;;;3590:11;;;3628;;;3620:20;;3616:29;;3613:42;-1:-1:-1;3610:2:13;;;3673:6;3665;3658:22;3610:2;3700:6;3691:15;;3715:171;3729:2;3726:1;3723:9;3715:171;;;3786:25;3807:3;3786:25;:::i;:::-;3774:38;;3747:1;3740:9;;;;;3832:12;;;;3864;;3715:171;;;-1:-1:-1;3905:5:13;3050:866;-1:-1:-1;;;;;;;3050:866:13:o;3921:1406::-;;4067:2;4110;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;4176:9;4163:23;4205:18;4246:2;4238:6;4235:14;4232:2;;;4267:6;4259;4252:22;4232:2;4310:6;4299:9;4295:22;4285:32;;4355:7;4348:4;4344:2;4340:13;4336:27;4326:2;;4382:6;4374;4367:22;4326:2;4423;4410:16;4446:65;4461:49;4507:2;4461:49;:::i;4446:65::-;4545:15;;;4576:12;;;;4608:11;;;4638:4;4669:11;;;4661:20;;4657:29;;4654:42;-1:-1:-1;4651:2:13;;;4714:6;4706;4699:22;4651:2;4741:6;4732:15;;4756:541;4770:2;4767:1;4764:9;4756:541;;;4841:2;4835:3;4826:7;4822:17;4818:26;4815:2;;;4862:6;4854;4847:22;4815:2;4904;4898:9;4950:2;4942:6;4938:15;5007:6;4995:10;4992:22;4987:2;4975:10;4972:18;4969:46;4966:2;;;5018:18;;:::i;:::-;5051:22;;5101:25;5122:3;5101:25;:::i;:::-;5086:41;;5177:12;;;5164:26;5147:15;;;5140:51;5204:19;;4788:1;4781:9;;;;;5243:12;;;;5275;;;;4756:541;;;-1:-1:-1;5316:5:13;;4047:1280;-1:-1:-1;;;;;;;;;4047:1280:13:o;5332:257::-;;5443:2;5431:9;5422:7;5418:23;5414:32;5411:2;;;5464:6;5456;5449:22;5411:2;5508:9;5495:23;5527:32;5553:5;5527:32;:::i;5594:261::-;;5716:2;5704:9;5695:7;5691:23;5687:32;5684:2;;;5737:6;5729;5722:22;5684:2;5774:9;5768:16;5793:32;5819:5;5793:32;:::i;5860:482::-;;5982:2;5970:9;5961:7;5957:23;5953:32;5950:2;;;6003:6;5995;5988:22;5950:2;6048:9;6035:23;6081:18;6073:6;6070:30;6067:2;;;6118:6;6110;6103:22;6067:2;6146:22;;6199:4;6191:13;;6187:27;-1:-1:-1;6177:2:13;;6233:6;6225;6218:22;6177:2;6261:75;6328:7;6323:2;6310:16;6305:2;6301;6297:11;6261:75;:::i;6347:196::-;;6458:2;6446:9;6437:7;6433:23;6429:32;6426:2;;;6479:6;6471;6464:22;6426:2;6507:30;6527:9;6507:30;:::i;6548:270::-;;;6675:2;6663:9;6654:7;6650:23;6646:32;6643:2;;;6696:6;6688;6681:22;6643:2;6724:30;6744:9;6724:30;:::i;:::-;6714:40;;6773:39;6808:2;6797:9;6793:18;6773:39;:::i;6823:190::-;;6935:2;6923:9;6914:7;6910:23;6906:32;6903:2;;;6956:6;6948;6941:22;6903:2;-1:-1:-1;6984:23:13;;6893:120;-1:-1:-1;6893:120:13:o;7018:259::-;;7099:5;7093:12;7126:6;7121:3;7114:19;7142:63;7198:6;7191:4;7186:3;7182:14;7175:4;7168:5;7164:16;7142:63;:::i;:::-;7259:2;7238:15;-1:-1:-1;;7234:29:13;7225:39;;;;7266:4;7221:50;;7069:208;-1:-1:-1;;7069:208:13:o;7282:470::-;;7499:6;7493:13;7515:53;7561:6;7556:3;7549:4;7541:6;7537:17;7515:53;:::i;:::-;7631:13;;7590:16;;;;7653:57;7631:13;7590:16;7687:4;7675:17;;7653:57;:::i;:::-;7726:20;;7469:283;-1:-1:-1;;;;7469:283:13:o;7757:546::-;8014:19;;;8058:2;8049:12;;8042:28;;;;-1:-1:-1;;8158:2:13;8154:15;;;8150:24;;8145:2;8136:12;;8129:46;8200:2;8191:12;;8184:28;;;;8247:15;;;8243:24;8237:3;8228:13;;8221:47;8293:3;8284:13;;8004:299::o;8308:203::-;-1:-1:-1;;;;;8472:32:13;;;;8454:51;;8442:2;8427:18;;8409:102::o;8516:490::-;-1:-1:-1;;;;;8785:15:13;;;8767:34;;8837:15;;8832:2;8817:18;;8810:43;8884:2;8869:18;;8862:34;;;8932:3;8927:2;8912:18;;8905:31;;;8516:490;;8953:47;;8980:19;;8972:6;8953:47;:::i;:::-;8945:55;8719:287;-1:-1:-1;;;;;;8719:287:13:o;9011:635::-;9182:2;9234:21;;;9304:13;;9207:18;;;9326:22;;;9011:635;;9182:2;9405:15;;;;9379:2;9364:18;;;9011:635;9451:169;9465:6;9462:1;9459:13;9451:169;;;9526:13;;9514:26;;9595:15;;;;9560:12;;;;9487:1;9480:9;9451:169;;;-1:-1:-1;9637:3:13;;9162:484;-1:-1:-1;;;;;;9162:484:13:o;9651:187::-;9816:14;;9809:22;9791:41;;9779:2;9764:18;;9746:92::o;9843:221::-;;9992:2;9981:9;9974:21;10012:46;10054:2;10043:9;10039:18;10031:6;10012:46;:::i;10069:422::-;10271:2;10253:21;;;10310:2;10290:18;;;10283:30;10349:34;10344:2;10329:18;;10322:62;10420:28;10415:2;10400:18;;10393:56;10481:3;10466:19;;10243:248::o;10496:414::-;10698:2;10680:21;;;10737:2;10717:18;;;10710:30;10776:34;10771:2;10756:18;;10749:62;-1:-1:-1;;;10842:2:13;10827:18;;10820:48;10900:3;10885:19;;10670:240::o;10915:402::-;11117:2;11099:21;;;11156:2;11136:18;;;11129:30;11195:34;11190:2;11175:18;;11168:62;-1:-1:-1;;;11261:2:13;11246:18;;11239:36;11307:3;11292:19;;11089:228::o;11322:352::-;11524:2;11506:21;;;11563:2;11543:18;;;11536:30;11602;11597:2;11582:18;;11575:58;11665:2;11650:18;;11496:178::o;11679:354::-;11881:2;11863:21;;;11920:2;11900:18;;;11893:30;11959:32;11954:2;11939:18;;11932:60;12024:2;12009:18;;11853:180::o;12038:407::-;12240:2;12222:21;;;12279:2;12259:18;;;12252:30;12318:34;12313:2;12298:18;;12291:62;-1:-1:-1;;;12384:2:13;12369:18;;12362:41;12435:3;12420:19;;12212:233::o;12450:400::-;12652:2;12634:21;;;12691:2;12671:18;;;12664:30;12730:34;12725:2;12710:18;;12703:62;-1:-1:-1;;;12796:2:13;12781:18;;12774:34;12840:3;12825:19;;12624:226::o;12855:349::-;13057:2;13039:21;;;13096:2;13076:18;;;13069:30;13135:27;13130:2;13115:18;;13108:55;13195:2;13180:18;;13029:175::o;13209:352::-;13411:2;13393:21;;;13450:2;13430:18;;;13423:30;13489;13484:2;13469:18;;13462:58;13552:2;13537:18;;13383:178::o;13566:354::-;13768:2;13750:21;;;13807:2;13787:18;;;13780:30;13846:32;13841:2;13826:18;;13819:60;13911:2;13896:18;;13740:180::o;13925:406::-;14127:2;14109:21;;;14166:2;14146:18;;;14139:30;14205:34;14200:2;14185:18;;14178:62;-1:-1:-1;;;14271:2:13;14256:18;;14249:40;14321:3;14306:19;;14099:232::o;14336:408::-;14538:2;14520:21;;;14577:2;14557:18;;;14550:30;14616:34;14611:2;14596:18;;14589:62;-1:-1:-1;;;14682:2:13;14667:18;;14660:42;14734:3;14719:19;;14510:234::o;14749:354::-;14951:2;14933:21;;;14990:2;14970:18;;;14963:30;15029:32;15024:2;15009:18;;15002:60;15094:2;15079:18;;14923:180::o;15108:420::-;15310:2;15292:21;;;15349:2;15329:18;;;15322:30;15388:34;15383:2;15368:18;;15361:62;15459:26;15454:2;15439:18;;15432:54;15518:3;15503:19;;15282:246::o;15533:346::-;15735:2;15717:21;;;15774:2;15754:18;;;15747:30;-1:-1:-1;;;15808:2:13;15793:18;;15786:52;15870:2;15855:18;;15707:172::o;15884:341::-;16086:2;16068:21;;;16125:2;16105:18;;;16098:30;-1:-1:-1;;;16159:2:13;16144:18;;16137:47;16216:2;16201:18;;16058:167::o;16230:406::-;16432:2;16414:21;;;16471:2;16451:18;;;16444:30;16510:34;16505:2;16490:18;;16483:62;-1:-1:-1;;;16576:2:13;16561:18;;16554:40;16626:3;16611:19;;16404:232::o;16641:405::-;16843:2;16825:21;;;16882:2;16862:18;;;16855:30;16921:34;16916:2;16901:18;;16894:62;-1:-1:-1;;;16987:2:13;16972:18;;16965:39;17036:3;17021:19;;16815:231::o;17051:356::-;17253:2;17235:21;;;17272:18;;;17265:30;17331:34;17326:2;17311:18;;17304:62;17398:2;17383:18;;17225:182::o;17412:408::-;17614:2;17596:21;;;17653:2;17633:18;;;17626:30;17692:34;17687:2;17672:18;;17665:62;-1:-1:-1;;;17758:2:13;17743:18;;17736:42;17810:3;17795:19;;17586:234::o;17825:400::-;18027:2;18009:21;;;18066:2;18046:18;;;18039:30;18105:34;18100:2;18085:18;;18078:62;-1:-1:-1;;;18171:2:13;18156:18;;18149:34;18215:3;18200:19;;17999:226::o;18230:402::-;18432:2;18414:21;;;18471:2;18451:18;;;18444:30;18510:34;18505:2;18490:18;;18483:62;-1:-1:-1;;;18576:2:13;18561:18;;18554:36;18622:3;18607:19;;18404:228::o;18637:356::-;18839:2;18821:21;;;18858:18;;;18851:30;18917:34;18912:2;18897:18;;18890:62;18984:2;18969:18;;18811:182::o;18998:405::-;19200:2;19182:21;;;19239:2;19219:18;;;19212:30;19278:34;19273:2;19258:18;;19251:62;-1:-1:-1;;;19344:2:13;19329:18;;19322:39;19393:3;19378:19;;19172:231::o;19408:411::-;19610:2;19592:21;;;19649:2;19629:18;;;19622:30;19688:34;19683:2;19668:18;;19661:62;-1:-1:-1;;;19754:2:13;19739:18;;19732:45;19809:3;19794:19;;19582:237::o;19824:347::-;20026:2;20008:21;;;20065:2;20045:18;;;20038:30;20104:25;20099:2;20084:18;;20077:53;20162:2;20147:18;;19998:173::o;20176:399::-;20378:2;20360:21;;;20417:2;20397:18;;;20390:30;20456:34;20451:2;20436:18;;20429:62;-1:-1:-1;;;20522:2:13;20507:18;;20500:33;20565:3;20550:19;;20350:225::o;20580:415::-;20782:2;20764:21;;;20821:2;20801:18;;;20794:30;20860:34;20855:2;20840:18;;20833:62;-1:-1:-1;;;20926:2:13;20911:18;;20904:49;20985:3;20970:19;;20754:241::o;21000:397::-;21202:2;21184:21;;;21241:2;21221:18;;;21214:30;21280:34;21275:2;21260:18;;21253:62;-1:-1:-1;;;21346:2:13;21331:18;;21324:31;21387:3;21372:19;;21174:223::o;21402:352::-;21604:2;21586:21;;;21643:2;21623:18;;;21616:30;21682;21677:2;21662:18;;21655:58;21745:2;21730:18;;21576:178::o;21759:355::-;21961:2;21943:21;;;22000:2;21980:18;;;21973:30;22039:33;22034:2;22019:18;;22012:61;22105:2;22090:18;;21933:181::o;22119:413::-;22321:2;22303:21;;;22360:2;22340:18;;;22333:30;22399:34;22394:2;22379:18;;22372:62;-1:-1:-1;;;22465:2:13;22450:18;;22443:47;22522:3;22507:19;;22293:239::o;22537:397::-;22739:2;22721:21;;;22778:2;22758:18;;;22751:30;22817:34;22812:2;22797:18;;22790:62;-1:-1:-1;;;22883:2:13;22868:18;;22861:31;22924:3;22909:19;;22711:223::o;22939:407::-;23141:2;23123:21;;;23180:2;23160:18;;;23153:30;23219:34;23214:2;23199:18;;23192:62;-1:-1:-1;;;23285:2:13;23270:18;;23263:41;23336:3;23321:19;;23113:233::o;23351:177::-;23497:25;;;23485:2;23470:18;;23452:76::o;23533:251::-;23603:2;23597:9;23633:17;;;23680:18;23665:34;;23701:22;;;23662:62;23659:2;;;23727:18;;:::i;:::-;23763:2;23756:22;23577:207;;-1:-1:-1;23577:207:13:o;23789:192::-;;23888:18;23880:6;23877:30;23874:2;;;23910:18;;:::i;:::-;-1:-1:-1;23970:4:13;23951:17;;;23947:28;;23864:117::o;23986:253::-;;-1:-1:-1;;;;;24115:2:13;24112:1;24108:10;24145:2;24142:1;24138:10;24176:3;24172:2;24168:12;24163:3;24160:21;24157:2;;;24184:18;;:::i;24244:128::-;;24315:1;24311:6;24308:1;24305:13;24302:2;;;24321:18;;:::i;:::-;-1:-1:-1;24357:9:13;;24292:80::o;24377:120::-;;24443:1;24433:2;;24448:18;;:::i;:::-;-1:-1:-1;24482:9:13;;24423:74::o;24502:168::-;;24608:1;24604;24600:6;24596:14;24593:1;24590:21;24585:1;24578:9;24571:17;24567:45;24564:2;;;24615:18;;:::i;:::-;-1:-1:-1;24655:9:13;;24554:116::o;24675:125::-;;24743:1;24740;24737:8;24734:2;;;24748:18;;:::i;:::-;-1:-1:-1;24785:9:13;;24724:76::o;24805:258::-;24877:1;24887:113;24901:6;24898:1;24895:13;24887:113;;;24977:11;;;24971:18;24958:11;;;24951:39;24923:2;24916:10;24887:113;;;25018:6;25015:1;25012:13;25009:2;;;-1:-1:-1;;25053:1:13;25035:16;;25028:27;24858:205::o;25068:380::-;25153:1;25143:12;;25200:1;25190:12;;;25211:2;;25265:4;25257:6;25253:17;25243:27;;25211:2;25318;25310:6;25307:14;25287:18;25284:38;25281:2;;;25364:10;25359:3;25355:20;25352:1;25345:31;25399:4;25396:1;25389:15;25427:4;25424:1;25417:15;25453:197;;25519:6;25560:2;25553:5;25549:14;25587:2;25578:7;25575:15;25572:2;;;25593:18;;:::i;:::-;25642:1;25629:15;;25499:151;-1:-1:-1;;;25499:151:13:o;25655:135::-;;-1:-1:-1;;25715:17:13;;25712:2;;;25735:18;;:::i;:::-;-1:-1:-1;25782:1:13;25771:13;;25702:88::o;25795:112::-;;25853:1;25843:2;;25858:18;;:::i;:::-;-1:-1:-1;25892:9:13;;25833:74::o;25912:127::-;25973:10;25968:3;25964:20;25961:1;25954:31;26004:4;26001:1;25994:15;26028:4;26025:1;26018:15;26044:127;26105:10;26100:3;26096:20;26093:1;26086:31;26136:4;26133:1;26126:15;26160:4;26157:1;26150:15;26176:127;26237:10;26232:3;26228:20;26225:1;26218:31;26268:4;26265:1;26258:15;26292:4;26289:1;26282:15;26308:133;-1:-1:-1;;;;;;26384:32:13;;26374:43;;26364:2;;26431:1;26428;26421:12;26364:2;26354:87;:::o

Swarm Source

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