ETH Price: $2,660.66 (+2.55%)

magetown.wtf (MAGETOWNWTF)
 

Overview

TokenID

1077

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
magetown

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-03
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (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);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: contracts/newone.sol


pragma solidity ^0.8.4;





contract magetown is ERC721A, Ownable {


    uint256 MAX_MINTS = 20;
    uint256 MAX_SUPPLY = 5000;
    uint256 public mintRate = 0.0 ether;
    bool public revealed = true;
    



    string public baseURI = "ipfs://QmcJQbXshyRMtqvXdWQi6s1ZD5Rqyy1F43nUHhmQMbDe5t/";


    constructor() ERC721A("magetown.wtf", "MAGETOWNWTF") {}

    function mint(uint256 quantity) external payable {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "dont be gready mageu");
        require(totalSupply() + quantity <= MAX_SUPPLY, "WE'RE OUT ON OPENSEA HAUNTING GOBLEEEEEEEEEENS");
        require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        _safeMint(msg.sender, quantity);
    }
        function _startTokenId()
        internal
        view
        virtual
        override returns (uint256) 
    {
        return 1;
    }

    function withdraw() external payable onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
    
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI_ = _baseURI();

        if (revealed) {
            return bytes(baseURI_).length > 0 ? string(abi.encodePacked(baseURI_, Strings.toString(tokenId), ".json")) : "";
        } else {
            return string(abi.encodePacked(baseURI_, ""));
        }
    }
     function changeRevealed(bool _revealed) public onlyOwner {
        revealed = _revealed;
    }

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

    function setMintRate(uint256 _mintRate) public onlyOwner {
        mintRate = _mintRate;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":[{"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":"bool","name":"_revealed","type":"bool"}],"name":"changeRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526014600955611388600a556000600b556001600c60006101000a81548160ff0219169083151502179055506040518060600160405280603681526020016200302060369139600d90805190602001906200006092919062000222565b503480156200006e57600080fd5b506040518060400160405280600c81526020017f6d616765746f776e2e77746600000000000000000000000000000000000000008152506040518060400160405280600b81526020017f4d414745544f574e5754460000000000000000000000000000000000000000008152508160029080519060200190620000f392919062000222565b5080600390805190602001906200010c92919062000222565b506200011d6200014b60201b60201c565b600081905550505062000145620001396200015460201b60201c565b6200015c60201b60201c565b62000337565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023090620002d2565b90600052602060002090601f016020900481019282620002545760008555620002a0565b82601f106200026f57805160ff1916838001178555620002a0565b82800160010185558215620002a0579182015b828111156200029f57825182559160200191906001019062000282565b5b509050620002af9190620002b3565b5090565b5b80821115620002ce576000816000905550600101620002b4565b5090565b60006002820490506001821680620002eb57607f821691505b6020821081141562000302576200030162000308565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612cd980620003476000396000f3fe60806040526004361061014b5760003560e01c8063715018a6116100b6578063c87b56dd1161006f578063c87b56dd14610450578063ca0dcf161461048d578063cf3604dc146104b8578063dbe2193f146104e1578063e985e9c51461050a578063f2fde38b146105475761014b565b8063715018a6146103755780638da5cb5b1461038c57806395d89b41146103b7578063a0712d68146103e2578063a22cb465146103fe578063b88d4fde146104275761014b565b80633ccfd60b116101085780633ccfd60b1461027257806342842e0e1461027c57806351830227146102a55780636352211e146102d05780636c0360eb1461030d57806370a08231146103385761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612223565b610570565b604051610184919061254a565b60405180910390f35b34801561019957600080fd5b506101a2610602565b6040516101af9190612565565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da919061227d565b610694565b6040516101ec91906124e3565b60405180910390f35b34801561020157600080fd5b5061021c600480360381019061021791906121b6565b610710565b005b34801561022a57600080fd5b506102336108b7565b6040516102409190612647565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b91906120a0565b6108ce565b005b61027a6108de565b005b34801561028857600080fd5b506102a3600480360381019061029e91906120a0565b6109aa565b005b3480156102b157600080fd5b506102ba6109ca565b6040516102c7919061254a565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f2919061227d565b6109dd565b60405161030491906124e3565b60405180910390f35b34801561031957600080fd5b506103226109ef565b60405161032f9190612565565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190612033565b610a7d565b60405161036c9190612647565b60405180910390f35b34801561038157600080fd5b5061038a610b36565b005b34801561039857600080fd5b506103a1610bbe565b6040516103ae91906124e3565b60405180910390f35b3480156103c357600080fd5b506103cc610be8565b6040516103d99190612565565b60405180910390f35b6103fc60048036038101906103f7919061227d565b610c7a565b005b34801561040a57600080fd5b5061042560048036038101906104209190612176565b610d86565b005b34801561043357600080fd5b5061044e600480360381019061044991906120f3565b610efe565b005b34801561045c57600080fd5b506104776004803603810190610472919061227d565b610f71565b6040516104849190612565565b60405180910390f35b34801561049957600080fd5b506104a2611056565b6040516104af9190612647565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906121f6565b61105c565b005b3480156104ed57600080fd5b506105086004803603810190610503919061227d565b6110f5565b005b34801561051657600080fd5b50610531600480360381019061052c9190612060565b61117b565b60405161053e919061254a565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190612033565b61120f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105cb57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105fb5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610611906128c6565b80601f016020809104026020016040519081016040528092919081815260200182805461063d906128c6565b801561068a5780601f1061065f5761010080835404028352916020019161068a565b820191906000526020600020905b81548152906001019060200180831161066d57829003601f168201915b5050505050905090565b600061069f82611307565b6106d5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061071b82611366565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610783576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107a2611434565b73ffffffffffffffffffffffffffffffffffffffff1614610805576107ce816107c9611434565b61117b565b610804576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006108c161143c565b6001546000540303905090565b6108d9838383611445565b505050565b6108e66117ef565b73ffffffffffffffffffffffffffffffffffffffff16610904610bbe565b73ffffffffffffffffffffffffffffffffffffffff161461095a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610951906125e7565b60405180910390fd5b610962610bbe565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156109a7573d6000803e3d6000fd5b50565b6109c583838360405180602001604052806000815250610efe565b505050565b600c60009054906101000a900460ff1681565b60006109e882611366565b9050919050565b600d80546109fc906128c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a28906128c6565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ae5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b3e6117ef565b73ffffffffffffffffffffffffffffffffffffffff16610b5c610bbe565b73ffffffffffffffffffffffffffffffffffffffff1614610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba9906125e7565b60405180910390fd5b610bbc60006117f7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610bf7906128c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610c23906128c6565b8015610c705780601f10610c4557610100808354040283529160200191610c70565b820191906000526020600020905b815481529060010190602001808311610c5357829003601f168201915b5050505050905090565b600954610c86336118bd565b82610c9191906126fb565b1115610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc9906125a7565b60405180910390fd5b600a5481610cde6108b7565b610ce891906126fb565b1115610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d20906125c7565b60405180910390fd5b80600b54610d379190612782565b341015610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090612627565b60405180910390fd5b610d833382611914565b50565b610d8e611434565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610df3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610e00611434565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ead611434565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ef2919061254a565b60405180910390a35050565b610f09848484611445565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610f6b57610f3484848484611932565b610f6a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610f7c82611307565b610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290612607565b60405180910390fd5b6000610fc5611a92565b9050600c60009054906101000a900460ff161561102d576000815111610ffa5760405180602001604052806000815250611025565b8061100484611b24565b604051602001611015929190612492565b6040516020818303038152906040525b915050611051565b8060405160200161103e91906124c1565b6040516020818303038152906040529150505b919050565b600b5481565b6110646117ef565b73ffffffffffffffffffffffffffffffffffffffff16611082610bbe565b73ffffffffffffffffffffffffffffffffffffffff16146110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf906125e7565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6110fd6117ef565b73ffffffffffffffffffffffffffffffffffffffff1661111b610bbe565b73ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611168906125e7565b60405180910390fd5b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112176117ef565b73ffffffffffffffffffffffffffffffffffffffff16611235610bbe565b73ffffffffffffffffffffffffffffffffffffffff161461128b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611282906125e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290612587565b60405180910390fd5b611304816117f7565b50565b60008161131261143c565b11158015611321575060005482105b801561135f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061137561143c565b116113fd576000548110156113fc5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156113fa575b60008114156113f05760046000836001900393508381526020019081526020016000205490506113c5565b809250505061142f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061145082611366565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114b7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166114d8611434565b73ffffffffffffffffffffffffffffffffffffffff161480611507575061150685611501611434565b61117b565b5b8061154c5750611515611434565b73ffffffffffffffffffffffffffffffffffffffff1661153484610694565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611585576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115ec576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115f98585856001611c85565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6116f686611c8b565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561178057600060018401905060006004600083815260200190815260200160002054141561177e57600054811461177d578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117e88585856001611c95565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b61192e828260405180602001604052806000815250611c9b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611958611434565b8786866040518563ffffffff1660e01b815260040161197a94939291906124fe565b602060405180830381600087803b15801561199457600080fd5b505af19250505080156119c557506040513d601f19601f820116820180604052508101906119c29190612250565b60015b611a3f573d80600081146119f5576040519150601f19603f3d011682016040523d82523d6000602084013e6119fa565b606091505b50600081511415611a37576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611aa1906128c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611acd906128c6565b8015611b1a5780601f10611aef57610100808354040283529160200191611b1a565b820191906000526020600020905b815481529060010190602001808311611afd57829003601f168201915b5050505050905090565b60606000821415611b6c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c80565b600082905060005b60008214611b9e578080611b8790612929565b915050600a82611b979190612751565b9150611b74565b60008167ffffffffffffffff811115611bba57611bb9612a5f565b5b6040519080825280601f01601f191660200182016040528015611bec5781602001600182028036833780820191505090505b5090505b60008514611c7957600182611c0591906127dc565b9150600a85611c149190612972565b6030611c2091906126fb565b60f81b818381518110611c3657611c35612a30565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c729190612751565b9450611bf0565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d08576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611d43576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d506000858386611c85565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611db560018514611f50565b901b60a042901b611dc586611c8b565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611ec9575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e796000878480600101955087611932565b611eaf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611e0a578260005414611ec457600080fd5b611f34565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611eca575b816000819055505050611f4a6000858386611c95565b50505050565b6000819050919050565b6000611f6d611f6884612687565b612662565b905082815260208101848484011115611f8957611f88612a93565b5b611f94848285612884565b509392505050565b600081359050611fab81612c47565b92915050565b600081359050611fc081612c5e565b92915050565b600081359050611fd581612c75565b92915050565b600081519050611fea81612c75565b92915050565b600082601f83011261200557612004612a8e565b5b8135612015848260208601611f5a565b91505092915050565b60008135905061202d81612c8c565b92915050565b60006020828403121561204957612048612a9d565b5b600061205784828501611f9c565b91505092915050565b6000806040838503121561207757612076612a9d565b5b600061208585828601611f9c565b925050602061209685828601611f9c565b9150509250929050565b6000806000606084860312156120b9576120b8612a9d565b5b60006120c786828701611f9c565b93505060206120d886828701611f9c565b92505060406120e98682870161201e565b9150509250925092565b6000806000806080858703121561210d5761210c612a9d565b5b600061211b87828801611f9c565b945050602061212c87828801611f9c565b935050604061213d8782880161201e565b925050606085013567ffffffffffffffff81111561215e5761215d612a98565b5b61216a87828801611ff0565b91505092959194509250565b6000806040838503121561218d5761218c612a9d565b5b600061219b85828601611f9c565b92505060206121ac85828601611fb1565b9150509250929050565b600080604083850312156121cd576121cc612a9d565b5b60006121db85828601611f9c565b92505060206121ec8582860161201e565b9150509250929050565b60006020828403121561220c5761220b612a9d565b5b600061221a84828501611fb1565b91505092915050565b60006020828403121561223957612238612a9d565b5b600061224784828501611fc6565b91505092915050565b60006020828403121561226657612265612a9d565b5b600061227484828501611fdb565b91505092915050565b60006020828403121561229357612292612a9d565b5b60006122a18482850161201e565b91505092915050565b6122b381612810565b82525050565b6122c281612822565b82525050565b60006122d3826126b8565b6122dd81856126ce565b93506122ed818560208601612893565b6122f681612aa2565b840191505092915050565b600061230c826126c3565b61231681856126df565b9350612326818560208601612893565b61232f81612aa2565b840191505092915050565b6000612345826126c3565b61234f81856126f0565b935061235f818560208601612893565b80840191505092915050565b60006123786026836126df565b915061238382612ab3565b604082019050919050565b600061239b6014836126df565b91506123a682612b02565b602082019050919050565b60006123be602e836126df565b91506123c982612b2b565b604082019050919050565b60006123e16005836126f0565b91506123ec82612b7a565b600582019050919050565b60006124046020836126df565b915061240f82612ba3565b602082019050919050565b6000612427602f836126df565b915061243282612bcc565b604082019050919050565b600061244a6000836126f0565b915061245582612c1b565b600082019050919050565b600061246d6015836126df565b915061247882612c1e565b602082019050919050565b61248c8161287a565b82525050565b600061249e828561233a565b91506124aa828461233a565b91506124b5826123d4565b91508190509392505050565b60006124cd828461233a565b91506124d88261243d565b915081905092915050565b60006020820190506124f860008301846122aa565b92915050565b600060808201905061251360008301876122aa565b61252060208301866122aa565b61252d6040830185612483565b818103606083015261253f81846122c8565b905095945050505050565b600060208201905061255f60008301846122b9565b92915050565b6000602082019050818103600083015261257f8184612301565b905092915050565b600060208201905081810360008301526125a08161236b565b9050919050565b600060208201905081810360008301526125c08161238e565b9050919050565b600060208201905081810360008301526125e0816123b1565b9050919050565b60006020820190508181036000830152612600816123f7565b9050919050565b600060208201905081810360008301526126208161241a565b9050919050565b6000602082019050818103600083015261264081612460565b9050919050565b600060208201905061265c6000830184612483565b92915050565b600061266c61267d565b905061267882826128f8565b919050565b6000604051905090565b600067ffffffffffffffff8211156126a2576126a1612a5f565b5b6126ab82612aa2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006127068261287a565b91506127118361287a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612746576127456129a3565b5b828201905092915050565b600061275c8261287a565b91506127678361287a565b925082612777576127766129d2565b5b828204905092915050565b600061278d8261287a565b91506127988361287a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127d1576127d06129a3565b5b828202905092915050565b60006127e78261287a565b91506127f28361287a565b925082821015612805576128046129a3565b5b828203905092915050565b600061281b8261285a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156128b1578082015181840152602081019050612896565b838111156128c0576000848401525b50505050565b600060028204905060018216806128de57607f821691505b602082108114156128f2576128f1612a01565b5b50919050565b61290182612aa2565b810181811067ffffffffffffffff821117156129205761291f612a5f565b5b80604052505050565b60006129348261287a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612967576129666129a3565b5b600182019050919050565b600061297d8261287a565b91506129888361287a565b925082612998576129976129d2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f646f6e7420626520677265616479206d61676575000000000000000000000000600082015250565b7f5745275245204f5554204f4e204f50454e534541204841554e54494e4720474f60008201527f424c454545454545454545454e53000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b612c5081612810565b8114612c5b57600080fd5b50565b612c6781612822565b8114612c7257600080fd5b50565b612c7e8161282e565b8114612c8957600080fd5b50565b612c958161287a565b8114612ca057600080fd5b5056fea2646970667358221220cfbf634f6caa2945c7e7434b61afd6750669ddde7389731a6be03531ad4e4f9164736f6c63430008070033697066733a2f2f516d634a516258736879524d74717658645751693673315a443552717979314634336e5548686d514d62446535742f

Deployed Bytecode

0x60806040526004361061014b5760003560e01c8063715018a6116100b6578063c87b56dd1161006f578063c87b56dd14610450578063ca0dcf161461048d578063cf3604dc146104b8578063dbe2193f146104e1578063e985e9c51461050a578063f2fde38b146105475761014b565b8063715018a6146103755780638da5cb5b1461038c57806395d89b41146103b7578063a0712d68146103e2578063a22cb465146103fe578063b88d4fde146104275761014b565b80633ccfd60b116101085780633ccfd60b1461027257806342842e0e1461027c57806351830227146102a55780636352211e146102d05780636c0360eb1461030d57806370a08231146103385761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612223565b610570565b604051610184919061254a565b60405180910390f35b34801561019957600080fd5b506101a2610602565b6040516101af9190612565565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da919061227d565b610694565b6040516101ec91906124e3565b60405180910390f35b34801561020157600080fd5b5061021c600480360381019061021791906121b6565b610710565b005b34801561022a57600080fd5b506102336108b7565b6040516102409190612647565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b91906120a0565b6108ce565b005b61027a6108de565b005b34801561028857600080fd5b506102a3600480360381019061029e91906120a0565b6109aa565b005b3480156102b157600080fd5b506102ba6109ca565b6040516102c7919061254a565b60405180910390f35b3480156102dc57600080fd5b506102f760048036038101906102f2919061227d565b6109dd565b60405161030491906124e3565b60405180910390f35b34801561031957600080fd5b506103226109ef565b60405161032f9190612565565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190612033565b610a7d565b60405161036c9190612647565b60405180910390f35b34801561038157600080fd5b5061038a610b36565b005b34801561039857600080fd5b506103a1610bbe565b6040516103ae91906124e3565b60405180910390f35b3480156103c357600080fd5b506103cc610be8565b6040516103d99190612565565b60405180910390f35b6103fc60048036038101906103f7919061227d565b610c7a565b005b34801561040a57600080fd5b5061042560048036038101906104209190612176565b610d86565b005b34801561043357600080fd5b5061044e600480360381019061044991906120f3565b610efe565b005b34801561045c57600080fd5b506104776004803603810190610472919061227d565b610f71565b6040516104849190612565565b60405180910390f35b34801561049957600080fd5b506104a2611056565b6040516104af9190612647565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da91906121f6565b61105c565b005b3480156104ed57600080fd5b506105086004803603810190610503919061227d565b6110f5565b005b34801561051657600080fd5b50610531600480360381019061052c9190612060565b61117b565b60405161053e919061254a565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190612033565b61120f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105cb57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105fb5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610611906128c6565b80601f016020809104026020016040519081016040528092919081815260200182805461063d906128c6565b801561068a5780601f1061065f5761010080835404028352916020019161068a565b820191906000526020600020905b81548152906001019060200180831161066d57829003601f168201915b5050505050905090565b600061069f82611307565b6106d5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061071b82611366565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610783576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107a2611434565b73ffffffffffffffffffffffffffffffffffffffff1614610805576107ce816107c9611434565b61117b565b610804576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006108c161143c565b6001546000540303905090565b6108d9838383611445565b505050565b6108e66117ef565b73ffffffffffffffffffffffffffffffffffffffff16610904610bbe565b73ffffffffffffffffffffffffffffffffffffffff161461095a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610951906125e7565b60405180910390fd5b610962610bbe565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156109a7573d6000803e3d6000fd5b50565b6109c583838360405180602001604052806000815250610efe565b505050565b600c60009054906101000a900460ff1681565b60006109e882611366565b9050919050565b600d80546109fc906128c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a28906128c6565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ae5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b3e6117ef565b73ffffffffffffffffffffffffffffffffffffffff16610b5c610bbe565b73ffffffffffffffffffffffffffffffffffffffff1614610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba9906125e7565b60405180910390fd5b610bbc60006117f7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610bf7906128c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610c23906128c6565b8015610c705780601f10610c4557610100808354040283529160200191610c70565b820191906000526020600020905b815481529060010190602001808311610c5357829003601f168201915b5050505050905090565b600954610c86336118bd565b82610c9191906126fb565b1115610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc9906125a7565b60405180910390fd5b600a5481610cde6108b7565b610ce891906126fb565b1115610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d20906125c7565b60405180910390fd5b80600b54610d379190612782565b341015610d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7090612627565b60405180910390fd5b610d833382611914565b50565b610d8e611434565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610df3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610e00611434565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ead611434565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ef2919061254a565b60405180910390a35050565b610f09848484611445565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610f6b57610f3484848484611932565b610f6a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610f7c82611307565b610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290612607565b60405180910390fd5b6000610fc5611a92565b9050600c60009054906101000a900460ff161561102d576000815111610ffa5760405180602001604052806000815250611025565b8061100484611b24565b604051602001611015929190612492565b6040516020818303038152906040525b915050611051565b8060405160200161103e91906124c1565b6040516020818303038152906040529150505b919050565b600b5481565b6110646117ef565b73ffffffffffffffffffffffffffffffffffffffff16611082610bbe565b73ffffffffffffffffffffffffffffffffffffffff16146110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf906125e7565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6110fd6117ef565b73ffffffffffffffffffffffffffffffffffffffff1661111b610bbe565b73ffffffffffffffffffffffffffffffffffffffff1614611171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611168906125e7565b60405180910390fd5b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112176117ef565b73ffffffffffffffffffffffffffffffffffffffff16611235610bbe565b73ffffffffffffffffffffffffffffffffffffffff161461128b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611282906125e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290612587565b60405180910390fd5b611304816117f7565b50565b60008161131261143c565b11158015611321575060005482105b801561135f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061137561143c565b116113fd576000548110156113fc5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156113fa575b60008114156113f05760046000836001900393508381526020019081526020016000205490506113c5565b809250505061142f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061145082611366565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114b7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166114d8611434565b73ffffffffffffffffffffffffffffffffffffffff161480611507575061150685611501611434565b61117b565b5b8061154c5750611515611434565b73ffffffffffffffffffffffffffffffffffffffff1661153484610694565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611585576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115ec576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115f98585856001611c85565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6116f686611c8b565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561178057600060018401905060006004600083815260200190815260200160002054141561177e57600054811461177d578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117e88585856001611c95565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b61192e828260405180602001604052806000815250611c9b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611958611434565b8786866040518563ffffffff1660e01b815260040161197a94939291906124fe565b602060405180830381600087803b15801561199457600080fd5b505af19250505080156119c557506040513d601f19601f820116820180604052508101906119c29190612250565b60015b611a3f573d80600081146119f5576040519150601f19603f3d011682016040523d82523d6000602084013e6119fa565b606091505b50600081511415611a37576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611aa1906128c6565b80601f0160208091040260200160405190810160405280929190818152602001828054611acd906128c6565b8015611b1a5780601f10611aef57610100808354040283529160200191611b1a565b820191906000526020600020905b815481529060010190602001808311611afd57829003601f168201915b5050505050905090565b60606000821415611b6c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c80565b600082905060005b60008214611b9e578080611b8790612929565b915050600a82611b979190612751565b9150611b74565b60008167ffffffffffffffff811115611bba57611bb9612a5f565b5b6040519080825280601f01601f191660200182016040528015611bec5781602001600182028036833780820191505090505b5090505b60008514611c7957600182611c0591906127dc565b9150600a85611c149190612972565b6030611c2091906126fb565b60f81b818381518110611c3657611c35612a30565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c729190612751565b9450611bf0565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d08576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611d43576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d506000858386611c85565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611db560018514611f50565b901b60a042901b611dc586611c8b565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611ec9575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e796000878480600101955087611932565b611eaf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611e0a578260005414611ec457600080fd5b611f34565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611eca575b816000819055505050611f4a6000858386611c95565b50505050565b6000819050919050565b6000611f6d611f6884612687565b612662565b905082815260208101848484011115611f8957611f88612a93565b5b611f94848285612884565b509392505050565b600081359050611fab81612c47565b92915050565b600081359050611fc081612c5e565b92915050565b600081359050611fd581612c75565b92915050565b600081519050611fea81612c75565b92915050565b600082601f83011261200557612004612a8e565b5b8135612015848260208601611f5a565b91505092915050565b60008135905061202d81612c8c565b92915050565b60006020828403121561204957612048612a9d565b5b600061205784828501611f9c565b91505092915050565b6000806040838503121561207757612076612a9d565b5b600061208585828601611f9c565b925050602061209685828601611f9c565b9150509250929050565b6000806000606084860312156120b9576120b8612a9d565b5b60006120c786828701611f9c565b93505060206120d886828701611f9c565b92505060406120e98682870161201e565b9150509250925092565b6000806000806080858703121561210d5761210c612a9d565b5b600061211b87828801611f9c565b945050602061212c87828801611f9c565b935050604061213d8782880161201e565b925050606085013567ffffffffffffffff81111561215e5761215d612a98565b5b61216a87828801611ff0565b91505092959194509250565b6000806040838503121561218d5761218c612a9d565b5b600061219b85828601611f9c565b92505060206121ac85828601611fb1565b9150509250929050565b600080604083850312156121cd576121cc612a9d565b5b60006121db85828601611f9c565b92505060206121ec8582860161201e565b9150509250929050565b60006020828403121561220c5761220b612a9d565b5b600061221a84828501611fb1565b91505092915050565b60006020828403121561223957612238612a9d565b5b600061224784828501611fc6565b91505092915050565b60006020828403121561226657612265612a9d565b5b600061227484828501611fdb565b91505092915050565b60006020828403121561229357612292612a9d565b5b60006122a18482850161201e565b91505092915050565b6122b381612810565b82525050565b6122c281612822565b82525050565b60006122d3826126b8565b6122dd81856126ce565b93506122ed818560208601612893565b6122f681612aa2565b840191505092915050565b600061230c826126c3565b61231681856126df565b9350612326818560208601612893565b61232f81612aa2565b840191505092915050565b6000612345826126c3565b61234f81856126f0565b935061235f818560208601612893565b80840191505092915050565b60006123786026836126df565b915061238382612ab3565b604082019050919050565b600061239b6014836126df565b91506123a682612b02565b602082019050919050565b60006123be602e836126df565b91506123c982612b2b565b604082019050919050565b60006123e16005836126f0565b91506123ec82612b7a565b600582019050919050565b60006124046020836126df565b915061240f82612ba3565b602082019050919050565b6000612427602f836126df565b915061243282612bcc565b604082019050919050565b600061244a6000836126f0565b915061245582612c1b565b600082019050919050565b600061246d6015836126df565b915061247882612c1e565b602082019050919050565b61248c8161287a565b82525050565b600061249e828561233a565b91506124aa828461233a565b91506124b5826123d4565b91508190509392505050565b60006124cd828461233a565b91506124d88261243d565b915081905092915050565b60006020820190506124f860008301846122aa565b92915050565b600060808201905061251360008301876122aa565b61252060208301866122aa565b61252d6040830185612483565b818103606083015261253f81846122c8565b905095945050505050565b600060208201905061255f60008301846122b9565b92915050565b6000602082019050818103600083015261257f8184612301565b905092915050565b600060208201905081810360008301526125a08161236b565b9050919050565b600060208201905081810360008301526125c08161238e565b9050919050565b600060208201905081810360008301526125e0816123b1565b9050919050565b60006020820190508181036000830152612600816123f7565b9050919050565b600060208201905081810360008301526126208161241a565b9050919050565b6000602082019050818103600083015261264081612460565b9050919050565b600060208201905061265c6000830184612483565b92915050565b600061266c61267d565b905061267882826128f8565b919050565b6000604051905090565b600067ffffffffffffffff8211156126a2576126a1612a5f565b5b6126ab82612aa2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006127068261287a565b91506127118361287a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612746576127456129a3565b5b828201905092915050565b600061275c8261287a565b91506127678361287a565b925082612777576127766129d2565b5b828204905092915050565b600061278d8261287a565b91506127988361287a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156127d1576127d06129a3565b5b828202905092915050565b60006127e78261287a565b91506127f28361287a565b925082821015612805576128046129a3565b5b828203905092915050565b600061281b8261285a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156128b1578082015181840152602081019050612896565b838111156128c0576000848401525b50505050565b600060028204905060018216806128de57607f821691505b602082108114156128f2576128f1612a01565b5b50919050565b61290182612aa2565b810181811067ffffffffffffffff821117156129205761291f612a5f565b5b80604052505050565b60006129348261287a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612967576129666129a3565b5b600182019050919050565b600061297d8261287a565b91506129888361287a565b925082612998576129976129d2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f646f6e7420626520677265616479206d61676575000000000000000000000000600082015250565b7f5745275245204f5554204f4e204f50454e534541204841554e54494e4720474f60008201527f424c454545454545454545454e53000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b612c5081612810565b8114612c5b57600080fd5b50565b612c6781612822565b8114612c7257600080fd5b50565b612c7e8161282e565b8114612c8957600080fd5b50565b612c958161287a565b8114612ca057600080fd5b5056fea2646970667358221220cfbf634f6caa2945c7e7434b61afd6750669ddde7389731a6be03531ad4e4f9164736f6c63430008070033

Deployed Bytecode Sourcemap

43997:1881:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18653:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23666:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25734:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25194:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17707:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26620:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44969:114;;;:::i;:::-;;26861:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44149:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23455:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44195:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19332:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4763:103;;;;;;;;;;;;;:::i;:::-;;4112:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23835:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44349:459;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26010:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27117:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45095:465;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44107:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45567:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45779;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26389:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5021:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18653:615;18738:4;19053:10;19038:25;;:11;:25;;;;:102;;;;19130:10;19115:25;;:11;:25;;;;19038:102;:179;;;;19207:10;19192:25;;:11;:25;;;;19038:179;19018:199;;18653:615;;;:::o;23666:100::-;23720:13;23753:5;23746:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23666:100;:::o;25734:204::-;25802:7;25827:16;25835:7;25827;:16::i;:::-;25822:64;;25852:34;;;;;;;;;;;;;;25822:64;25906:15;:24;25922:7;25906:24;;;;;;;;;;;;;;;;;;;;;25899:31;;25734:204;;;:::o;25194:474::-;25267:13;25299:27;25318:7;25299:18;:27::i;:::-;25267:61;;25349:5;25343:11;;:2;:11;;;25339:48;;;25363:24;;;;;;;;;;;;;;25339:48;25427:5;25404:28;;:19;:17;:19::i;:::-;:28;;;25400:175;;25452:44;25469:5;25476:19;:17;:19::i;:::-;25452:16;:44::i;:::-;25447:128;;25524:35;;;;;;;;;;;;;;25447:128;25400:175;25614:2;25587:15;:24;25603:7;25587:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25652:7;25648:2;25632:28;;25641:5;25632:28;;;;;;;;;;;;25256:412;25194:474;;:::o;17707:315::-;17760:7;17988:15;:13;:15::i;:::-;17973:12;;17957:13;;:28;:46;17950:53;;17707:315;:::o;26620:170::-;26754:28;26764:4;26770:2;26774:7;26754:9;:28::i;:::-;26620:170;;;:::o;44969:114::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45035:7:::1;:5;:7::i;:::-;45027:25;;:48;45053:21;45027:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;44969:114::o:0;26861:185::-;26999:39;27016:4;27022:2;27026:7;26999:39;;;;;;;;;;;;:16;:39::i;:::-;26861:185;;;:::o;44149:27::-;;;;;;;;;;;;;:::o;23455:144::-;23519:7;23562:27;23581:7;23562:18;:27::i;:::-;23539:52;;23455:144;;;:::o;44195:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19332:224::-;19396:7;19437:1;19420:19;;:5;:19;;;19416:60;;;19448:28;;;;;;;;;;;;;;19416:60;14671:13;19494:18;:25;19513:5;19494:25;;;;;;;;;;;;;;;;:54;19487:61;;19332:224;;;:::o;4763:103::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;4112:87::-;4158:7;4185:6;;;;;;;;;;;4178:13;;4112:87;:::o;23835:104::-;23891:13;23924:7;23917:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23835:104;:::o;44349:459::-;44537:9;;44508:25;44522:10;44508:13;:25::i;:::-;44497:8;:36;;;;:::i;:::-;:49;;44489:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;44618:10;;44606:8;44590:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;44582:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;44723:8;44712;;:19;;;;:::i;:::-;44698:9;:34;;44690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44769:31;44779:10;44791:8;44769:9;:31::i;:::-;44349:459;:::o;26010:308::-;26121:19;:17;:19::i;:::-;26109:31;;:8;:31;;;26105:61;;;26149:17;;;;;;;;;;;;;;26105:61;26231:8;26179:18;:39;26198:19;:17;:19::i;:::-;26179:39;;;;;;;;;;;;;;;:49;26219:8;26179:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26291:8;26255:55;;26270:19;:17;:19::i;:::-;26255:55;;;26301:8;26255:55;;;;;;:::i;:::-;;;;;;;;26010:308;;:::o;27117:396::-;27284:28;27294:4;27300:2;27304:7;27284:9;:28::i;:::-;27345:1;27327:2;:14;;;:19;27323:183;;27366:56;27397:4;27403:2;27407:7;27416:5;27366:30;:56::i;:::-;27361:145;;27450:40;;;;;;;;;;;;;;27361:145;27323:183;27117:396;;;;:::o;45095:465::-;45160:13;45194:16;45202:7;45194;:16::i;:::-;45186:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;45275:22;45300:10;:8;:10::i;:::-;45275:35;;45327:8;;;;;;;;;;;45323:230;;;45384:1;45365:8;45359:22;:26;:104;;;;;;;;;;;;;;;;;45412:8;45422:25;45439:7;45422:16;:25::i;:::-;45395:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45359:104;45352:111;;;;;45323:230;45527:8;45510:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;45496:45;;;45095:465;;;;:::o;44107:35::-;;;;:::o;45567:96::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45646:9:::1;45635:8;;:20;;;;;;;;;;;;;;;;;;45567:96:::0;:::o;45779:::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45858:9:::1;45847:8;:20;;;;45779:96:::0;:::o;26389:164::-;26486:4;26510:18;:25;26529:5;26510:25;;;;;;;;;;;;;;;:35;26536:8;26510:35;;;;;;;;;;;;;;;;;;;;;;;;;26503:42;;26389:164;;;;:::o;5021:201::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5130:1:::1;5110:22;;:8;:22;;;;5102:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5186:28;5205:8;5186:18;:28::i;:::-;5021:201:::0;:::o;27768:273::-;27825:4;27881:7;27862:15;:13;:15::i;:::-;:26;;:66;;;;;27915:13;;27905:7;:23;27862:66;:152;;;;;28013:1;15441:8;27966:17;:26;27984:7;27966:26;;;;;;;;;;;;:43;:48;27862:152;27842:172;;27768:273;;;:::o;20970:1129::-;21037:7;21057:12;21072:7;21057:22;;21140:4;21121:15;:13;:15::i;:::-;:23;21117:915;;21174:13;;21167:4;:20;21163:869;;;21212:14;21229:17;:23;21247:4;21229:23;;;;;;;;;;;;21212:40;;21345:1;15441:8;21318:6;:23;:28;21314:699;;;21837:113;21854:1;21844:6;:11;21837:113;;;21897:17;:25;21915:6;;;;;;;21897:25;;;;;;;;;;;;21888:34;;21837:113;;;21983:6;21976:13;;;;;;21314:699;21189:843;21163:869;21117:915;22060:31;;;;;;;;;;;;;;20970:1129;;;;:::o;41750:105::-;41810:7;41837:10;41830:17;;41750:105;:::o;44818:143::-;44919:7;44952:1;44945:8;;44818:143;:::o;33007:2515::-;33122:27;33152;33171:7;33152:18;:27::i;:::-;33122:57;;33237:4;33196:45;;33212:19;33196:45;;;33192:86;;33250:28;;;;;;;;;;;;;;33192:86;33291:22;33340:4;33317:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;33361:43;33378:4;33384:19;:17;:19::i;:::-;33361:16;:43::i;:::-;33317:87;:147;;;;33445:19;:17;:19::i;:::-;33421:43;;:20;33433:7;33421:11;:20::i;:::-;:43;;;33317:147;33291:174;;33483:17;33478:66;;33509:35;;;;;;;;;;;;;;33478:66;33573:1;33559:16;;:2;:16;;;33555:52;;;33584:23;;;;;;;;;;;;;;33555:52;33620:43;33642:4;33648:2;33652:7;33661:1;33620:21;:43::i;:::-;33736:15;:24;33752:7;33736:24;;;;;;;;;;;;33729:31;;;;;;;;;;;34128:18;:24;34147:4;34128:24;;;;;;;;;;;;;;;;34126:26;;;;;;;;;;;;34197:18;:22;34216:2;34197:22;;;;;;;;;;;;;;;;34195:24;;;;;;;;;;;15723:8;15325:3;34578:15;:41;;34536:21;34554:2;34536:17;:21::i;:::-;:84;:128;34490:17;:26;34508:7;34490:26;;;;;;;;;;;:174;;;;34834:1;15723:8;34784:19;:46;:51;34780:626;;;34856:19;34888:1;34878:7;:11;34856:33;;35045:1;35011:17;:30;35029:11;35011:30;;;;;;;;;;;;:35;35007:384;;;35149:13;;35134:11;:28;35130:242;;35329:19;35296:17;:30;35314:11;35296:30;;;;;;;;;;;:52;;;;35130:242;35007:384;34837:569;34780:626;35453:7;35449:2;35434:27;;35443:4;35434:27;;;;;;;;;;;;35472:42;35493:4;35499:2;35503:7;35512:1;35472:20;:42::i;:::-;33111:2411;;33007:2515;;;:::o;2836:98::-;2889:7;2916:10;2909:17;;2836:98;:::o;5382:191::-;5456:16;5475:6;;;;;;;;;;;5456:25;;5501:8;5492:6;;:17;;;;;;;;;;;;;;;;;;5556:8;5525:40;;5546:8;5525:40;;;;;;;;;;;;5445:128;5382:191;:::o;19638:176::-;19699:7;14671:13;14808:2;19727:18;:25;19746:5;19727:25;;;;;;;;;;;;;;;;:49;;19726:80;19719:87;;19638:176;;;:::o;28125:104::-;28194:27;28204:2;28208:8;28194:27;;;;;;;;;;;;:9;:27::i;:::-;28125:104;;:::o;39219:716::-;39382:4;39428:2;39403:45;;;39449:19;:17;:19::i;:::-;39470:4;39476:7;39485:5;39403:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39399:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39703:1;39686:6;:13;:18;39682:235;;;39732:40;;;;;;;;;;;;;;39682:235;39875:6;39869:13;39860:6;39856:2;39852:15;39845:38;39399:529;39572:54;;;39562:64;;;:6;:64;;;;39555:71;;;39219:716;;;;;;:::o;45671:100::-;45723:13;45756:7;45749:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45671:100;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;40583:159::-;;;;;:::o;24755:148::-;24819:14;24880:5;24870:15;;24755:148;;;:::o;41401:158::-;;;;;:::o;28602:2236::-;28725:20;28748:13;;28725:36;;28790:1;28776:16;;:2;:16;;;28772:48;;;28801:19;;;;;;;;;;;;;;28772:48;28847:1;28835:8;:13;28831:44;;;28857:18;;;;;;;;;;;;;;28831:44;28888:61;28918:1;28922:2;28926:12;28940:8;28888:21;:61::i;:::-;29492:1;14808:2;29463:1;:25;;29462:31;29450:8;:44;29424:18;:22;29443:2;29424:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;15588:3;29893:29;29920:1;29908:8;:13;29893:14;:29::i;:::-;:56;;15325:3;29830:15;:41;;29788:21;29806:2;29788:17;:21::i;:::-;:84;:162;29737:17;:31;29755:12;29737:31;;;;;;;;;;;:213;;;;29967:20;29990:12;29967:35;;30017:11;30046:8;30031:12;:23;30017:37;;30093:1;30075:2;:14;;;:19;30071:635;;30115:313;30171:12;30167:2;30146:38;;30163:1;30146:38;;;;;;;;;;;;30212:69;30251:1;30255:2;30259:14;;;;;;30275:5;30212:30;:69::i;:::-;30207:174;;30317:40;;;;;;;;;;;;;;30207:174;30423:3;30408:12;:18;30115:313;;30509:12;30492:13;;:29;30488:43;;30523:8;;;30488:43;30071:635;;;30572:119;30628:14;;;;;;30624:2;30603:40;;30620:1;30603:40;;;;;;;;;;;;30686:3;30671:12;:18;30572:119;;30071:635;30736:12;30720:13;:28;;;;29201:1559;;30770:60;30799:1;30803:2;30807:12;30821:8;30770:20;:60::i;:::-;28714:2124;28602:2236;;;:::o;24990:142::-;25048:14;25109:5;25099:15;;24990:142;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1354:139::-;1400:5;1438:6;1425:20;1416:29;;1454:33;1481:5;1454:33;:::i;:::-;1354:139;;;;:::o;1499:329::-;1558:6;1607:2;1595:9;1586:7;1582:23;1578:32;1575:119;;;1613:79;;:::i;:::-;1575:119;1733:1;1758:53;1803:7;1794:6;1783:9;1779:22;1758:53;:::i;:::-;1748:63;;1704:117;1499:329;;;;:::o;1834:474::-;1902:6;1910;1959:2;1947:9;1938:7;1934:23;1930:32;1927:119;;;1965:79;;:::i;:::-;1927:119;2085:1;2110:53;2155:7;2146:6;2135:9;2131:22;2110:53;:::i;:::-;2100:63;;2056:117;2212:2;2238:53;2283:7;2274:6;2263:9;2259:22;2238:53;:::i;:::-;2228:63;;2183:118;1834:474;;;;;:::o;2314:619::-;2391:6;2399;2407;2456:2;2444:9;2435:7;2431:23;2427:32;2424:119;;;2462:79;;:::i;:::-;2424:119;2582:1;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2553:117;2709:2;2735:53;2780:7;2771:6;2760:9;2756:22;2735:53;:::i;:::-;2725:63;;2680:118;2837:2;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2808:118;2314:619;;;;;:::o;2939:943::-;3034:6;3042;3050;3058;3107:3;3095:9;3086:7;3082:23;3078:33;3075:120;;;3114:79;;:::i;:::-;3075:120;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3645:2;3634:9;3630:18;3617:32;3676:18;3668:6;3665:30;3662:117;;;3698:79;;:::i;:::-;3662:117;3803:62;3857:7;3848:6;3837:9;3833:22;3803:62;:::i;:::-;3793:72;;3588:287;2939:943;;;;;;;:::o;3888:468::-;3953:6;3961;4010:2;3998:9;3989:7;3985:23;3981:32;3978:119;;;4016:79;;:::i;:::-;3978:119;4136:1;4161:53;4206:7;4197:6;4186:9;4182:22;4161:53;:::i;:::-;4151:63;;4107:117;4263:2;4289:50;4331:7;4322:6;4311:9;4307:22;4289:50;:::i;:::-;4279:60;;4234:115;3888:468;;;;;:::o;4362:474::-;4430:6;4438;4487:2;4475:9;4466:7;4462:23;4458:32;4455:119;;;4493:79;;:::i;:::-;4455:119;4613:1;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4584:117;4740:2;4766:53;4811:7;4802:6;4791:9;4787:22;4766:53;:::i;:::-;4756:63;;4711:118;4362:474;;;;;:::o;4842:323::-;4898:6;4947:2;4935:9;4926:7;4922:23;4918:32;4915:119;;;4953:79;;:::i;:::-;4915:119;5073:1;5098:50;5140:7;5131:6;5120:9;5116:22;5098:50;:::i;:::-;5088:60;;5044:114;4842:323;;;;:::o;5171:327::-;5229:6;5278:2;5266:9;5257:7;5253:23;5249:32;5246:119;;;5284:79;;:::i;:::-;5246:119;5404:1;5429:52;5473:7;5464:6;5453:9;5449:22;5429:52;:::i;:::-;5419:62;;5375:116;5171:327;;;;:::o;5504:349::-;5573:6;5622:2;5610:9;5601:7;5597:23;5593:32;5590:119;;;5628:79;;:::i;:::-;5590:119;5748:1;5773:63;5828:7;5819:6;5808:9;5804:22;5773:63;:::i;:::-;5763:73;;5719:127;5504:349;;;;:::o;5859:329::-;5918:6;5967:2;5955:9;5946:7;5942:23;5938:32;5935:119;;;5973:79;;:::i;:::-;5935:119;6093:1;6118:53;6163:7;6154:6;6143:9;6139:22;6118:53;:::i;:::-;6108:63;;6064:117;5859:329;;;;:::o;6194:118::-;6281:24;6299:5;6281:24;:::i;:::-;6276:3;6269:37;6194:118;;:::o;6318:109::-;6399:21;6414:5;6399:21;:::i;:::-;6394:3;6387:34;6318:109;;:::o;6433:360::-;6519:3;6547:38;6579:5;6547:38;:::i;:::-;6601:70;6664:6;6659:3;6601:70;:::i;:::-;6594:77;;6680:52;6725:6;6720:3;6713:4;6706:5;6702:16;6680:52;:::i;:::-;6757:29;6779:6;6757:29;:::i;:::-;6752:3;6748:39;6741:46;;6523:270;6433:360;;;;:::o;6799:364::-;6887:3;6915:39;6948:5;6915:39;:::i;:::-;6970:71;7034:6;7029:3;6970:71;:::i;:::-;6963:78;;7050:52;7095:6;7090:3;7083:4;7076:5;7072:16;7050:52;:::i;:::-;7127:29;7149:6;7127:29;:::i;:::-;7122:3;7118:39;7111:46;;6891:272;6799:364;;;;:::o;7169:377::-;7275:3;7303:39;7336:5;7303:39;:::i;:::-;7358:89;7440:6;7435:3;7358:89;:::i;:::-;7351:96;;7456:52;7501:6;7496:3;7489:4;7482:5;7478:16;7456:52;:::i;:::-;7533:6;7528:3;7524:16;7517:23;;7279:267;7169:377;;;;:::o;7552:366::-;7694:3;7715:67;7779:2;7774:3;7715:67;:::i;:::-;7708:74;;7791:93;7880:3;7791:93;:::i;:::-;7909:2;7904:3;7900:12;7893:19;;7552:366;;;:::o;7924:::-;8066:3;8087:67;8151:2;8146:3;8087:67;:::i;:::-;8080:74;;8163:93;8252:3;8163:93;:::i;:::-;8281:2;8276:3;8272:12;8265:19;;7924:366;;;:::o;8296:::-;8438:3;8459:67;8523:2;8518:3;8459:67;:::i;:::-;8452:74;;8535:93;8624:3;8535:93;:::i;:::-;8653:2;8648:3;8644:12;8637:19;;8296:366;;;:::o;8668:400::-;8828:3;8849:84;8931:1;8926:3;8849:84;:::i;:::-;8842:91;;8942:93;9031:3;8942:93;:::i;:::-;9060:1;9055:3;9051:11;9044:18;;8668:400;;;:::o;9074:366::-;9216:3;9237:67;9301:2;9296:3;9237:67;:::i;:::-;9230:74;;9313:93;9402:3;9313:93;:::i;:::-;9431:2;9426:3;9422:12;9415:19;;9074:366;;;:::o;9446:::-;9588:3;9609:67;9673:2;9668:3;9609:67;:::i;:::-;9602:74;;9685:93;9774:3;9685:93;:::i;:::-;9803:2;9798:3;9794:12;9787:19;;9446:366;;;:::o;9818:400::-;9978:3;9999:84;10081:1;10076:3;9999:84;:::i;:::-;9992:91;;10092:93;10181:3;10092:93;:::i;:::-;10210:1;10205:3;10201:11;10194:18;;9818:400;;;:::o;10224:366::-;10366:3;10387:67;10451:2;10446:3;10387:67;:::i;:::-;10380:74;;10463:93;10552:3;10463:93;:::i;:::-;10581:2;10576:3;10572:12;10565:19;;10224:366;;;:::o;10596:118::-;10683:24;10701:5;10683:24;:::i;:::-;10678:3;10671:37;10596:118;;:::o;10720:701::-;11001:3;11023:95;11114:3;11105:6;11023:95;:::i;:::-;11016:102;;11135:95;11226:3;11217:6;11135:95;:::i;:::-;11128:102;;11247:148;11391:3;11247:148;:::i;:::-;11240:155;;11412:3;11405:10;;10720:701;;;;;:::o;11427:541::-;11660:3;11682:95;11773:3;11764:6;11682:95;:::i;:::-;11675:102;;11794:148;11938:3;11794:148;:::i;:::-;11787:155;;11959:3;11952:10;;11427:541;;;;:::o;11974:222::-;12067:4;12105:2;12094:9;12090:18;12082:26;;12118:71;12186:1;12175:9;12171:17;12162:6;12118:71;:::i;:::-;11974:222;;;;:::o;12202:640::-;12397:4;12435:3;12424:9;12420:19;12412:27;;12449:71;12517:1;12506:9;12502:17;12493:6;12449:71;:::i;:::-;12530:72;12598:2;12587:9;12583:18;12574:6;12530:72;:::i;:::-;12612;12680:2;12669:9;12665:18;12656:6;12612:72;:::i;:::-;12731:9;12725:4;12721:20;12716:2;12705:9;12701:18;12694:48;12759:76;12830:4;12821:6;12759:76;:::i;:::-;12751:84;;12202:640;;;;;;;:::o;12848:210::-;12935:4;12973:2;12962:9;12958:18;12950:26;;12986:65;13048:1;13037:9;13033:17;13024:6;12986:65;:::i;:::-;12848:210;;;;:::o;13064:313::-;13177:4;13215:2;13204:9;13200:18;13192:26;;13264:9;13258:4;13254:20;13250:1;13239:9;13235:17;13228:47;13292:78;13365:4;13356:6;13292:78;:::i;:::-;13284:86;;13064:313;;;;:::o;13383:419::-;13549:4;13587:2;13576:9;13572:18;13564:26;;13636:9;13630:4;13626:20;13622:1;13611:9;13607:17;13600:47;13664:131;13790:4;13664:131;:::i;:::-;13656:139;;13383:419;;;:::o;13808:::-;13974:4;14012:2;14001:9;13997:18;13989:26;;14061:9;14055:4;14051:20;14047:1;14036:9;14032:17;14025:47;14089:131;14215:4;14089:131;:::i;:::-;14081:139;;13808:419;;;:::o;14233:::-;14399:4;14437:2;14426:9;14422:18;14414:26;;14486:9;14480:4;14476:20;14472:1;14461:9;14457:17;14450:47;14514:131;14640:4;14514:131;:::i;:::-;14506:139;;14233:419;;;:::o;14658:::-;14824:4;14862:2;14851:9;14847:18;14839:26;;14911:9;14905:4;14901:20;14897:1;14886:9;14882:17;14875:47;14939:131;15065:4;14939:131;:::i;:::-;14931:139;;14658:419;;;:::o;15083:::-;15249:4;15287:2;15276:9;15272:18;15264:26;;15336:9;15330:4;15326:20;15322:1;15311:9;15307:17;15300:47;15364:131;15490:4;15364:131;:::i;:::-;15356:139;;15083:419;;;:::o;15508:::-;15674:4;15712:2;15701:9;15697:18;15689:26;;15761:9;15755:4;15751:20;15747:1;15736:9;15732:17;15725:47;15789:131;15915:4;15789:131;:::i;:::-;15781:139;;15508:419;;;:::o;15933:222::-;16026:4;16064:2;16053:9;16049:18;16041:26;;16077:71;16145:1;16134:9;16130:17;16121:6;16077:71;:::i;:::-;15933:222;;;;:::o;16161:129::-;16195:6;16222:20;;:::i;:::-;16212:30;;16251:33;16279:4;16271:6;16251:33;:::i;:::-;16161:129;;;:::o;16296:75::-;16329:6;16362:2;16356:9;16346:19;;16296:75;:::o;16377:307::-;16438:4;16528:18;16520:6;16517:30;16514:56;;;16550:18;;:::i;:::-;16514:56;16588:29;16610:6;16588:29;:::i;:::-;16580:37;;16672:4;16666;16662:15;16654:23;;16377:307;;;:::o;16690:98::-;16741:6;16775:5;16769:12;16759:22;;16690:98;;;:::o;16794:99::-;16846:6;16880:5;16874:12;16864:22;;16794:99;;;:::o;16899:168::-;16982:11;17016:6;17011:3;17004:19;17056:4;17051:3;17047:14;17032:29;;16899:168;;;;:::o;17073:169::-;17157:11;17191:6;17186:3;17179:19;17231:4;17226:3;17222:14;17207:29;;17073:169;;;;:::o;17248:148::-;17350:11;17387:3;17372:18;;17248:148;;;;:::o;17402:305::-;17442:3;17461:20;17479:1;17461:20;:::i;:::-;17456:25;;17495:20;17513:1;17495:20;:::i;:::-;17490:25;;17649:1;17581:66;17577:74;17574:1;17571:81;17568:107;;;17655:18;;:::i;:::-;17568:107;17699:1;17696;17692:9;17685:16;;17402:305;;;;:::o;17713:185::-;17753:1;17770:20;17788:1;17770:20;:::i;:::-;17765:25;;17804:20;17822:1;17804:20;:::i;:::-;17799:25;;17843:1;17833:35;;17848:18;;:::i;:::-;17833:35;17890:1;17887;17883:9;17878:14;;17713:185;;;;:::o;17904:348::-;17944:7;17967:20;17985:1;17967:20;:::i;:::-;17962:25;;18001:20;18019:1;18001:20;:::i;:::-;17996:25;;18189:1;18121:66;18117:74;18114:1;18111:81;18106:1;18099:9;18092:17;18088:105;18085:131;;;18196:18;;:::i;:::-;18085:131;18244:1;18241;18237:9;18226:20;;17904:348;;;;:::o;18258:191::-;18298:4;18318:20;18336:1;18318:20;:::i;:::-;18313:25;;18352:20;18370:1;18352:20;:::i;:::-;18347:25;;18391:1;18388;18385:8;18382:34;;;18396:18;;:::i;:::-;18382:34;18441:1;18438;18434:9;18426:17;;18258:191;;;;:::o;18455:96::-;18492:7;18521:24;18539:5;18521:24;:::i;:::-;18510:35;;18455:96;;;:::o;18557:90::-;18591:7;18634:5;18627:13;18620:21;18609:32;;18557:90;;;:::o;18653:149::-;18689:7;18729:66;18722:5;18718:78;18707:89;;18653:149;;;:::o;18808:126::-;18845:7;18885:42;18878:5;18874:54;18863:65;;18808:126;;;:::o;18940:77::-;18977:7;19006:5;18995:16;;18940:77;;;:::o;19023:154::-;19107:6;19102:3;19097;19084:30;19169:1;19160:6;19155:3;19151:16;19144:27;19023:154;;;:::o;19183:307::-;19251:1;19261:113;19275:6;19272:1;19269:13;19261:113;;;19360:1;19355:3;19351:11;19345:18;19341:1;19336:3;19332:11;19325:39;19297:2;19294:1;19290:10;19285:15;;19261:113;;;19392:6;19389:1;19386:13;19383:101;;;19472:1;19463:6;19458:3;19454:16;19447:27;19383:101;19232:258;19183:307;;;:::o;19496:320::-;19540:6;19577:1;19571:4;19567:12;19557:22;;19624:1;19618:4;19614:12;19645:18;19635:81;;19701:4;19693:6;19689:17;19679:27;;19635:81;19763:2;19755:6;19752:14;19732:18;19729:38;19726:84;;;19782:18;;:::i;:::-;19726:84;19547:269;19496:320;;;:::o;19822:281::-;19905:27;19927:4;19905:27;:::i;:::-;19897:6;19893:40;20035:6;20023:10;20020:22;19999:18;19987:10;19984:34;19981:62;19978:88;;;20046:18;;:::i;:::-;19978:88;20086:10;20082:2;20075:22;19865:238;19822:281;;:::o;20109:233::-;20148:3;20171:24;20189:5;20171:24;:::i;:::-;20162:33;;20217:66;20210:5;20207:77;20204:103;;;20287:18;;:::i;:::-;20204:103;20334:1;20327:5;20323:13;20316:20;;20109:233;;;:::o;20348:176::-;20380:1;20397:20;20415:1;20397:20;:::i;:::-;20392:25;;20431:20;20449:1;20431:20;:::i;:::-;20426:25;;20470:1;20460:35;;20475:18;;:::i;:::-;20460:35;20516:1;20513;20509:9;20504:14;;20348:176;;;;:::o;20530:180::-;20578:77;20575:1;20568:88;20675:4;20672:1;20665:15;20699:4;20696:1;20689:15;20716:180;20764:77;20761:1;20754:88;20861:4;20858:1;20851:15;20885:4;20882:1;20875:15;20902:180;20950:77;20947:1;20940:88;21047:4;21044:1;21037:15;21071:4;21068:1;21061:15;21088:180;21136:77;21133:1;21126:88;21233:4;21230:1;21223:15;21257:4;21254:1;21247:15;21274:180;21322:77;21319:1;21312:88;21419:4;21416:1;21409:15;21443:4;21440:1;21433:15;21460:117;21569:1;21566;21559:12;21583:117;21692:1;21689;21682:12;21706:117;21815:1;21812;21805:12;21829:117;21938:1;21935;21928:12;21952:102;21993:6;22044:2;22040:7;22035:2;22028:5;22024:14;22020:28;22010:38;;21952:102;;;:::o;22060:225::-;22200:34;22196:1;22188:6;22184:14;22177:58;22269:8;22264:2;22256:6;22252:15;22245:33;22060:225;:::o;22291:170::-;22431:22;22427:1;22419:6;22415:14;22408:46;22291:170;:::o;22467:233::-;22607:34;22603:1;22595:6;22591:14;22584:58;22676:16;22671:2;22663:6;22659:15;22652:41;22467:233;:::o;22706:155::-;22846:7;22842:1;22834:6;22830:14;22823:31;22706:155;:::o;22867:182::-;23007:34;23003:1;22995:6;22991:14;22984:58;22867:182;:::o;23055:234::-;23195:34;23191:1;23183:6;23179:14;23172:58;23264:17;23259:2;23251:6;23247:15;23240:42;23055:234;:::o;23295:114::-;;:::o;23415:171::-;23555:23;23551:1;23543:6;23539:14;23532:47;23415:171;:::o;23592:122::-;23665:24;23683:5;23665:24;:::i;:::-;23658:5;23655:35;23645:63;;23704:1;23701;23694:12;23645:63;23592:122;:::o;23720:116::-;23790:21;23805:5;23790:21;:::i;:::-;23783:5;23780:32;23770:60;;23826:1;23823;23816:12;23770:60;23720:116;:::o;23842:120::-;23914:23;23931:5;23914:23;:::i;:::-;23907:5;23904:34;23894:62;;23952:1;23949;23942:12;23894:62;23842:120;:::o;23968:122::-;24041:24;24059:5;24041:24;:::i;:::-;24034:5;24031:35;24021:63;;24080:1;24077;24070:12;24021:63;23968:122;:::o

Swarm Source

ipfs://cfbf634f6caa2945c7e7434b61afd6750669ddde7389731a6be03531ad4e4f91
Loading...
Loading
Loading...
Loading
[ 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.