ETH Price: $3,407.38 (-3.19%)
Gas: 9 Gwei

Token

Remarkable Women (RemarkableWomen)
 

Overview

Max Total Supply

6,000 RemarkableWomen

Holders

2,140

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 RemarkableWomen
0x22b0cd01f0C1F9a43557EF5f1D9F5ee1d93646Dc
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
RemarkableWomen

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity Multiple files format)

File 13 of 14: RemarkableWomen.sol
// SPDX-License-Identifier: GPL-3.0

// HOFHOFHOFHOFHOFHOFHOFHOFHOFHOFHHOFHOFHOFHOF
// HOFHOFHOFHOF      HOFHOFH      HOFHOFHOFHOF
// HOFHOFHOFHOF      HOFHF        HOFHOFHOFHOF
// HOFHOFHOFHOF      HOF          HOFHOFHOFHOF
// HOFHOFHOFHOF      HOFHOFH      HOFHOFHOFHOF
// HOFHOFHOFHOF                   HOFHOFHOFHOF
// HOFHOFHOFHOF                   HOFHOFHOFHOF
// HOFHOFHOFHOF      HOFHOFH      HOFHOFHOFHOF
// HOFHOFHOFHOF      HOFHOFH      HOFHOFHOFHOF
// HOFHOFHOFHOF      HOFHOFH      HOFHOFHOFHOF
// HOFHOFHOFHOF      HOFHOFH      HOFHOFHOFHOF
// HOFHOFHOFHOFHOFHOFHOFHOFHOFHOFHHOFHOFHOFHOF

// -----------    House Of First   -----------
// --   Remarkable Women - Rachel Winter    --

pragma solidity ^0.8.10;
import "./ERC721Enum.sol";
import "./Ownable.sol";
import "./Strings.sol";
import "./ReentrancyGuard.sol";

contract OwnableDelegateProxy {}

/**
 * Used to delegate ownership of a contract to another address, to save on unneeded transactions to approve contract use for users
 */
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

contract RemarkableWomen is ERC721Enum, Ownable, ReentrancyGuard {
    using Strings for uint256;
    string public baseURI;
    
    //sale settings
    bool ambassadorMode = true; // switched to false before presale starts
    uint256 public SALE_START_TIMESTAMP = 1643565600; // time when presale starts - NOT FINAL VALUE - TBC
    uint256 public price = 0.06 ether; // NOT FINAL VALUE - TBC
    uint256 public maxSupply = 5000; // NOT FINAL VALUE - TBC
    uint256 public reserved = 300; // 300 NFTs reserved for vault
    uint256 public maxMint = 20; // max per transaction
    uint256 public ambassadorAllowance = 2; // max per ambassador
    uint256 public presaleAllowance = 5; // max per presale address
    bool public salePaused = false;

    // whitelist
    address public constant WHITELIST_SIGNER = 0x333D70087c40b98bAC3C955AcB263213b63D9C1c;
    uint256 public disableWhitelistTimestamp = SALE_START_TIMESTAMP + (86400 * 1); // presale active for 1 day
    mapping(address => uint256) public whitelistPurchases;
    
    string _name = "Remarkable Women";
    string _symbol = "RemarkableWomen";
    string _initBaseURI = "https://houseoffirst.com:1335/remarkablewomen/opensea/";

    address public proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; // OpenSea Mainnet Proxy Registry address
    
    constructor() ERC721P(_name, _symbol) {
        setBaseURI(_initBaseURI);
    }

    function getWhitelistPurchases(address addr) external view returns (uint256) {
        return whitelistPurchases[addr];
    }
    
    // internal
    function _baseURI() internal view virtual returns (string memory) {
        return baseURI;
    }
    
    function mintingHasStarted() public view returns (bool) {
        return block.timestamp > SALE_START_TIMESTAMP;
    }

    function whitelistHasEnded() public view returns (bool) {
        return block.timestamp > disableWhitelistTimestamp;
    }

    function getPresaleAllowance() public view returns (uint256) {
        if(ambassadorMode) {
            return ambassadorAllowance;
        }
        return presaleAllowance;
    }
    
    /**
     * @dev Gets current NFT Price
     */
    function getNFTPrice() public view returns (uint256) {
        if(ambassadorMode) {
            return 0;
        }
        return price;
    }
    
    /* whitelist */
    function isWhitelisted(address user, bytes memory signature) public pure returns (bool) {
        bytes32 messageHash = keccak256(abi.encodePacked(user));
        bytes32 ethSignedMessageHash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", messageHash));
        return recoverSigner(ethSignedMessageHash, signature) == WHITELIST_SIGNER;
    }
    
    function recoverSigner(bytes32 _ethSignedMessageHash, bytes memory _signature) private pure returns (address) {
        (bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature);
        return ecrecover(_ethSignedMessageHash, v, r, s);
    }
    
    function splitSignature(bytes memory sig) private pure returns (bytes32 r, bytes32 s, uint8 v) {
        require(sig.length == 65, "invalid signature length");
        assembly {
            r := mload(add(sig, 32))
            s := mload(add(sig, 64))
            v := byte(0, mload(add(sig, 96)))
        }
    }

    // public minting
    function mintNFT(uint256 numberOfNfts) public payable nonReentrant {
        require(block.timestamp > disableWhitelistTimestamp, "Public Sale has not started");
        uint256 s = _owners.length;
        require(!salePaused, "Sale Paused");
        require(numberOfNfts > 0 && numberOfNfts <= maxMint, "Invalid numberOfNfts");
        require((s + numberOfNfts) <= (maxSupply - reserved), "Exceeds Max Supply");
        require(msg.value >= price * numberOfNfts, "Not Enough ETH");
        
        for (uint256 i = 0; i < numberOfNfts; ++i) {
            _mint(msg.sender, s + i);
        }
        delete s;
    }

    // whitelist minting
    function whitelistMintNFT(uint256 numberOfNfts, bytes memory signature) public payable nonReentrant {
        require(!salePaused, "Sale Paused");
        uint256 s = _owners.length;
        require((s + numberOfNfts) <= (maxSupply - reserved), "Exceeds Max Supply");
        require(isWhitelisted(msg.sender, signature), "Address not whitelisted");

        uint256 allowance = presaleAllowance;

        // ambassador minting
        if(ambassadorMode) {
            allowance = ambassadorAllowance;
        }
        // presale minting
        else {
            require(block.timestamp > SALE_START_TIMESTAMP, "Sale has not started");
            require(msg.value >= price * numberOfNfts, "Not Enough ETH");
        }
        require(numberOfNfts > 0 && numberOfNfts <= allowance, "Invalid numberOfNfts");
        require(whitelistPurchases[msg.sender] + numberOfNfts <= allowance, "Exceeds Allocation");

        whitelistPurchases[msg.sender] += numberOfNfts;
        for (uint256 i = 0; i < numberOfNfts; ++i) {
            _mint(msg.sender, s + i);
        }
        delete s;
        delete allowance;
    }

    // admin minting for reserved NFTs
    function giftNFT(uint256[] calldata quantity, address[] calldata recipient) external onlyOwner {
        require(quantity.length == recipient.length, "Invalid quantities and recipients (length mismatch)");
        uint256 totalQuantity = 0;
        uint256 s = _owners.length;
        for (uint256 i = 0; i < quantity.length; ++i) {
            totalQuantity += quantity[i];
        }
        require(s + totalQuantity <= maxSupply, "Exceeds Max Supply");
        require(totalQuantity <= reserved, "Exceeds Max Reserved");

        // update remaining reserved count
        reserved -= totalQuantity;

        delete totalQuantity;
        for (uint256 i = 0; i < recipient.length; ++i) {
            for (uint256 j = 0; j < quantity[i]; ++j) {
                _mint(recipient[i], s++);
            }
        }
        delete s;
    }
    
    function _mint(address to, uint256 tokenId) internal virtual override {
        _owners.push(to);
        emit Transfer(address(0), to, tokenId);
    }

    function batchTransferFrom(address _from, address _to, uint256[] memory _tokenIds) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            transferFrom(_from, _to, _tokenIds[i]);
        }
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
    }

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

    function setReserved(uint256 _reserved) public onlyOwner {
        reserved = _reserved;
    }

    function setMaxMintAmount(uint256 _newMaxMintAmount) public onlyOwner {
        maxMint = _newMaxMintAmount;
    }

    function setAmbassadorAllowance(uint256 _newAllowance) public onlyOwner {
        ambassadorAllowance = _newAllowance;
    }

    function setPresaleAllowance(uint256 _newAllowance) public onlyOwner {
        presaleAllowance = _newAllowance;
    }

    function setMaxSupply(uint256 _newMaxSupply) public onlyOwner {
        maxSupply = _newMaxSupply;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setSalePaused(bool _salePaused) public onlyOwner {
        salePaused = _salePaused;
    }

    function setAmbassadorMode(bool _mode) public onlyOwner {
        ambassadorMode = _mode;
    }
    
    function setDisableWhitelistTimestamp(uint256 _disableWhitelistTimestamp) public onlyOwner {
        disableWhitelistTimestamp = _disableWhitelistTimestamp;
    }

    function setPresaleStartTimestamp(uint256 _timestamp) public onlyOwner {
        SALE_START_TIMESTAMP = _timestamp;
        disableWhitelistTimestamp = SALE_START_TIMESTAMP + (86400 * 1); // presale active for 1 day
    }

    // for transparency regarding ETH raised
    uint256 totalWithdrawn = 0;

    function getTotalWithdrawn() public view returns (uint256) {
        return totalWithdrawn;
    }

    function getTotalBalance() public view returns (uint256) {
        return address(this).balance;
    }

    function getTotalRaised() public view returns (uint256) {
        return getTotalWithdrawn() + getTotalBalance();
    }

    /**
     * withdraw ETH from the contract (callable by Owner only)
     */
    function withdraw() public payable onlyOwner {
        uint256 val = address(this).balance;
        (bool success, ) = payable(msg.sender).call{
            value: val
        }("");
        require(success);
        totalWithdrawn += val;
        delete val;
    }
    /**
     * whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator) override public view returns (bool) {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }
        return super.isApprovedForAll(owner, operator);
    }
}

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 14: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 3 of 14: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 14: ERC721Enum.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import "./ERC721P.sol";
import "./IERC721Enumerable.sol";

abstract contract ERC721Enum is ERC721P, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC165, ERC721P)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256 tokenId)
    {
        require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 count;
        for (uint256 i; i < _owners.length; ++i) {
            if (owner == _owners[i]) {
                if (count == index) return i;
                else ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }

    function tokensOfOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

File 5 of 14: ERC721P.sol
// SPDX-License-Identifier: GPL-3.0

// Thank you to ToyBoogers & Pagzi Tech for the optimised ERC721
pragma solidity ^0.8.10;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./ERC165.sol";

abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
    
    function getOwners() external view returns (address[] memory) {
        return _owners;
    }

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

    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        uint256 count = 0;
        uint256 length = _owners.length;
        for (uint256 i = 0; i < length; ++i) {
            if (owner == _owners[i]) {
                ++count;
            }
        }
        delete length;
        return count;
    }

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

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721P.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

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

    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

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

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

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

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

    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721P.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

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

    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);
        _owners.push(to);

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

    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721P.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

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

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721P.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);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721P.ownerOf(tokenId), to, tokenId);
    }

    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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 of 14: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 7 of 14: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 14: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 10 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 11 of 14: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 12 of 14: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 14 of 14: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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":"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":[],"name":"SALE_START_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SIGNER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ambassadorAllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableWhitelistTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPresaleAllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalRaised","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalWithdrawn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getWhitelistPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"giftNFT","outputs":[],"stateMutability":"nonpayable","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":"address","name":"user","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingHasStarted","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":"presaleAllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","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":"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":[],"name":"salePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAllowance","type":"uint256"}],"name":"setAmbassadorAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mode","type":"bool"}],"name":"setAmbassadorMode","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_disableWhitelistTimestamp","type":"uint256"}],"name":"setDisableWhitelistTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAllowance","type":"uint256"}],"name":"setPresaleAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"setPresaleStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reserved","type":"uint256"}],"name":"setReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_salePaused","type":"bool"}],"name":"setSalePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistHasEnded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"whitelistMintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526008805460ff199081166001179091556361f6d220600981905566d529ae9e860000600a55611388600b5561012c600c556014600d556002600e556005600f55601080549092169091556200005d9062015180620004ca565b6011556040805180820190915260108082526f2932b6b0b935b0b13632902bb7b6b2b760811b6020909201918252620000999160139162000424565b5060408051808201909152600f8082526e2932b6b0b935b0b13632abb7b6b2b760891b6020909201918252620000d29160149162000424565b5060405180606001604052806036815260200162004131603691398051620001039160159160209091019062000424565b50601680546001600160a01b03191673a5409ec958c83c3f309868babaca7c86dcb077c117905560006017553480156200013c57600080fd5b50601380546200014c90620004f1565b80601f01602080910402602001604051908101604052809291908181526020018280546200017a90620004f1565b8015620001cb5780601f106200019f57610100808354040283529160200191620001cb565b820191906000526020600020905b815481529060010190602001808311620001ad57829003601f168201915b505050505060148054620001df90620004f1565b80601f01602080910402602001604051908101604052809291908181526020018280546200020d90620004f1565b80156200025e5780601f1062000232576101008083540402835291602001916200025e565b820191906000526020600020905b8154815290600101906020018083116200024057829003601f168201915b505084516200027893506000925060208601915062000424565b5080516200028e90600190602084019062000424565b505050620002ab620002a56200035660201b60201c565b6200035a565b600160065560158054620003509190620002c590620004f1565b80601f0160208091040260200160405190810160405280929190818152602001828054620002f390620004f1565b8015620003445780601f10620003185761010080835404028352916020019162000344565b820191906000526020600020905b8154815290600101906020018083116200032657829003601f168201915b5050620003ac92505050565b6200052e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200040b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200042090600790602084019062000424565b5050565b8280546200043290620004f1565b90600052602060002090601f016020900481019282620004565760008555620004a1565b82601f106200047157805160ff1916838001178555620004a1565b82800160010185558215620004a1579182015b82811115620004a157825182559160200191906001019062000484565b50620004af929150620004b3565b5090565b5b80821115620004af5760008155600101620004b4565b60008219821115620004ec57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200050657607f821691505b602082108114156200052857634e487b7160e01b600052602260045260246000fd5b50919050565b613bf3806200053e6000396000f3fe60806040526004361061038c5760003560e01c80638462151c116101dc578063c87b56dd11610102578063f3993d11116100a0578063fb107a4f1161006f578063fb107a4f14610a2e578063fc0bc80d14610a43578063fe60d12c14610a63578063ff8abd1f14610a7957600080fd5b8063f3993d11146109cf578063f54bb965146109ef578063f632fdb014610a04578063fae40c7c14610a1b57600080fd5b8063dadbaff9116100dc578063dadbaff91461092c578063e3bc77621461096f578063e985e9c51461098f578063f2fde38b146109af57600080fd5b8063c87b56dd146108c9578063cd7c0326146108e9578063d5abeb011461091657600080fd5b8063946807fd1161017a578063a0e67e2b11610149578063a0e67e2b14610847578063a22cb46514610869578063b88d4fde14610889578063c29af274146108a957600080fd5b8063946807fd146107f157806395d89b41146108075780639f5502931461081c578063a035b1fe1461083157600080fd5b80638da5cb5b116101b65780638da5cb5b14610773578063910dc0d81461079e57806391b7f5ed146107be57806392642744146107de57600080fd5b80638462151c1461071157806389404a791461073e5780638d92becd1461075357600080fd5b8063417b9483116102c15780636343ed8a1161025f5780636f8b44b01161022e5780636f8b44b0146106a657806370a08231146106c6578063715018a6146106e65780637501f741146106fb57600080fd5b80636343ed8a146106245780636352211e1461065157806367596872146106715780636c0360eb1461069157600080fd5b80634f6ccce71161029b5780634f6ccce7146105b357806354964d27146105d357806355f804b3146105ea5780635d08c1ae1461060a57600080fd5b8063417b94831461055557806342842e0e1461057d5780634298abbe1461059d57600080fd5b80631f0a8fa71161032e5780632f745c59116103085780632f745c5914610501578063371e6f99146105215780633ccfd60b146105375780633e28fa8a1461053f57600080fd5b80631f0a8fa7146104a157806323b872dd146104c15780632d6e71b6146104e157600080fd5b8063088a4ed01161036a578063088a4ed01461042d578063095ea7b31461044f57806312b583491461046f57806318160ddd1461048c57600080fd5b806301ffc9a71461039157806306fdde03146103c6578063081812fc146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac3660046132f3565b610a99565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103db610af5565b6040516103bd9190613386565b3480156103f457600080fd5b50610408610403366004613399565b610b87565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103bd565b34801561043957600080fd5b5061044d610448366004613399565b610c32565b005b34801561045b57600080fd5b5061044d61046a3660046133d4565b610c9e565b34801561047b57600080fd5b50475b6040519081526020016103bd565b34801561049857600080fd5b5060025461047e565b3480156104ad57600080fd5b506103b16104bc366004613514565b610df7565b3480156104cd57600080fd5b5061044d6104dc366004613564565b610ec9565b3480156104ed57600080fd5b5061044d6104fc366004613399565b610f50565b34801561050d57600080fd5b5061047e61051c3660046133d4565b610fbc565b34801561052d57600080fd5b5061047e600e5481565b61044d6110d8565b34801561054b57600080fd5b5061047e600f5481565b34801561056157600080fd5b5061040873333d70087c40b98bac3c955acb263213b63d9c1c81565b34801561058957600080fd5b5061044d610598366004613564565b6111b1565b3480156105a957600080fd5b5061047e60115481565b3480156105bf57600080fd5b5061047e6105ce366004613399565b6111cc565b3480156105df57600080fd5b5060095442116103b1565b3480156105f657600080fd5b5061044d6106053660046135a5565b611229565b34801561061657600080fd5b506010546103b19060ff1681565b34801561063057600080fd5b5061047e61063f3660046135ee565b60126020526000908152604090205481565b34801561065d57600080fd5b5061040861066c366004613399565b6112a7565b34801561067d57600080fd5b5061044d61068c366004613399565b611354565b34801561069d57600080fd5b506103db6113c0565b3480156106b257600080fd5b5061044d6106c1366004613399565b61144e565b3480156106d257600080fd5b5061047e6106e13660046135ee565b6114ba565b3480156106f257600080fd5b5061044d6115b9565b34801561070757600080fd5b5061047e600d5481565b34801561071d57600080fd5b5061073161072c3660046135ee565b61162c565b6040516103bd919061360b565b34801561074a57600080fd5b5060175461047e565b34801561075f57600080fd5b5061044d61076e366004613664565b611726565b34801561077f57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610408565b3480156107aa57600080fd5b5061044d6107b9366004613399565b6117be565b3480156107ca57600080fd5b5061044d6107d9366004613399565b61182a565b61044d6107ec366004613399565b611896565b3480156107fd57600080fd5b5061047e60095481565b34801561081357600080fd5b506103db611af0565b34801561082857600080fd5b5061047e611aff565b34801561083d57600080fd5b5061047e600a5481565b34801561085357600080fd5b5061085c611b14565b6040516103bd919061367f565b34801561087557600080fd5b5061044d6108843660046136cd565b611b82565b34801561089557600080fd5b5061044d6108a4366004613702565b611c7f565b3480156108b557600080fd5b5061044d6108c43660046137ba565b611d0d565b3480156108d557600080fd5b506103db6108e4366004613399565b611f8b565b3480156108f557600080fd5b506016546104089073ffffffffffffffffffffffffffffffffffffffff1681565b34801561092257600080fd5b5061047e600b5481565b34801561093857600080fd5b5061047e6109473660046135ee565b73ffffffffffffffffffffffffffffffffffffffff1660009081526012602052604090205490565b34801561097b57600080fd5b5061044d61098a366004613399565b612064565b34801561099b57600080fd5b506103b16109aa366004613826565b6120e3565b3480156109bb57600080fd5b5061044d6109ca3660046135ee565b6121e4565b3480156109db57600080fd5b5061044d6109ea36600461385f565b6122e0565b3480156109fb57600080fd5b5061047e612322565b348015610a1057600080fd5b5060115442116103b1565b61044d610a2936600461392c565b61233e565b348015610a3a57600080fd5b5061047e612690565b348015610a4f57600080fd5b5061044d610a5e366004613664565b6126ab565b348015610a6f57600080fd5b5061047e600c5481565b348015610a8557600080fd5b5061044d610a94366004613399565b612743565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610aef5750610aef826127af565b92915050565b606060008054610b049061395d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b309061395d565b8015610b7d5780601f10610b5257610100808354040283529160200191610b7d565b820191906000526020600020905b815481529060010190602001808311610b6057829003601f168201915b5050505050905090565b6000610b9282612892565b610c095760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60055473ffffffffffffffffffffffffffffffffffffffff163314610c995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b600d55565b6000610ca9826112a7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d4d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610c00565b3373ffffffffffffffffffffffffffffffffffffffff82161480610d765750610d7681336120e3565b610de85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c00565b610df283836128f6565b505050565b604080517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606085901b16602080830191909152825180830360140181526034830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006054840152607080840182905284518085039091018152609090930190935281519101206000919073333d70087c40b98bac3c955acb263213b63d9c1c610ea98286612996565b73ffffffffffffffffffffffffffffffffffffffff161495945050505050565b610ed33382612a33565b610f455760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c00565b610df2838383612b3a565b60055473ffffffffffffffffffffffffffffffffffffffff163314610fb75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b600c55565b6000610fc7836114ba565b82106110155760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610c00565b6000805b60025481101561108f5760028181548110611036576110366139b1565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff8681169116141561107f5783821415611073579150610aef9050565b61107c82613a0f565b91505b61108881613a0f565b9050611019565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610c00565b60055473ffffffffffffffffffffffffffffffffffffffff16331461113f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b6040514790600090339083908381818185875af1925050503d8060008114611183576040519150601f19603f3d011682016040523d82523d6000602084013e611188565b606091505b505090508061119657600080fd5b81601760008282546111a89190613a48565b90915550505050565b610df283838360405180602001604052806000815250611c7f565b60006111d760025490565b82106112255760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610c00565b5090565b60055473ffffffffffffffffffffffffffffffffffffffff1633146112905760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b80516112a3906007906020840190613235565b5050565b600080600283815481106112bd576112bd6139b1565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080610aef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610c00565b60055473ffffffffffffffffffffffffffffffffffffffff1633146113bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b600f55565b600780546113cd9061395d565b80601f01602080910402602001604051908101604052809291908181526020018280546113f99061395d565b80156114465780601f1061141b57610100808354040283529160200191611446565b820191906000526020600020905b81548152906001019060200180831161142957829003601f168201915b505050505081565b60055473ffffffffffffffffffffffffffffffffffffffff1633146114b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b600b55565b600073ffffffffffffffffffffffffffffffffffffffff82166115455760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610c00565b600254600090815b818110156115b05760028181548110611568576115686139b1565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff868116911614156115a05761159d83613a0f565b92505b6115a981613a0f565b905061154d565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146116205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b61162a6000612d09565b565b6060611637826114ba565b6000106116865760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610c00565b6000611691836114ba565b905060008167ffffffffffffffff8111156116ae576116ae613400565b6040519080825280602002602001820160405280156116d7578160200160208202803683370190505b50905060005b8281101561171e576116ef8582610fbc565b828281518110611701576117016139b1565b60209081029190910101528061171681613a0f565b9150506116dd565b509392505050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461178d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b601080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146118255760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b601155565b60055473ffffffffffffffffffffffffffffffffffffffff1633146118915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b600a55565b600260065414156118e95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c00565b6002600655601154421161193f5760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632053616c6520686173206e6f74207374617274656400000000006044820152606401610c00565b60025460105460ff16156119955760405162461bcd60e51b815260206004820152600b60248201527f53616c65205061757365640000000000000000000000000000000000000000006044820152606401610c00565b6000821180156119a75750600d548211155b6119f35760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206e756d6265724f664e6674730000000000000000000000006044820152606401610c00565b600c54600b54611a039190613a60565b611a0d8383613a48565b1115611a5b5760405162461bcd60e51b815260206004820152601260248201527f45786365656473204d617820537570706c7900000000000000000000000000006044820152606401610c00565b81600a54611a699190613a77565b341015611ab85760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420456e6f756768204554480000000000000000000000000000000000006044820152606401610c00565b60005b82811015611ae657611ad633611ad18385613a48565b612d80565b611adf81613a0f565b9050611abb565b5050600160065550565b606060018054610b049061395d565b600047601754611b0f9190613a48565b905090565b60606002805480602002602001604051908101604052809291908181526020018280548015610b7d57602002820191906000526020600020905b815473ffffffffffffffffffffffffffffffffffffffff168152600190910190602001808311611b4e575050505050905090565b73ffffffffffffffffffffffffffffffffffffffff8216331415611be85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c00565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611c893383612a33565b611cfb5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c00565b611d0784848484612e21565b50505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611d745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b828114611de95760405162461bcd60e51b815260206004820152603360248201527f496e76616c6964207175616e74697469657320616e6420726563697069656e7460448201527f7320286c656e677468206d69736d6174636829000000000000000000000000006064820152608401610c00565b600254600090815b85811015611e2f57868682818110611e0b57611e0b6139b1565b9050602002013583611e1d9190613a48565b9250611e2881613a0f565b9050611df1565b50600b54611e3d8383613a48565b1115611e8b5760405162461bcd60e51b815260206004820152601260248201527f45786365656473204d617820537570706c7900000000000000000000000000006044820152606401610c00565b600c54821115611edd5760405162461bcd60e51b815260206004820152601460248201527f45786365656473204d61782052657365727665640000000000000000000000006044820152606401610c00565b81600c6000828254611eef9190613a60565b90915550600092508290505b83811015611f825760005b878783818110611f1857611f186139b1565b90506020020135811015611f7157611f61868684818110611f3b57611f3b6139b1565b9050602002016020810190611f5091906135ee565b84611f5a81613a0f565b9550612d80565b611f6a81613a0f565b9050611f06565b50611f7b81613a0f565b9050611efb565b50505050505050565b6060611f9682612892565b6120085760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560448201527f6e000000000000000000000000000000000000000000000000000000000000006064820152608401610c00565b6000612012612eaa565b90506000815111612032576040518060200160405280600081525061205d565b8061203c84612eb9565b60405160200161204d929190613ab4565b6040516020818303038152906040525b9392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146120cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b60098190556120dd8162015180613a48565b60115550565b6016546040517fc455279100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009281169190841690829063c455279190602401602060405180830381865afa15801561215b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061217f9190613ae3565b73ffffffffffffffffffffffffffffffffffffffff1614156121a5576001915050610aef565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461224b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b73ffffffffffffffffffffffffffffffffffffffff81166122d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c00565b6122dd81612d09565b50565b60005b8151811015611d07576123108484848481518110612303576123036139b1565b6020026020010151610ec9565b8061231a81613a0f565b9150506122e3565b60085460009060ff16156123375750600e5490565b50600f5490565b600260065414156123915760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c00565b600260065560105460ff16156123e95760405162461bcd60e51b815260206004820152600b60248201527f53616c65205061757365640000000000000000000000000000000000000000006044820152606401610c00565b600254600c54600b546123fc9190613a60565b6124068483613a48565b11156124545760405162461bcd60e51b815260206004820152601260248201527f45786365656473204d617820537570706c7900000000000000000000000000006044820152606401610c00565b61245e3383610df7565b6124aa5760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c69737465640000000000000000006044820152606401610c00565b600f5460085460ff16156124c15750600e5461256f565b60095442116125125760405162461bcd60e51b815260206004820152601460248201527f53616c6520686173206e6f7420737461727465640000000000000000000000006044820152606401610c00565b83600a546125209190613a77565b34101561256f5760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420456e6f756768204554480000000000000000000000000000000000006044820152606401610c00565b60008411801561257f5750808411155b6125cb5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206e756d6265724f664e6674730000000000000000000000006044820152606401610c00565b3360009081526012602052604090205481906125e8908690613a48565b11156126365760405162461bcd60e51b815260206004820152601260248201527f4578636565647320416c6c6f636174696f6e00000000000000000000000000006044820152606401610c00565b3360009081526012602052604081208054869290612655908490613a48565b90915550600090505b848110156126845761267433611ad18386613a48565b61267d81613a0f565b905061265e565b50506001600655505050565b60085460009060ff16156126a45750600090565b50600a5490565b60055473ffffffffffffffffffffffffffffffffffffffff1633146127125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146127aa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b600e55565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061284257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610aef57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610aef565b60025460009082108015610aef5750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106128cc576128cc6139b1565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190612950826112a7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806000806129a585612feb565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa158015612a00573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00151979650505050505050565b6000612a3e82612892565b612ab05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610c00565b6000612abb836112a7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b2a57508373ffffffffffffffffffffffffffffffffffffffff16612b1284610b87565b73ffffffffffffffffffffffffffffffffffffffff16145b806121dc57506121dc81856120e3565b8273ffffffffffffffffffffffffffffffffffffffff16612b5a826112a7565b73ffffffffffffffffffffffffffffffffffffffff1614612be35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610c00565b73ffffffffffffffffffffffffffffffffffffffff8216612c6b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c00565b612c766000826128f6565b8160028281548110612c8a57612c8a6139b1565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b612e2c848484612b3a565b612e388484848461305f565b611d075760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c00565b606060078054610b049061395d565b606081612ef957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612f235780612f0d81613a0f565b9150612f1c9050600a83613b2f565b9150612efd565b60008167ffffffffffffffff811115612f3e57612f3e613400565b6040519080825280601f01601f191660200182016040528015612f68576020820181803683370190505b5090505b84156121dc57612f7d600183613a60565b9150612f8a600a86613b43565b612f95906030613a48565b60f81b818381518110612faa57612faa6139b1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612fe4600a86613b2f565b9450612f6c565b600080600083516041146130415760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610c00565b50505060208101516040820151606090920151909260009190911a90565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561322a576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906130d6903390899088908890600401613b57565b6020604051808303816000875af192505050801561312f575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261312c91810190613ba0565b60015b6131df573d80801561315d576040519150601f19603f3d011682016040523d82523d6000602084013e613162565b606091505b5080516131d75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c00565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506121dc565b506001949350505050565b8280546132419061395d565b90600052602060002090601f01602090048101928261326357600085556132a9565b82601f1061327c57805160ff19168380011785556132a9565b828001600101855582156132a9579182015b828111156132a957825182559160200191906001019061328e565b506112259291505b8082111561122557600081556001016132b1565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146122dd57600080fd5b60006020828403121561330557600080fd5b813561205d816132c5565b60005b8381101561332b578181015183820152602001613313565b83811115611d075750506000910152565b60008151808452613354816020860160208601613310565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061205d602083018461333c565b6000602082840312156133ab57600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff811681146122dd57600080fd5b600080604083850312156133e757600080fd5b82356133f2816133b2565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561347657613476613400565b604052919050565b600067ffffffffffffffff83111561349857613498613400565b6134c960207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601160161342f565b90508281528383830111156134dd57600080fd5b828260208301376000602084830101529392505050565b600082601f83011261350557600080fd5b61205d8383356020850161347e565b6000806040838503121561352757600080fd5b8235613532816133b2565b9150602083013567ffffffffffffffff81111561354e57600080fd5b61355a858286016134f4565b9150509250929050565b60008060006060848603121561357957600080fd5b8335613584816133b2565b92506020840135613594816133b2565b929592945050506040919091013590565b6000602082840312156135b757600080fd5b813567ffffffffffffffff8111156135ce57600080fd5b8201601f810184136135df57600080fd5b6121dc8482356020840161347e565b60006020828403121561360057600080fd5b813561205d816133b2565b6020808252825182820181905260009190848201906040850190845b8181101561364357835183529284019291840191600101613627565b50909695505050505050565b8035801515811461365f57600080fd5b919050565b60006020828403121561367657600080fd5b61205d8261364f565b6020808252825182820181905260009190848201906040850190845b8181101561364357835173ffffffffffffffffffffffffffffffffffffffff168352928401929184019160010161369b565b600080604083850312156136e057600080fd5b82356136eb816133b2565b91506136f96020840161364f565b90509250929050565b6000806000806080858703121561371857600080fd5b8435613723816133b2565b93506020850135613733816133b2565b925060408501359150606085013567ffffffffffffffff81111561375657600080fd5b613762878288016134f4565b91505092959194509250565b60008083601f84011261378057600080fd5b50813567ffffffffffffffff81111561379857600080fd5b6020830191508360208260051b85010111156137b357600080fd5b9250929050565b600080600080604085870312156137d057600080fd5b843567ffffffffffffffff808211156137e857600080fd5b6137f48883890161376e565b9096509450602087013591508082111561380d57600080fd5b5061381a8782880161376e565b95989497509550505050565b6000806040838503121561383957600080fd5b8235613844816133b2565b91506020830135613854816133b2565b809150509250929050565b60008060006060848603121561387457600080fd5b833561387f816133b2565b9250602084810135613890816133b2565b9250604085013567ffffffffffffffff808211156138ad57600080fd5b818701915087601f8301126138c157600080fd5b8135818111156138d3576138d3613400565b8060051b91506138e484830161342f565b818152918301840191848101908a8411156138fe57600080fd5b938501935b8385101561391c57843582529385019390850190613903565b8096505050505050509250925092565b6000806040838503121561393f57600080fd5b82359150602083013567ffffffffffffffff81111561354e57600080fd5b600181811c9082168061397157607f821691505b602082108114156139ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a4157613a416139e0565b5060010190565b60008219821115613a5b57613a5b6139e0565b500190565b600082821015613a7257613a726139e0565b500390565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613aaf57613aaf6139e0565b500290565b60008351613ac6818460208801613310565b835190830190613ada818360208801613310565b01949350505050565b600060208284031215613af557600080fd5b815161205d816133b2565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613b3e57613b3e613b00565b500490565b600082613b5257613b52613b00565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613b96608083018461333c565b9695505050505050565b600060208284031215613bb257600080fd5b815161205d816132c556fea26469706673582212209e46cabe2fb7d0c5e2daa06374d042b9513525971cb52793b6cf9ff6ad190f3364736f6c634300080b003368747470733a2f2f686f7573656f6666697273742e636f6d3a313333352f72656d61726b61626c65776f6d656e2f6f70656e7365612f

Deployed Bytecode

0x60806040526004361061038c5760003560e01c80638462151c116101dc578063c87b56dd11610102578063f3993d11116100a0578063fb107a4f1161006f578063fb107a4f14610a2e578063fc0bc80d14610a43578063fe60d12c14610a63578063ff8abd1f14610a7957600080fd5b8063f3993d11146109cf578063f54bb965146109ef578063f632fdb014610a04578063fae40c7c14610a1b57600080fd5b8063dadbaff9116100dc578063dadbaff91461092c578063e3bc77621461096f578063e985e9c51461098f578063f2fde38b146109af57600080fd5b8063c87b56dd146108c9578063cd7c0326146108e9578063d5abeb011461091657600080fd5b8063946807fd1161017a578063a0e67e2b11610149578063a0e67e2b14610847578063a22cb46514610869578063b88d4fde14610889578063c29af274146108a957600080fd5b8063946807fd146107f157806395d89b41146108075780639f5502931461081c578063a035b1fe1461083157600080fd5b80638da5cb5b116101b65780638da5cb5b14610773578063910dc0d81461079e57806391b7f5ed146107be57806392642744146107de57600080fd5b80638462151c1461071157806389404a791461073e5780638d92becd1461075357600080fd5b8063417b9483116102c15780636343ed8a1161025f5780636f8b44b01161022e5780636f8b44b0146106a657806370a08231146106c6578063715018a6146106e65780637501f741146106fb57600080fd5b80636343ed8a146106245780636352211e1461065157806367596872146106715780636c0360eb1461069157600080fd5b80634f6ccce71161029b5780634f6ccce7146105b357806354964d27146105d357806355f804b3146105ea5780635d08c1ae1461060a57600080fd5b8063417b94831461055557806342842e0e1461057d5780634298abbe1461059d57600080fd5b80631f0a8fa71161032e5780632f745c59116103085780632f745c5914610501578063371e6f99146105215780633ccfd60b146105375780633e28fa8a1461053f57600080fd5b80631f0a8fa7146104a157806323b872dd146104c15780632d6e71b6146104e157600080fd5b8063088a4ed01161036a578063088a4ed01461042d578063095ea7b31461044f57806312b583491461046f57806318160ddd1461048c57600080fd5b806301ffc9a71461039157806306fdde03146103c6578063081812fc146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac3660046132f3565b610a99565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103db610af5565b6040516103bd9190613386565b3480156103f457600080fd5b50610408610403366004613399565b610b87565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103bd565b34801561043957600080fd5b5061044d610448366004613399565b610c32565b005b34801561045b57600080fd5b5061044d61046a3660046133d4565b610c9e565b34801561047b57600080fd5b50475b6040519081526020016103bd565b34801561049857600080fd5b5060025461047e565b3480156104ad57600080fd5b506103b16104bc366004613514565b610df7565b3480156104cd57600080fd5b5061044d6104dc366004613564565b610ec9565b3480156104ed57600080fd5b5061044d6104fc366004613399565b610f50565b34801561050d57600080fd5b5061047e61051c3660046133d4565b610fbc565b34801561052d57600080fd5b5061047e600e5481565b61044d6110d8565b34801561054b57600080fd5b5061047e600f5481565b34801561056157600080fd5b5061040873333d70087c40b98bac3c955acb263213b63d9c1c81565b34801561058957600080fd5b5061044d610598366004613564565b6111b1565b3480156105a957600080fd5b5061047e60115481565b3480156105bf57600080fd5b5061047e6105ce366004613399565b6111cc565b3480156105df57600080fd5b5060095442116103b1565b3480156105f657600080fd5b5061044d6106053660046135a5565b611229565b34801561061657600080fd5b506010546103b19060ff1681565b34801561063057600080fd5b5061047e61063f3660046135ee565b60126020526000908152604090205481565b34801561065d57600080fd5b5061040861066c366004613399565b6112a7565b34801561067d57600080fd5b5061044d61068c366004613399565b611354565b34801561069d57600080fd5b506103db6113c0565b3480156106b257600080fd5b5061044d6106c1366004613399565b61144e565b3480156106d257600080fd5b5061047e6106e13660046135ee565b6114ba565b3480156106f257600080fd5b5061044d6115b9565b34801561070757600080fd5b5061047e600d5481565b34801561071d57600080fd5b5061073161072c3660046135ee565b61162c565b6040516103bd919061360b565b34801561074a57600080fd5b5060175461047e565b34801561075f57600080fd5b5061044d61076e366004613664565b611726565b34801561077f57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610408565b3480156107aa57600080fd5b5061044d6107b9366004613399565b6117be565b3480156107ca57600080fd5b5061044d6107d9366004613399565b61182a565b61044d6107ec366004613399565b611896565b3480156107fd57600080fd5b5061047e60095481565b34801561081357600080fd5b506103db611af0565b34801561082857600080fd5b5061047e611aff565b34801561083d57600080fd5b5061047e600a5481565b34801561085357600080fd5b5061085c611b14565b6040516103bd919061367f565b34801561087557600080fd5b5061044d6108843660046136cd565b611b82565b34801561089557600080fd5b5061044d6108a4366004613702565b611c7f565b3480156108b557600080fd5b5061044d6108c43660046137ba565b611d0d565b3480156108d557600080fd5b506103db6108e4366004613399565b611f8b565b3480156108f557600080fd5b506016546104089073ffffffffffffffffffffffffffffffffffffffff1681565b34801561092257600080fd5b5061047e600b5481565b34801561093857600080fd5b5061047e6109473660046135ee565b73ffffffffffffffffffffffffffffffffffffffff1660009081526012602052604090205490565b34801561097b57600080fd5b5061044d61098a366004613399565b612064565b34801561099b57600080fd5b506103b16109aa366004613826565b6120e3565b3480156109bb57600080fd5b5061044d6109ca3660046135ee565b6121e4565b3480156109db57600080fd5b5061044d6109ea36600461385f565b6122e0565b3480156109fb57600080fd5b5061047e612322565b348015610a1057600080fd5b5060115442116103b1565b61044d610a2936600461392c565b61233e565b348015610a3a57600080fd5b5061047e612690565b348015610a4f57600080fd5b5061044d610a5e366004613664565b6126ab565b348015610a6f57600080fd5b5061047e600c5481565b348015610a8557600080fd5b5061044d610a94366004613399565b612743565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610aef5750610aef826127af565b92915050565b606060008054610b049061395d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b309061395d565b8015610b7d5780601f10610b5257610100808354040283529160200191610b7d565b820191906000526020600020905b815481529060010190602001808311610b6057829003601f168201915b5050505050905090565b6000610b9282612892565b610c095760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60055473ffffffffffffffffffffffffffffffffffffffff163314610c995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b600d55565b6000610ca9826112a7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d4d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610c00565b3373ffffffffffffffffffffffffffffffffffffffff82161480610d765750610d7681336120e3565b610de85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c00565b610df283836128f6565b505050565b604080517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606085901b16602080830191909152825180830360140181526034830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006054840152607080840182905284518085039091018152609090930190935281519101206000919073333d70087c40b98bac3c955acb263213b63d9c1c610ea98286612996565b73ffffffffffffffffffffffffffffffffffffffff161495945050505050565b610ed33382612a33565b610f455760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c00565b610df2838383612b3a565b60055473ffffffffffffffffffffffffffffffffffffffff163314610fb75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b600c55565b6000610fc7836114ba565b82106110155760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610c00565b6000805b60025481101561108f5760028181548110611036576110366139b1565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff8681169116141561107f5783821415611073579150610aef9050565b61107c82613a0f565b91505b61108881613a0f565b9050611019565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610c00565b60055473ffffffffffffffffffffffffffffffffffffffff16331461113f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b6040514790600090339083908381818185875af1925050503d8060008114611183576040519150601f19603f3d011682016040523d82523d6000602084013e611188565b606091505b505090508061119657600080fd5b81601760008282546111a89190613a48565b90915550505050565b610df283838360405180602001604052806000815250611c7f565b60006111d760025490565b82106112255760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610c00565b5090565b60055473ffffffffffffffffffffffffffffffffffffffff1633146112905760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b80516112a3906007906020840190613235565b5050565b600080600283815481106112bd576112bd6139b1565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080610aef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610c00565b60055473ffffffffffffffffffffffffffffffffffffffff1633146113bb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b600f55565b600780546113cd9061395d565b80601f01602080910402602001604051908101604052809291908181526020018280546113f99061395d565b80156114465780601f1061141b57610100808354040283529160200191611446565b820191906000526020600020905b81548152906001019060200180831161142957829003601f168201915b505050505081565b60055473ffffffffffffffffffffffffffffffffffffffff1633146114b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b600b55565b600073ffffffffffffffffffffffffffffffffffffffff82166115455760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610c00565b600254600090815b818110156115b05760028181548110611568576115686139b1565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff868116911614156115a05761159d83613a0f565b92505b6115a981613a0f565b905061154d565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146116205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b61162a6000612d09565b565b6060611637826114ba565b6000106116865760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610c00565b6000611691836114ba565b905060008167ffffffffffffffff8111156116ae576116ae613400565b6040519080825280602002602001820160405280156116d7578160200160208202803683370190505b50905060005b8281101561171e576116ef8582610fbc565b828281518110611701576117016139b1565b60209081029190910101528061171681613a0f565b9150506116dd565b509392505050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461178d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b601080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146118255760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b601155565b60055473ffffffffffffffffffffffffffffffffffffffff1633146118915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b600a55565b600260065414156118e95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c00565b6002600655601154421161193f5760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632053616c6520686173206e6f74207374617274656400000000006044820152606401610c00565b60025460105460ff16156119955760405162461bcd60e51b815260206004820152600b60248201527f53616c65205061757365640000000000000000000000000000000000000000006044820152606401610c00565b6000821180156119a75750600d548211155b6119f35760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206e756d6265724f664e6674730000000000000000000000006044820152606401610c00565b600c54600b54611a039190613a60565b611a0d8383613a48565b1115611a5b5760405162461bcd60e51b815260206004820152601260248201527f45786365656473204d617820537570706c7900000000000000000000000000006044820152606401610c00565b81600a54611a699190613a77565b341015611ab85760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420456e6f756768204554480000000000000000000000000000000000006044820152606401610c00565b60005b82811015611ae657611ad633611ad18385613a48565b612d80565b611adf81613a0f565b9050611abb565b5050600160065550565b606060018054610b049061395d565b600047601754611b0f9190613a48565b905090565b60606002805480602002602001604051908101604052809291908181526020018280548015610b7d57602002820191906000526020600020905b815473ffffffffffffffffffffffffffffffffffffffff168152600190910190602001808311611b4e575050505050905090565b73ffffffffffffffffffffffffffffffffffffffff8216331415611be85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c00565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611c893383612a33565b611cfb5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610c00565b611d0784848484612e21565b50505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611d745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b828114611de95760405162461bcd60e51b815260206004820152603360248201527f496e76616c6964207175616e74697469657320616e6420726563697069656e7460448201527f7320286c656e677468206d69736d6174636829000000000000000000000000006064820152608401610c00565b600254600090815b85811015611e2f57868682818110611e0b57611e0b6139b1565b9050602002013583611e1d9190613a48565b9250611e2881613a0f565b9050611df1565b50600b54611e3d8383613a48565b1115611e8b5760405162461bcd60e51b815260206004820152601260248201527f45786365656473204d617820537570706c7900000000000000000000000000006044820152606401610c00565b600c54821115611edd5760405162461bcd60e51b815260206004820152601460248201527f45786365656473204d61782052657365727665640000000000000000000000006044820152606401610c00565b81600c6000828254611eef9190613a60565b90915550600092508290505b83811015611f825760005b878783818110611f1857611f186139b1565b90506020020135811015611f7157611f61868684818110611f3b57611f3b6139b1565b9050602002016020810190611f5091906135ee565b84611f5a81613a0f565b9550612d80565b611f6a81613a0f565b9050611f06565b50611f7b81613a0f565b9050611efb565b50505050505050565b6060611f9682612892565b6120085760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560448201527f6e000000000000000000000000000000000000000000000000000000000000006064820152608401610c00565b6000612012612eaa565b90506000815111612032576040518060200160405280600081525061205d565b8061203c84612eb9565b60405160200161204d929190613ab4565b6040516020818303038152906040525b9392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146120cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b60098190556120dd8162015180613a48565b60115550565b6016546040517fc455279100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009281169190841690829063c455279190602401602060405180830381865afa15801561215b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061217f9190613ae3565b73ffffffffffffffffffffffffffffffffffffffff1614156121a5576001915050610aef565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461224b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b73ffffffffffffffffffffffffffffffffffffffff81166122d45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c00565b6122dd81612d09565b50565b60005b8151811015611d07576123108484848481518110612303576123036139b1565b6020026020010151610ec9565b8061231a81613a0f565b9150506122e3565b60085460009060ff16156123375750600e5490565b50600f5490565b600260065414156123915760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c00565b600260065560105460ff16156123e95760405162461bcd60e51b815260206004820152600b60248201527f53616c65205061757365640000000000000000000000000000000000000000006044820152606401610c00565b600254600c54600b546123fc9190613a60565b6124068483613a48565b11156124545760405162461bcd60e51b815260206004820152601260248201527f45786365656473204d617820537570706c7900000000000000000000000000006044820152606401610c00565b61245e3383610df7565b6124aa5760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c69737465640000000000000000006044820152606401610c00565b600f5460085460ff16156124c15750600e5461256f565b60095442116125125760405162461bcd60e51b815260206004820152601460248201527f53616c6520686173206e6f7420737461727465640000000000000000000000006044820152606401610c00565b83600a546125209190613a77565b34101561256f5760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420456e6f756768204554480000000000000000000000000000000000006044820152606401610c00565b60008411801561257f5750808411155b6125cb5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206e756d6265724f664e6674730000000000000000000000006044820152606401610c00565b3360009081526012602052604090205481906125e8908690613a48565b11156126365760405162461bcd60e51b815260206004820152601260248201527f4578636565647320416c6c6f636174696f6e00000000000000000000000000006044820152606401610c00565b3360009081526012602052604081208054869290612655908490613a48565b90915550600090505b848110156126845761267433611ad18386613a48565b61267d81613a0f565b905061265e565b50506001600655505050565b60085460009060ff16156126a45750600090565b50600a5490565b60055473ffffffffffffffffffffffffffffffffffffffff1633146127125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b600880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146127aa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c00565b600e55565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061284257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610aef57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610aef565b60025460009082108015610aef5750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106128cc576128cc6139b1565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190612950826112a7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806000806129a585612feb565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa158015612a00573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00151979650505050505050565b6000612a3e82612892565b612ab05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610c00565b6000612abb836112a7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b2a57508373ffffffffffffffffffffffffffffffffffffffff16612b1284610b87565b73ffffffffffffffffffffffffffffffffffffffff16145b806121dc57506121dc81856120e3565b8273ffffffffffffffffffffffffffffffffffffffff16612b5a826112a7565b73ffffffffffffffffffffffffffffffffffffffff1614612be35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610c00565b73ffffffffffffffffffffffffffffffffffffffff8216612c6b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c00565b612c766000826128f6565b8160028281548110612c8a57612c8a6139b1565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b612e2c848484612b3a565b612e388484848461305f565b611d075760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c00565b606060078054610b049061395d565b606081612ef957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612f235780612f0d81613a0f565b9150612f1c9050600a83613b2f565b9150612efd565b60008167ffffffffffffffff811115612f3e57612f3e613400565b6040519080825280601f01601f191660200182016040528015612f68576020820181803683370190505b5090505b84156121dc57612f7d600183613a60565b9150612f8a600a86613b43565b612f95906030613a48565b60f81b818381518110612faa57612faa6139b1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612fe4600a86613b2f565b9450612f6c565b600080600083516041146130415760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610c00565b50505060208101516040820151606090920151909260009190911a90565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561322a576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906130d6903390899088908890600401613b57565b6020604051808303816000875af192505050801561312f575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261312c91810190613ba0565b60015b6131df573d80801561315d576040519150601f19603f3d011682016040523d82523d6000602084013e613162565b606091505b5080516131d75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610c00565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506121dc565b506001949350505050565b8280546132419061395d565b90600052602060002090601f01602090048101928261326357600085556132a9565b82601f1061327c57805160ff19168380011785556132a9565b828001600101855582156132a9579182015b828111156132a957825182559160200191906001019061328e565b506112259291505b8082111561122557600081556001016132b1565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146122dd57600080fd5b60006020828403121561330557600080fd5b813561205d816132c5565b60005b8381101561332b578181015183820152602001613313565b83811115611d075750506000910152565b60008151808452613354816020860160208601613310565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061205d602083018461333c565b6000602082840312156133ab57600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff811681146122dd57600080fd5b600080604083850312156133e757600080fd5b82356133f2816133b2565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561347657613476613400565b604052919050565b600067ffffffffffffffff83111561349857613498613400565b6134c960207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601160161342f565b90508281528383830111156134dd57600080fd5b828260208301376000602084830101529392505050565b600082601f83011261350557600080fd5b61205d8383356020850161347e565b6000806040838503121561352757600080fd5b8235613532816133b2565b9150602083013567ffffffffffffffff81111561354e57600080fd5b61355a858286016134f4565b9150509250929050565b60008060006060848603121561357957600080fd5b8335613584816133b2565b92506020840135613594816133b2565b929592945050506040919091013590565b6000602082840312156135b757600080fd5b813567ffffffffffffffff8111156135ce57600080fd5b8201601f810184136135df57600080fd5b6121dc8482356020840161347e565b60006020828403121561360057600080fd5b813561205d816133b2565b6020808252825182820181905260009190848201906040850190845b8181101561364357835183529284019291840191600101613627565b50909695505050505050565b8035801515811461365f57600080fd5b919050565b60006020828403121561367657600080fd5b61205d8261364f565b6020808252825182820181905260009190848201906040850190845b8181101561364357835173ffffffffffffffffffffffffffffffffffffffff168352928401929184019160010161369b565b600080604083850312156136e057600080fd5b82356136eb816133b2565b91506136f96020840161364f565b90509250929050565b6000806000806080858703121561371857600080fd5b8435613723816133b2565b93506020850135613733816133b2565b925060408501359150606085013567ffffffffffffffff81111561375657600080fd5b613762878288016134f4565b91505092959194509250565b60008083601f84011261378057600080fd5b50813567ffffffffffffffff81111561379857600080fd5b6020830191508360208260051b85010111156137b357600080fd5b9250929050565b600080600080604085870312156137d057600080fd5b843567ffffffffffffffff808211156137e857600080fd5b6137f48883890161376e565b9096509450602087013591508082111561380d57600080fd5b5061381a8782880161376e565b95989497509550505050565b6000806040838503121561383957600080fd5b8235613844816133b2565b91506020830135613854816133b2565b809150509250929050565b60008060006060848603121561387457600080fd5b833561387f816133b2565b9250602084810135613890816133b2565b9250604085013567ffffffffffffffff808211156138ad57600080fd5b818701915087601f8301126138c157600080fd5b8135818111156138d3576138d3613400565b8060051b91506138e484830161342f565b818152918301840191848101908a8411156138fe57600080fd5b938501935b8385101561391c57843582529385019390850190613903565b8096505050505050509250925092565b6000806040838503121561393f57600080fd5b82359150602083013567ffffffffffffffff81111561354e57600080fd5b600181811c9082168061397157607f821691505b602082108114156139ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a4157613a416139e0565b5060010190565b60008219821115613a5b57613a5b6139e0565b500190565b600082821015613a7257613a726139e0565b500390565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613aaf57613aaf6139e0565b500290565b60008351613ac6818460208801613310565b835190830190613ada818360208801613310565b01949350505050565b600060208284031215613af557600080fd5b815161205d816133b2565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613b3e57613b3e613b00565b500490565b600082613b5257613b52613b00565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613b96608083018461333c565b9695505050505050565b600060208284031215613bb257600080fd5b815161205d816132c556fea26469706673582212209e46cabe2fb7d0c5e2daa06374d042b9513525971cb52793b6cf9ff6ad190f3364736f6c634300080b0033

Deployed Bytecode Sourcemap

1125:9582:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191:301:3;;;;;;;;;;-1:-1:-1;191:301:3;;;;;:::i;:::-;;:::i;:::-;;;611:14:14;;604:22;586:41;;574:2;559:18;191:301:3;;;;;;;;2089:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2729:308::-;;;;;;;;;;-1:-1:-1;2729:308:4;;;;;:::i;:::-;;:::i;:::-;;;1809:42:14;1797:55;;;1779:74;;1767:2;1752:18;2729:308:4;1633:226:14;8183:116:12;;;;;;;;;;-1:-1:-1;8183:116:12;;;;;:::i;:::-;;:::i;:::-;;2309:412:4;;;;;;;;;;-1:-1:-1;2309:412:4;;;;;:::i;:::-;;:::i;9605:104:12:-;;;;;;;;;;-1:-1:-1;9680:21:12;9605:104;;;2489:25:14;;;2477:2;2462:18;9605:104:12;2343:177:14;1470:110:3;;;;;;;;;;-1:-1:-1;1558:7:3;:14;1470:110;;3534:364:12;;;;;;;;;;-1:-1:-1;3534:364:12;;;;;:::i;:::-;;:::i;3602:376:4:-;;;;;;;;;;-1:-1:-1;3602:376:4;;;;;:::i;:::-;;:::i;8079:96:12:-;;;;;;;;;;-1:-1:-1;8079:96:12;;;;;:::i;:::-;;:::i;500:504:3:-;;;;;;;;;;-1:-1:-1;500:504:3;;;;;:::i;:::-;;:::i;1719:38:12:-;;;;;;;;;;;;;;;;9928:273;;;:::i;1786:35::-;;;;;;;;;;;;;;;;1912:85;;;;;;;;;;;;1955:42;1912:85;;3986:185:4;;;;;;;;;;-1:-1:-1;3986:185:4;;;;;:::i;:::-;;:::i;2004:77:12:-;;;;;;;;;;;;;;;;1588:244:3;;;;;;;;;;-1:-1:-1;1588:244:3;;;;;:::i;:::-;;:::i;2841:120:12:-;;;;;;;;;;-1:-1:-1;2933:20:12;;2915:15;:38;2841:120;;8683:104;;;;;;;;;;-1:-1:-1;8683:104:12;;;;;:::i;:::-;;:::i;1855:30::-;;;;;;;;;;-1:-1:-1;1855:30:12;;;;;;;;2116:53;;;;;;;;;;-1:-1:-1;2116:53:12;;;;;:::i;:::-;;;;;;;;;;;;;;1755:326:4;;;;;;;;;;-1:-1:-1;1755:326:4;;;;;:::i;:::-;;:::i;8441:120:12:-;;;;;;;;;;-1:-1:-1;8441:120:12;;;;;:::i;:::-;;:::i;1229:21::-;;;;;;;;;;;;;:::i;8569:106::-;;;;;;;;;;-1:-1:-1;8569:106:12;;;;;:::i;:::-;;:::i;1229:518:4:-;;;;;;;;;;-1:-1:-1;1229:518:4;;;;;:::i;:::-;;:::i;1661:101:10:-;;;;;;;;;;;;;:::i;1662:27:12:-;;;;;;;;;;;;;;;;1012:450:3;;;;;;;;;;-1:-1:-1;1012:450:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9498:99:12:-;;;;;;;;;;-1:-1:-1;9575:14:12;;9498:99;;8795:101;;;;;;;;;;-1:-1:-1;8795:101:12;;;;;:::i;:::-;;:::i;1029:85:10:-;;;;;;;;;;-1:-1:-1;1101:6:10;;;;1029:85;;9013:164:12;;;;;;;;;;-1:-1:-1;9013:164:12;;;;;:::i;:::-;;:::i;7981:90::-;;;;;;;;;;-1:-1:-1;7981:90:12;;;;;:::i;:::-;;:::i;4522:629::-;;;;;;:::i;:::-;;:::i;1360:48::-;;;;;;;;;;;;;;;;2197:104:4;;;;;;;;;;;;;:::i;9717:121:12:-;;;;;;;;;;;;;:::i;1467:33::-;;;;;;;;;;;;;;;;763:95:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3045:327::-;;;;;;;;;;-1:-1:-1;3045:327:4;;;;;:::i;:::-;;:::i;4179:365::-;;;;;;;;;;-1:-1:-1;4179:365:4;;;;;:::i;:::-;;:::i;6376:856:12:-;;;;;;;;;;-1:-1:-1;6376:856:12;;;;;:::i;:::-;;:::i;7634:339::-;;;;;;;;;;-1:-1:-1;7634:339:12;;;;;:::i;:::-;;:::i;2350:80::-;;;;;;;;;;-1:-1:-1;2350:80:12;;;;;;;;1532:31;;;;;;;;;;;;;;;;2574:127;;;;;;;;;;-1:-1:-1;2574:127:12;;;;;:::i;:::-;2669:24;;2642:7;2669:24;;;:18;:24;;;;;;;2574:127;9185:224;;;;;;;;;;-1:-1:-1;9185:224:12;;;;;:::i;:::-;;:::i;10302:402::-;;;;;;;;;;-1:-1:-1;10302:402:12;;;;;:::i;:::-;;:::i;1911:198:10:-;;;;;;;;;;-1:-1:-1;1911:198:10;;;;;:::i;:::-;;:::i;7406:220:12:-;;;;;;;;;;-1:-1:-1;7406:220:12;;;;;:::i;:::-;;:::i;3102:185::-;;;;;;;;;;;;;:::i;2969:125::-;;;;;;;;;;-1:-1:-1;3061:25:12;;3043:15;:43;2969:125;;5185:1143;;;;;;:::i;:::-;;:::i;3353:148::-;;;;;;;;;;;;;:::i;8904:97::-;;;;;;;;;;-1:-1:-1;8904:97:12;;;;;:::i;:::-;;:::i;1595:29::-;;;;;;;;;;;;;;;;8307:126;;;;;;;;;;-1:-1:-1;8307:126:12;;;;;:::i;:::-;;:::i;191:301:3:-;339:4;381:50;;;396:35;381:50;;:103;;;448:36;472:11;448:23;:36::i;:::-;361:123;191:301;-1:-1:-1;;191:301:3:o;2089:100:4:-;2143:13;2176:5;2169:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2089:100;:::o;2729:308::-;2850:7;2897:16;2905:7;2897;:16::i;:::-;2875:110;;;;-1:-1:-1;;;2875:110:4;;11846:2:14;2875:110:4;;;11828:21:14;11885:2;11865:18;;;11858:30;11924:34;11904:18;;;11897:62;11995:14;11975:18;;;11968:42;12027:19;;2875:110:4;;;;;;;;;-1:-1:-1;3005:24:4;;;;:15;:24;;;;;;;;;2729:308::o;8183:116:12:-;1101:6:10;;1241:23;1101:6;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;12259:2:14;1233:68:10;;;12241:21:14;;;12278:18;;;12271:30;12337:34;12317:18;;;12310:62;12389:18;;1233:68:10;12057:356:14;1233:68:10;8264:7:12::1;:27:::0;8183:116::o;2309:412:4:-;2390:13;2406:24;2422:7;2406:15;:24::i;:::-;2390:40;;2455:5;2449:11;;:2;:11;;;;2441:57;;;;-1:-1:-1;;;2441:57:4;;12620:2:14;2441:57:4;;;12602:21:14;12659:2;12639:18;;;12632:30;12698:34;12678:18;;;12671:62;12769:3;12749:18;;;12742:31;12790:19;;2441:57:4;12418:397:14;2441:57:4;719:10:1;2533:21:4;;;;;:62;;-1:-1:-1;2558:37:4;2575:5;719:10:1;10302:402:12;:::i;2558:37:4:-;2511:168;;;;-1:-1:-1;;;2511:168:4;;13022:2:14;2511:168:4;;;13004:21:14;13061:2;13041:18;;;13034:30;13100:34;13080:18;;;13073:62;13171:26;13151:18;;;13144:54;13215:19;;2511:168:4;12820:420:14;2511:168:4;2692:21;2701:2;2705:7;2692:8;:21::i;:::-;2379:342;2309:412;;:::o;3534:364:12:-;3665:22;;;13407:66:14;13394:2;13390:15;;;13386:88;3665:22:12;;;;13374:101:14;;;;3665:22:12;;;;;;;;;13491:12:14;;;3665:22:12;;3655:33;;;;;;13756:66:14;3740:65:12;;;13744:79:14;13839:12;;;;13832:28;;;3740:65:12;;;;;;;;;;13876:12:14;;;;3740:65:12;;;3730:76;;;;;-1:-1:-1;;3655:33:12;1955:42;3824:46;3730:76;3860:9;3824:13;:46::i;:::-;:66;;;;3534:364;-1:-1:-1;;;;;3534:364:12:o;3602:376:4:-;3811:41;719:10:1;3844:7:4;3811:18;:41::i;:::-;3789:140;;;;-1:-1:-1;;;3789:140:4;;14101:2:14;3789:140:4;;;14083:21:14;14140:2;14120:18;;;14113:30;14179:34;14159:18;;;14152:62;14250:19;14230:18;;;14223:47;14287:19;;3789:140:4;13899:413:14;3789:140:4;3942:28;3952:4;3958:2;3962:7;3942:9;:28::i;8079:96:12:-;1101:6:10;;1241:23;1101:6;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;12259:2:14;1233:68:10;;;12241:21:14;;;12278:18;;;12271:30;12337:34;12317:18;;;12310:62;12389:18;;1233:68:10;12057:356:14;1233:68:10;8147:8:12::1;:20:::0;8079:96::o;500:504:3:-;625:15;674:24;692:5;674:17;:24::i;:::-;666:5;:32;658:67;;;;-1:-1:-1;;;658:67:3;;14519:2:14;658:67:3;;;14501:21:14;14558:2;14538:18;;;14531:30;14597:24;14577:18;;;14570:52;14639:18;;658:67:3;14317:346:14;658:67:3;736:13;765:9;760:186;780:7;:14;776:18;;760:186;;;829:7;837:1;829:10;;;;;;;;:::i;:::-;;;;;;;;;;;;820:19;;;829:10;;820:19;816:119;;;873:5;864;:14;860:59;;;887:1;-1:-1:-1;880:8:3;;-1:-1:-1;880:8:3;860:59;912:7;;;:::i;:::-;;;860:59;796:3;;;:::i;:::-;;;760:186;;;-1:-1:-1;956:40:3;;-1:-1:-1;;;956:40:3;;14519:2:14;956:40:3;;;14501:21:14;14558:2;14538:18;;;14531:30;14597:24;14577:18;;;14570:52;14639:18;;956:40:3;14317:346:14;9928:273:12;1101:6:10;;1241:23;1101:6;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;12259:2:14;1233:68:10;;;12241:21:14;;;12278:18;;;12271:30;12337:34;12317:18;;;12310:62;12389:18;;1233:68:10;12057:356:14;1233:68:10;10049:64:12::1;::::0;9998:21:::1;::::0;9984:11:::1;::::0;10057:10:::1;::::0;9998:21;;9984:11;10049:64;9984:11;10049:64;9998:21;10057:10;10049:64:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10030:83;;;10132:7;10124:16;;;::::0;::::1;;10169:3;10151:14;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;9928:273:12:o;3986:185:4:-;4124:39;4141:4;4147:2;4151:7;4124:39;;;;;;;;;;;;:16;:39::i;1588:244:3:-;1708:7;1749:24;1558:7;:14;;1470:110;1749:24;1741:5;:32;1733:68;;;;-1:-1:-1;;;1733:68:3;;15791:2:14;1733:68:3;;;15773:21:14;15830:2;15810:18;;;15803:30;15869:25;15849:18;;;15842:53;15912:18;;1733:68:3;15589:347:14;1733:68:3;-1:-1:-1;1819:5:3;1588:244::o;8683:104:12:-;1101:6:10;;1241:23;1101:6;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;12259:2:14;1233:68:10;;;12241:21:14;;;12278:18;;;12271:30;12337:34;12317:18;;;12310:62;12389:18;;1233:68:10;12057:356:14;1233:68:10;8758:21:12;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;8683:104:::0;:::o;1755:326:4:-;1872:7;1897:13;1913:7;1921;1913:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;1962:19:4;1940:110;;;;-1:-1:-1;;;1940:110:4;;16143:2:14;1940:110:4;;;16125:21:14;16182:2;16162:18;;;16155:30;16221:34;16201:18;;;16194:62;16292:11;16272:18;;;16265:39;16321:19;;1940:110:4;15941:405:14;8441:120:12;1101:6:10;;1241:23;1101:6;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;12259:2:14;1233:68:10;;;12241:21:14;;;12278:18;;;12271:30;12337:34;12317:18;;;12310:62;12389:18;;1233:68:10;12057:356:14;1233:68:10;8521:16:12::1;:32:::0;8441:120::o;1229:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;8569:106::-;1101:6:10;;1241:23;1101:6;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;12259:2:14;1233:68:10;;;12241:21:14;;;12278:18;;;12271:30;12337:34;12317:18;;;12310:62;12389:18;;1233:68:10;12057:356:14;1233:68:10;8642:9:12::1;:25:::0;8569:106::o;1229:518:4:-;1346:7;1393:19;;;1371:111;;;;-1:-1:-1;;;1371:111:4;;16553:2:14;1371:111:4;;;16535:21:14;16592:2;16572:18;;;16565:30;16631:34;16611:18;;;16604:62;16702:12;16682:18;;;16675:40;16732:19;;1371:111:4;16351:406:14;1371:111:4;1538:7;:14;1493:13;;;1563:130;1587:6;1583:1;:10;1563:130;;;1628:7;1636:1;1628:10;;;;;;;;:::i;:::-;;;;;;;;;;;;1619:19;;;1628:10;;1619:19;1615:67;;;1659:7;;;:::i;:::-;;;1615:67;1595:3;;;:::i;:::-;;;1563:130;;;-1:-1:-1;1734:5:4;;1229:518;-1:-1:-1;;;1229:518:4:o;1661:101:10:-;1101:6;;1241:23;1101:6;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;12259:2:14;1233:68:10;;;12241:21:14;;;12278:18;;;12271:30;12337:34;12317:18;;;12310:62;12389:18;;1233:68:10;12057:356:14;1233:68:10;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;1012:450:3:-;1098:16;1144:24;1162:5;1144:17;:24::i;:::-;1140:1;:28;1132:63;;;;-1:-1:-1;;;1132:63:3;;14519:2:14;1132:63:3;;;14501:21:14;14558:2;14538:18;;;14531:30;14597:24;14577:18;;;14570:52;14639:18;;1132:63:3;14317:346:14;1132:63:3;1206:18;1227:16;1237:5;1227:9;:16::i;:::-;1206:37;;1254:25;1296:10;1282:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1282:25:3;;1254:53;;1323:9;1318:111;1342:10;1338:1;:14;1318:111;;;1388:29;1408:5;1415:1;1388:19;:29::i;:::-;1374:8;1383:1;1374:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;1354:3;;;;:::i;:::-;;;;1318:111;;;-1:-1:-1;1446:8:3;1012:450;-1:-1:-1;;;1012:450:3:o;8795:101:12:-;1101:6:10;;1241:23;1101:6;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;12259:2:14;1233:68:10;;;12241:21:14;;;12278:18;;;12271:30;12337:34;12317:18;;;12310:62;12389:18;;1233:68:10;12057:356:14;1233:68:10;8864:10:12::1;:24:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;8795:101::o;9013:164::-;1101:6:10;;1241:23;1101:6;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;12259:2:14;1233:68:10;;;12241:21:14;;;12278:18;;;12271:30;12337:34;12317:18;;;12310:62;12389:18;;1233:68:10;12057:356:14;1233:68:10;9115:25:12::1;:54:::0;9013:164::o;7981:90::-;1101:6:10;;1241:23;1101:6;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;12259:2:14;1233:68:10;;;12241:21:14;;;12278:18;;;12271:30;12337:34;12317:18;;;12310:62;12389:18;;1233:68:10;12057:356:14;1233:68:10;8046:5:12::1;:17:::0;7981:90::o;4522:629::-;1744:1:11;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:11;;16964:2:14;2317:63:11;;;16946:21:14;17003:2;16983:18;;;16976:30;17042:33;17022:18;;;17015:61;17093:18;;2317:63:11;16762:355:14;2317:63:11;1744:1;2455:7;:18;4626:25:12::1;::::0;4608:15:::1;:43;4600:83;;;::::0;-1:-1:-1;;;4600:83:12;;17324:2:14;4600:83:12::1;::::0;::::1;17306:21:14::0;17363:2;17343:18;;;17336:30;17402:29;17382:18;;;17375:57;17449:18;;4600:83:12::1;17122:351:14::0;4600:83:12::1;4706:7;:14:::0;4740:10:::1;::::0;::::1;;4739:11;4731:35;;;::::0;-1:-1:-1;;;4731:35:12;;17680:2:14;4731:35:12::1;::::0;::::1;17662:21:14::0;17719:2;17699:18;;;17692:30;17758:13;17738:18;;;17731:41;17789:18;;4731:35:12::1;17478:335:14::0;4731:35:12::1;4800:1;4785:12;:16;:43;;;;;4821:7;;4805:12;:23;;4785:43;4777:76;;;::::0;-1:-1:-1;;;4777:76:12;;18020:2:14;4777:76:12::1;::::0;::::1;18002:21:14::0;18059:2;18039:18;;;18032:30;18098:22;18078:18;;;18071:50;18138:18;;4777:76:12::1;17818:344:14::0;4777:76:12::1;4907:8;;4895:9;;:20;;;;:::i;:::-;4873:16;4877:12:::0;4873:1;:16:::1;:::i;:::-;4872:44;;4864:75;;;::::0;-1:-1:-1;;;4864:75:12;;18499:2:14;4864:75:12::1;::::0;::::1;18481:21:14::0;18538:2;18518:18;;;18511:30;18577:20;18557:18;;;18550:48;18615:18;;4864:75:12::1;18297:342:14::0;4864:75:12::1;4979:12;4971:5;;:20;;;;:::i;:::-;4958:9;:33;;4950:60;;;::::0;-1:-1:-1;;;4950:60:12;;19079:2:14;4950:60:12::1;::::0;::::1;19061:21:14::0;19118:2;19098:18;;;19091:30;19157:16;19137:18;;;19130:44;19191:18;;4950:60:12::1;18877:338:14::0;4950:60:12::1;5036:9;5031:94;5055:12;5051:1;:16;5031:94;;;5089:24;5095:10;5107:5;5111:1:::0;5107;:5:::1;:::i;:::-;5089;:24::i;:::-;5069:3;::::0;::::1;:::i;:::-;;;5031:94;;;-1:-1:-1::0;;1701:1:11;2628:7;:22;-1:-1:-1;4522:629:12:o;2197:104:4:-;2253:13;2286:7;2279:14;;;;;:::i;9717:121:12:-;9764:7;9680:21;9575:14;;9791:39;;;;:::i;:::-;9784:46;;9717:121;:::o;763:95:4:-;807:16;843:7;836:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;763:95;:::o;3045:327::-;3180:24;;;719:10:1;3180:24:4;;3172:62;;;;-1:-1:-1;;;3172:62:4;;19422:2:14;3172:62:4;;;19404:21:14;19461:2;19441:18;;;19434:30;19500:27;19480:18;;;19473:55;19545:18;;3172:62:4;19220:349:14;3172:62:4;719:10:1;3247:32:4;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;3316:48;;586:41:14;;;3247:42:4;;719:10:1;3316:48:4;;559:18:14;3316:48:4;;;;;;;3045:327;;:::o;4179:365::-;4368:41;719:10:1;4401:7:4;4368:18;:41::i;:::-;4346:140;;;;-1:-1:-1;;;4346:140:4;;14101:2:14;4346:140:4;;;14083:21:14;14140:2;14120:18;;;14113:30;14179:34;14159:18;;;14152:62;14250:19;14230:18;;;14223:47;14287:19;;4346:140:4;13899:413:14;4346:140:4;4497:39;4511:4;4517:2;4521:7;4530:5;4497:13;:39::i;:::-;4179:365;;;;:::o;6376:856:12:-;1101:6:10;;1241:23;1101:6;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;12259:2:14;1233:68:10;;;12241:21:14;;;12278:18;;;12271:30;12337:34;12317:18;;;12310:62;12389:18;;1233:68:10;12057:356:14;1233:68:10;6490:35:12;;::::1;6482:99;;;::::0;-1:-1:-1;;;6482:99:12;;19776:2:14;6482:99:12::1;::::0;::::1;19758:21:14::0;19815:2;19795:18;;;19788:30;19854:34;19834:18;;;19827:62;19925:21;19905:18;;;19898:49;19964:19;;6482:99:12::1;19574:415:14::0;6482:99:12::1;6640:7;:14:::0;6592:21:::1;::::0;;6665:101:::1;6685:19:::0;;::::1;6665:101;;;6743:8;;6752:1;6743:11;;;;;;;:::i;:::-;;;;;;;6726:28;;;;;:::i;:::-;::::0;-1:-1:-1;6706:3:12::1;::::0;::::1;:::i;:::-;;;6665:101;;;-1:-1:-1::0;6805:9:12::1;::::0;6784:17:::1;6788:13:::0;6784:1;:17:::1;:::i;:::-;:30;;6776:61;;;::::0;-1:-1:-1;;;6776:61:12;;18499:2:14;6776:61:12::1;::::0;::::1;18481:21:14::0;18538:2;18518:18;;;18511:30;18577:20;18557:18;;;18550:48;18615:18;;6776:61:12::1;18297:342:14::0;6776:61:12::1;6873:8;;6856:13;:25;;6848:58;;;::::0;-1:-1:-1;;;6848:58:12;;20196:2:14;6848:58:12::1;::::0;::::1;20178:21:14::0;20235:2;20215:18;;;20208:30;20274:22;20254:18;;;20247:50;20314:18;;6848:58:12::1;19994:344:14::0;6848:58:12::1;6975:13;6963:8;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;7001:20:12::1;::::0;-1:-1:-1;7001:20:12;;-1:-1:-1;7032:174:12::1;7052:20:::0;;::::1;7032:174;;;7099:9;7094:101;7118:8;;7127:1;7118:11;;;;;;;:::i;:::-;;;;;;;7114:1;:15;7094:101;;;7155:24;7161:9;;7171:1;7161:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;7175:3:::0;::::1;::::0;::::1;:::i;:::-;;;7155:5;:24::i;:::-;7131:3;::::0;::::1;:::i;:::-;;;7094:101;;;-1:-1:-1::0;7074:3:12::1;::::0;::::1;:::i;:::-;;;7032:174;;;-1:-1:-1::0;;;;;;;6376:856:12:o;7634:339::-;7707:13;7741:16;7749:7;7741;:16::i;:::-;7733:62;;;;-1:-1:-1;;;7733:62:12;;20545:2:14;7733:62:12;;;20527:21:14;20584:2;20564:18;;;20557:30;20623:34;20603:18;;;20596:62;20694:3;20674:18;;;20667:31;20715:19;;7733:62:12;20343:397:14;7733:62:12;7806:28;7837:10;:8;:10::i;:::-;7806:41;;7896:1;7871:14;7865:28;:32;:100;;;;;;;;;;;;;;;;;7924:14;7940:18;:7;:16;:18::i;:::-;7907:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;7865:100;7858:107;7634:339;-1:-1:-1;;;7634:339:12:o;9185:224::-;1101:6:10;;1241:23;1101:6;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;12259:2:14;1233:68:10;;;12241:21:14;;;12278:18;;;12271:30;12337:34;12317:18;;;12310:62;12389:18;;1233:68:10;12057:356:14;1233:68:10;9267:20:12::1;:33:::0;;;9339:34:::1;9290:10:::0;9363:9:::1;9339:34;:::i;:::-;9311:25;:62:::0;-1:-1:-1;9185:224:12:o;10302:402::-;10515:20;;10559:28;;;;;10515:20;1797:55:14;;;10559:28:12;;;1779:74:14;10391:4:12;;10515:20;;;10551:49;;;;10515:20;;10559:21;;1752:18:14;;10559:28:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10551:49;;;10547:93;;;10624:4;10617:11;;;;;10547:93;3551:25:4;;;;3522:4;3551:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;10657:39:12;10650:46;10302:402;-1:-1:-1;;;;10302:402:12:o;1911:198:10:-;1101:6;;1241:23;1101:6;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;12259:2:14;1233:68:10;;;12241:21:14;;;12278:18;;;12271:30;12337:34;12317:18;;;12310:62;12389:18;;1233:68:10;12057:356:14;1233:68:10;1999:22:::1;::::0;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:10;;21707:2:14;1991:73:10::1;::::0;::::1;21689:21:14::0;21746:2;21726:18;;;21719:30;21785:34;21765:18;;;21758:62;21856:8;21836:18;;;21829:36;21882:19;;1991:73:10::1;21505:402:14::0;1991:73:10::1;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;7406:220:12:-;7512:9;7507:112;7531:9;:16;7527:1;:20;7507:112;;;7569:38;7582:5;7589:3;7594:9;7604:1;7594:12;;;;;;;;:::i;:::-;;;;;;;7569;:38::i;:::-;7549:3;;;;:::i;:::-;;;;7507:112;;3102:185;3177:14;;3154:7;;3177:14;;3174:72;;;-1:-1:-1;3215:19:12;;;3102:185::o;3174:72::-;-1:-1:-1;3263:16:12;;;3102:185::o;5185:1143::-;1744:1:11;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:11;;16964:2:14;2317:63:11;;;16946:21:14;17003:2;16983:18;;;16976:30;17042:33;17022:18;;;17015:61;17093:18;;2317:63:11;16762:355:14;2317:63:11;1744:1;2455:7;:18;5305:10:12::1;::::0;::::1;;5304:11;5296:35;;;::::0;-1:-1:-1;;;5296:35:12;;17680:2:14;5296:35:12::1;::::0;::::1;17662:21:14::0;17719:2;17699:18;;;17692:30;17758:13;17738:18;;;17731:41;17789:18;;5296:35:12::1;17478:335:14::0;5296:35:12::1;5354:7;:14:::0;5422:8:::1;::::0;5410:9:::1;::::0;:20:::1;::::0;5422:8;5410:20:::1;:::i;:::-;5388:16;5392:12:::0;5388:1;:16:::1;:::i;:::-;5387:44;;5379:75;;;::::0;-1:-1:-1;;;5379:75:12;;18499:2:14;5379:75:12::1;::::0;::::1;18481:21:14::0;18538:2;18518:18;;;18511:30;18577:20;18557:18;;;18550:48;18615:18;;5379:75:12::1;18297:342:14::0;5379:75:12::1;5473:36;5487:10;5499:9;5473:13;:36::i;:::-;5465:72;;;::::0;-1:-1:-1;;;5465:72:12;;22114:2:14;5465:72:12::1;::::0;::::1;22096:21:14::0;22153:2;22133:18;;;22126:30;22192:25;22172:18;;;22165:53;22235:18;;5465:72:12::1;21912:347:14::0;5465:72:12::1;5570:16;::::0;5633:14:::1;::::0;::::1;;5630:293;;;-1:-1:-1::0;5676:19:12::1;::::0;5630:293:::1;;;5791:20;;5773:15;:38;5765:71;;;::::0;-1:-1:-1;;;5765:71:12;;22466:2:14;5765:71:12::1;::::0;::::1;22448:21:14::0;22505:2;22485:18;;;22478:30;22544:22;22524:18;;;22517:50;22584:18;;5765:71:12::1;22264:344:14::0;5765:71:12::1;5880:12;5872:5;;:20;;;;:::i;:::-;5859:9;:33;;5851:60;;;::::0;-1:-1:-1;;;5851:60:12;;19079:2:14;5851:60:12::1;::::0;::::1;19061:21:14::0;19118:2;19098:18;;;19091:30;19157:16;19137:18;;;19130:44;19191:18;;5851:60:12::1;18877:338:14::0;5851:60:12::1;5956:1;5941:12;:16;:45;;;;;5977:9;5961:12;:25;;5941:45;5933:78;;;::::0;-1:-1:-1;;;5933:78:12;;18020:2:14;5933:78:12::1;::::0;::::1;18002:21:14::0;18059:2;18039:18;;;18032:30;18098:22;18078:18;;;18071:50;18138:18;;5933:78:12::1;17818:344:14::0;5933:78:12::1;6049:10;6030:30;::::0;;;:18:::1;:30;::::0;;;;;6079:9;;6030:45:::1;::::0;6063:12;;6030:45:::1;:::i;:::-;:58;;6022:89;;;::::0;-1:-1:-1;;;6022:89:12;;22815:2:14;6022:89:12::1;::::0;::::1;22797:21:14::0;22854:2;22834:18;;;22827:30;22893:20;22873:18;;;22866:48;22931:18;;6022:89:12::1;22613:342:14::0;6022:89:12::1;6143:10;6124:30;::::0;;;:18:::1;:30;::::0;;;;:46;;6158:12;;6124:30;:46:::1;::::0;6158:12;;6124:46:::1;:::i;:::-;::::0;;;-1:-1:-1;6186:9:12::1;::::0;-1:-1:-1;6181:94:12::1;6205:12;6201:1;:16;6181:94;;;6239:24;6245:10;6257:5;6261:1:::0;6257;:5:::1;:::i;6239:24::-;6219:3;::::0;::::1;:::i;:::-;;;6181:94;;;-1:-1:-1::0;;1701:1:11;2628:7;:22;-1:-1:-1;;;5185:1143:12:o;3353:148::-;3420:14;;3397:7;;3420:14;;3417:54;;;-1:-1:-1;3458:1:12;;3353:148::o;3417:54::-;-1:-1:-1;3488:5:12;;;3353:148::o;8904:97::-;1101:6:10;;1241:23;1101:6;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;12259:2:14;1233:68:10;;;12241:21:14;;;12278:18;;;12271:30;12337:34;12317:18;;;12310:62;12389:18;;1233:68:10;12057:356:14;1233:68:10;8971:14:12::1;:22:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;8904:97::o;8307:126::-;1101:6:10;;1241:23;1101:6;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;12259:2:14;1233:68:10;;;12241:21:14;;;12278:18;;;12271:30;12337:34;12317:18;;;12310:62;12389:18;;1233:68:10;12057:356:14;1233:68:10;8390:19:12::1;:35:::0;8307:126::o;866:355:4:-;1013:4;1055:40;;;1070:25;1055:40;;:105;;-1:-1:-1;1112:48:4;;;1127:33;1112:48;1055:105;:158;;;-1:-1:-1;952:25:2;937:40;;;;1177:36:4;829:155:2;4912::4;5011:7;:14;4977:4;;5001:24;;:58;;;;;5057:1;5029:30;;:7;5037;5029:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;:30;;4994:65;4912:155;-1:-1:-1;;4912:155:4:o;7240:175::-;7315:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;7369;7315;7369:15;:24::i;:::-;7360:47;;;;;;;;;;;;7240:175;;:::o;3910:248:12:-;4011:7;4032:9;4043;4054:7;4065:26;4080:10;4065:14;:26::i;:::-;4109:41;;;;;;;;;;;;23187:25:14;;;23260:4;23248:17;;23228:18;;;23221:45;;;;23282:18;;;23275:34;;;23325:18;;;23318:34;;;4031:60:12;;-1:-1:-1;4031:60:12;;-1:-1:-1;4031:60:12;-1:-1:-1;4109:41:12;;23159:19:14;;4109:41:12;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4109:41:12;;;;;;3910:248;-1:-1:-1;;;;;;;3910:248:12:o;5075:453:4:-;5204:4;5248:16;5256:7;5248;:16::i;:::-;5226:110;;;;-1:-1:-1;;;5226:110:4;;23565:2:14;5226:110:4;;;23547:21:14;23604:2;23584:18;;;23577:30;23643:34;23623:18;;;23616:62;23714:14;23694:18;;;23687:42;23746:19;;5226:110:4;23363:408:14;5226:110:4;5347:13;5363:24;5379:7;5363:15;:24::i;:::-;5347:40;;5417:5;5406:16;;:7;:16;;;:64;;;;5463:7;5439:31;;:20;5451:7;5439:11;:20::i;:::-;:31;;;5406:64;:113;;;;5487:32;5504:5;5511:7;5487:16;:32::i;6678:554::-;6852:4;6824:32;;:24;6840:7;6824:15;:24::i;:::-;:32;;;6802:123;;;;-1:-1:-1;;;6802:123:4;;23978:2:14;6802:123:4;;;23960:21:14;24017:2;23997:18;;;23990:30;24056:34;24036:18;;;24029:62;24127:11;24107:18;;;24100:39;24156:19;;6802:123:4;23776:405:14;6802:123:4;6944:16;;;6936:65;;;;-1:-1:-1;;;6936:65:4;;24388:2:14;6936:65:4;;;24370:21:14;24427:2;24407:18;;;24400:30;24466:34;24446:18;;;24439:62;24537:6;24517:18;;;24510:34;24561:19;;6936:65:4;24186:400:14;6936:65:4;7118:29;7135:1;7139:7;7118:8;:29::i;:::-;7177:2;7158:7;7166;7158:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;;;;;;;;;;7197:27;;7216:7;;7197:27;;;;;;;;;;7158:16;7197:27;6678:554;;;:::o;2263:187:10:-;2355:6;;;;2371:17;;;;;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;7244:154:12:-;7325:7;:16;;;;;;;-1:-1:-1;7325:16:12;;;;;;;;;;;;;;;;;;7357:33;;7382:7;;-1:-1:-1;7357:33:12;;-1:-1:-1;;7357:33:12;7244:154;;:::o;4552:352:4:-;4709:28;4719:4;4725:2;4729:7;4709:9;:28::i;:::-;4770:48;4793:4;4799:2;4803:7;4812:5;4770:22;:48::i;:::-;4748:148;;;;-1:-1:-1;;;4748:148:4;;24793:2:14;4748:148:4;;;24775:21:14;24832:2;24812:18;;;24805:30;24871:34;24851:18;;;24844:62;24942:20;24922:18;;;24915:48;24980:19;;4748:148:4;24591:414:14;2730:99:12;2781:13;2814:7;2807:14;;;;;:::i;328:703:13:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:13;;;;;;;;;;;;;;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:13;;-1:-1:-1;773:2:13;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:13;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:13;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;972:11:13;981:2;972:11;;:::i;:::-;;;844:150;;4170:321:12;4234:9;4245;4256:7;4284:3;:10;4298:2;4284:16;4276:53;;;;-1:-1:-1;;;4276:53:12;;25643:2:14;4276:53:12;;;25625:21:14;25682:2;25662:18;;;25655:30;25721:26;25701:18;;;25694:54;25765:18;;4276:53:12;25441:348:14;4276:53:12;-1:-1:-1;;;4384:2:12;4375:12;;4369:19;4422:2;4413:12;;4407:19;4468:2;4459:12;;;4453:19;4369;;4450:1;4445:28;;;;;4170:321::o;7423:980:4:-;7578:4;7599:13;;;1087:20:0;1133:8;7595:801:4;;7652:175;;;;;:36;;;;;;:175;;719:10:1;;7746:4:4;;7773:7;;7803:5;;7652:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7652:175:4;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;7631:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8010:13:4;;8006:320;;8053:108;;-1:-1:-1;;;8053:108:4;;24793:2:14;8053:108:4;;;24775:21:14;24832:2;24812:18;;;24805:30;24871:34;24851:18;;;24844:62;24942:20;24922:18;;;24915:48;24980:19;;8053:108:4;24591:414:14;8006:320:4;8276:6;8270:13;8261:6;8257:2;8253:15;8246:38;7631:710;7891:51;;7901:41;7891:51;;-1:-1:-1;7884:58:4;;7595:801;-1:-1:-1;8380:4:4;7423:980;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:177:14;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:14;868:16;;861:27;638:258::o;901:317::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1132:2;1120:15;1137:66;1116:88;1107:98;;;;1207:4;1103:109;;901:317;-1:-1:-1;;901:317:14:o;1223:220::-;1372:2;1361:9;1354:21;1335:4;1392:45;1433:2;1422:9;1418:18;1410:6;1392:45;:::i;1448:180::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;-1:-1:-1;1599:23:14;;1448:180;-1:-1:-1;1448:180:14:o;1864:154::-;1950:42;1943:5;1939:54;1932:5;1929:65;1919:93;;2008:1;2005;1998:12;2023:315;2091:6;2099;2152:2;2140:9;2131:7;2127:23;2123:32;2120:52;;;2168:1;2165;2158:12;2120:52;2207:9;2194:23;2226:31;2251:5;2226:31;:::i;:::-;2276:5;2328:2;2313:18;;;;2300:32;;-1:-1:-1;;;2023:315:14:o;2525:184::-;2577:77;2574:1;2567:88;2674:4;2671:1;2664:15;2698:4;2695:1;2688:15;2714:334;2785:2;2779:9;2841:2;2831:13;;2846:66;2827:86;2815:99;;2944:18;2929:34;;2965:22;;;2926:62;2923:88;;;2991:18;;:::i;:::-;3027:2;3020:22;2714:334;;-1:-1:-1;2714:334:14:o;3053:465::-;3117:5;3151:18;3143:6;3140:30;3137:56;;;3173:18;;:::i;:::-;3211:116;3321:4;3252:66;3247:2;3239:6;3235:15;3231:88;3227:99;3211:116;:::i;:::-;3202:125;;3350:6;3343:5;3336:21;3390:3;3381:6;3376:3;3372:16;3369:25;3366:45;;;3407:1;3404;3397:12;3366:45;3456:6;3451:3;3444:4;3437:5;3433:16;3420:43;3510:1;3503:4;3494:6;3487:5;3483:18;3479:29;3472:40;3053:465;;;;;:::o;3523:220::-;3565:5;3618:3;3611:4;3603:6;3599:17;3595:27;3585:55;;3636:1;3633;3626:12;3585:55;3658:79;3733:3;3724:6;3711:20;3704:4;3696:6;3692:17;3658:79;:::i;3748:455::-;3825:6;3833;3886:2;3874:9;3865:7;3861:23;3857:32;3854:52;;;3902:1;3899;3892:12;3854:52;3941:9;3928:23;3960:31;3985:5;3960:31;:::i;:::-;4010:5;-1:-1:-1;4066:2:14;4051:18;;4038:32;4093:18;4082:30;;4079:50;;;4125:1;4122;4115:12;4079:50;4148:49;4189:7;4180:6;4169:9;4165:22;4148:49;:::i;:::-;4138:59;;;3748:455;;;;;:::o;4208:456::-;4285:6;4293;4301;4354:2;4342:9;4333:7;4329:23;4325:32;4322:52;;;4370:1;4367;4360:12;4322:52;4409:9;4396:23;4428:31;4453:5;4428:31;:::i;:::-;4478:5;-1:-1:-1;4535:2:14;4520:18;;4507:32;4548:33;4507:32;4548:33;:::i;:::-;4208:456;;4600:7;;-1:-1:-1;;;4654:2:14;4639:18;;;;4626:32;;4208:456::o;4669:450::-;4738:6;4791:2;4779:9;4770:7;4766:23;4762:32;4759:52;;;4807:1;4804;4797:12;4759:52;4847:9;4834:23;4880:18;4872:6;4869:30;4866:50;;;4912:1;4909;4902:12;4866:50;4935:22;;4988:4;4980:13;;4976:27;-1:-1:-1;4966:55:14;;5017:1;5014;5007:12;4966:55;5040:73;5105:7;5100:2;5087:16;5082:2;5078;5074:11;5040:73;:::i;5124:247::-;5183:6;5236:2;5224:9;5215:7;5211:23;5207:32;5204:52;;;5252:1;5249;5242:12;5204:52;5291:9;5278:23;5310:31;5335:5;5310:31;:::i;5376:632::-;5547:2;5599:21;;;5669:13;;5572:18;;;5691:22;;;5518:4;;5547:2;5770:15;;;;5744:2;5729:18;;;5518:4;5813:169;5827:6;5824:1;5821:13;5813:169;;;5888:13;;5876:26;;5957:15;;;;5922:12;;;;5849:1;5842:9;5813:169;;;-1:-1:-1;5999:3:14;;5376:632;-1:-1:-1;;;;;;5376:632:14:o;6013:160::-;6078:20;;6134:13;;6127:21;6117:32;;6107:60;;6163:1;6160;6153:12;6107:60;6013:160;;;:::o;6178:180::-;6234:6;6287:2;6275:9;6266:7;6262:23;6258:32;6255:52;;;6303:1;6300;6293:12;6255:52;6326:26;6342:9;6326:26;:::i;6363:681::-;6534:2;6586:21;;;6656:13;;6559:18;;;6678:22;;;6505:4;;6534:2;6757:15;;;;6731:2;6716:18;;;6505:4;6800:218;6814:6;6811:1;6808:13;6800:218;;;6879:13;;6894:42;6875:62;6863:75;;6993:15;;;;6958:12;;;;6836:1;6829:9;6800:218;;7049:315;7114:6;7122;7175:2;7163:9;7154:7;7150:23;7146:32;7143:52;;;7191:1;7188;7181:12;7143:52;7230:9;7217:23;7249:31;7274:5;7249:31;:::i;:::-;7299:5;-1:-1:-1;7323:35:14;7354:2;7339:18;;7323:35;:::i;:::-;7313:45;;7049:315;;;;;:::o;7369:665::-;7464:6;7472;7480;7488;7541:3;7529:9;7520:7;7516:23;7512:33;7509:53;;;7558:1;7555;7548:12;7509:53;7597:9;7584:23;7616:31;7641:5;7616:31;:::i;:::-;7666:5;-1:-1:-1;7723:2:14;7708:18;;7695:32;7736:33;7695:32;7736:33;:::i;:::-;7788:7;-1:-1:-1;7842:2:14;7827:18;;7814:32;;-1:-1:-1;7897:2:14;7882:18;;7869:32;7924:18;7913:30;;7910:50;;;7956:1;7953;7946:12;7910:50;7979:49;8020:7;8011:6;8000:9;7996:22;7979:49;:::i;:::-;7969:59;;;7369:665;;;;;;;:::o;8039:367::-;8102:8;8112:6;8166:3;8159:4;8151:6;8147:17;8143:27;8133:55;;8184:1;8181;8174:12;8133:55;-1:-1:-1;8207:20:14;;8250:18;8239:30;;8236:50;;;8282:1;8279;8272:12;8236:50;8319:4;8311:6;8307:17;8295:29;;8379:3;8372:4;8362:6;8359:1;8355:14;8347:6;8343:27;8339:38;8336:47;8333:67;;;8396:1;8393;8386:12;8333:67;8039:367;;;;;:::o;8411:773::-;8533:6;8541;8549;8557;8610:2;8598:9;8589:7;8585:23;8581:32;8578:52;;;8626:1;8623;8616:12;8578:52;8666:9;8653:23;8695:18;8736:2;8728:6;8725:14;8722:34;;;8752:1;8749;8742:12;8722:34;8791:70;8853:7;8844:6;8833:9;8829:22;8791:70;:::i;:::-;8880:8;;-1:-1:-1;8765:96:14;-1:-1:-1;8968:2:14;8953:18;;8940:32;;-1:-1:-1;8984:16:14;;;8981:36;;;9013:1;9010;9003:12;8981:36;;9052:72;9116:7;9105:8;9094:9;9090:24;9052:72;:::i;:::-;8411:773;;;;-1:-1:-1;9143:8:14;-1:-1:-1;;;;8411:773:14:o;9189:388::-;9257:6;9265;9318:2;9306:9;9297:7;9293:23;9289:32;9286:52;;;9334:1;9331;9324:12;9286:52;9373:9;9360:23;9392:31;9417:5;9392:31;:::i;:::-;9442:5;-1:-1:-1;9499:2:14;9484:18;;9471:32;9512:33;9471:32;9512:33;:::i;:::-;9564:7;9554:17;;;9189:388;;;;;:::o;9582:1222::-;9684:6;9692;9700;9753:2;9741:9;9732:7;9728:23;9724:32;9721:52;;;9769:1;9766;9759:12;9721:52;9808:9;9795:23;9827:31;9852:5;9827:31;:::i;:::-;9877:5;-1:-1:-1;9901:2:14;9940:18;;;9927:32;9968:33;9927:32;9968:33;:::i;:::-;10020:7;-1:-1:-1;10078:2:14;10063:18;;10050:32;10101:18;10131:14;;;10128:34;;;10158:1;10155;10148:12;10128:34;10196:6;10185:9;10181:22;10171:32;;10241:7;10234:4;10230:2;10226:13;10222:27;10212:55;;10263:1;10260;10253:12;10212:55;10299:2;10286:16;10321:2;10317;10314:10;10311:36;;;10327:18;;:::i;:::-;10373:2;10370:1;10366:10;10356:20;;10396:28;10420:2;10416;10412:11;10396:28;:::i;:::-;10458:15;;;10528:11;;;10524:20;;;10489:12;;;;10556:19;;;10553:39;;;10588:1;10585;10578:12;10553:39;10612:11;;;;10632:142;10648:6;10643:3;10640:15;10632:142;;;10714:17;;10702:30;;10665:12;;;;10752;;;;10632:142;;;10793:5;10783:15;;;;;;;;9582:1222;;;;;:::o;10809:388::-;10886:6;10894;10947:2;10935:9;10926:7;10922:23;10918:32;10915:52;;;10963:1;10960;10953:12;10915:52;10999:9;10986:23;10976:33;;11060:2;11049:9;11045:18;11032:32;11087:18;11079:6;11076:30;11073:50;;;11119:1;11116;11109:12;11202:437;11281:1;11277:12;;;;11324;;;11345:61;;11399:4;11391:6;11387:17;11377:27;;11345:61;11452:2;11444:6;11441:14;11421:18;11418:38;11415:218;;;11489:77;11486:1;11479:88;11590:4;11587:1;11580:15;11618:4;11615:1;11608:15;11415:218;;11202:437;;;:::o;14668:184::-;14720:77;14717:1;14710:88;14817:4;14814:1;14807:15;14841:4;14838:1;14831:15;14857:184;14909:77;14906:1;14899:88;15006:4;15003:1;14996:15;15030:4;15027:1;15020:15;15046:195;15085:3;15116:66;15109:5;15106:77;15103:103;;;15186:18;;:::i;:::-;-1:-1:-1;15233:1:14;15222:13;;15046:195::o;15456:128::-;15496:3;15527:1;15523:6;15520:1;15517:13;15514:39;;;15533:18;;:::i;:::-;-1:-1:-1;15569:9:14;;15456:128::o;18167:125::-;18207:4;18235:1;18232;18229:8;18226:34;;;18240:18;;:::i;:::-;-1:-1:-1;18277:9:14;;18167:125::o;18644:228::-;18684:7;18810:1;18742:66;18738:74;18735:1;18732:81;18727:1;18720:9;18713:17;18709:105;18706:131;;;18817:18;;:::i;:::-;-1:-1:-1;18857:9:14;;18644:228::o;20745:470::-;20924:3;20962:6;20956:13;20978:53;21024:6;21019:3;21012:4;21004:6;21000:17;20978:53;:::i;:::-;21094:13;;21053:16;;;;21116:57;21094:13;21053:16;21150:4;21138:17;;21116:57;:::i;:::-;21189:20;;20745:470;-1:-1:-1;;;;20745:470:14:o;21220:280::-;21319:6;21372:2;21360:9;21351:7;21347:23;21343:32;21340:52;;;21388:1;21385;21378:12;21340:52;21420:9;21414:16;21439:31;21464:5;21439:31;:::i;25010:184::-;25062:77;25059:1;25052:88;25159:4;25156:1;25149:15;25183:4;25180:1;25173:15;25199:120;25239:1;25265;25255:35;;25270:18;;:::i;:::-;-1:-1:-1;25304:9:14;;25199:120::o;25324:112::-;25356:1;25382;25372:35;;25387:18;;:::i;:::-;-1:-1:-1;25421:9:14;;25324:112::o;25794:512::-;25988:4;26017:42;26098:2;26090:6;26086:15;26075:9;26068:34;26150:2;26142:6;26138:15;26133:2;26122:9;26118:18;26111:43;;26190:6;26185:2;26174:9;26170:18;26163:34;26233:3;26228:2;26217:9;26213:18;26206:31;26254:46;26295:3;26284:9;26280:19;26272:6;26254:46;:::i;:::-;26246:54;25794:512;-1:-1:-1;;;;;;25794:512:14:o;26311:249::-;26380:6;26433:2;26421:9;26412:7;26408:23;26404:32;26401:52;;;26449:1;26446;26439:12;26401:52;26481:9;26475:16;26500:30;26524:5;26500:30;:::i

Swarm Source

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