ETH Price: $3,133.81 (-3.74%)
Gas: 6 Gwei

Token

Bored Gorilla Yacht Club (BGYC)
 

Overview

Max Total Supply

10,000 BGYC

Holders

2,083

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 BGYC
0x6e13875e2009e7eac8697ea51eb7782c40a82d31
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

10,000 Bored Gorillas roaming around the blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BGYC

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-07
*/

// SPDX-License-Identifier: MIT

// File: 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: 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/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: contracts/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}
// File: contracts/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: contracts/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: contracts/BGYC.sol



pragma solidity >=0.8.9 <0.9.0;





contract BGYC is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;

  // mint config
  uint256 public cost = 0.0033 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmount = 100;
  uint256 public maxPerTxn = 20;
  uint256 public maxFreeAmt = 1;

  bool public revealed = true;
  bool public paused = true;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(!paused, "Gorillas aren't ready yet...");
    require(totalSupply() + _mintAmount <= maxSupply, "All gorillas adopted...");
    require(_mintAmount > 0 && _mintAmount <= maxPerTxn, "Only 20 gorillas each time...");
    require(tx.origin == msg.sender, "Contract minters gets no gorilla...");
    require(
      _mintAmount > 0 && numberMinted(msg.sender) + _mintAmount <= maxMintAmount,
       "Invalid number of gorillas or minted max gorillas..."
    );
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    uint256 costToSubtract = 0;
    
    if (numberMinted(msg.sender) < maxFreeAmt) {
      uint256 freeMintsLeft = maxFreeAmt - numberMinted(msg.sender);
      costToSubtract = cost * freeMintsLeft;
    }
   
    require(msg.value >= cost * _mintAmount - costToSubtract, "Insufficient funds.");
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _safeMint(_receiver, _mintAmount);
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner {
    maxMintAmount = _maxMintAmount;
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

   function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

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

  function withdraw() public onlyOwner nonReentrant {
    uint256 main_team = address(this).balance * 2125 / 10000;

    (bool team1, ) = payable(0x66A0B5D5FBD417745BDA06C0756c6e268E8c66c0).call{value: main_team}('');
    require(team1);

    (bool team2, ) = payable(0x5ec2825FE1aE89d02Dd876a9AEF902265729e44F).call{value: main_team}('');
    require(team2);

    (bool team3, ) = payable(0x2d6904DA8b5713fcb00125E0BEBE552167632615).call{value: main_team}('');
    require(team3);

    (bool team4, ) = payable(0x52f1AADB2FE9D115aC8E5e432D34670e6C106096).call{value: main_team}('');
    require(team4);

    (bool team5, ) = payable(0xfddf2Fb490D49B3dc8aBcd42346ed1d55825E10d).call{value: address(this).balance}('');
    require(team5);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b9291906200033d565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000799291906200033d565b50660bb9551fc24000600d55612710600e556064600f55601460105560016011556001601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff021916908315150217905550348015620000dd57600080fd5b50604051620045923803806200459283398181016040528101906200010391906200058a565b828281600290805190602001906200011d9291906200033d565b508060039080519060200190620001369291906200033d565b50620001476200019160201b60201c565b60008190555050506200016f620001636200019a60201b60201c565b620001a260201b60201c565b600160098190555062000188816200026860201b60201c565b5050506200072b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002786200019a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200029e6200031360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ee90620006a4565b60405180910390fd5b80600c90805190602001906200030f9291906200033d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200034b90620006f5565b90600052602060002090601f0160209004810192826200036f5760008555620003bb565b82601f106200038a57805160ff1916838001178555620003bb565b82800160010185558215620003bb579182015b82811115620003ba5782518255916020019190600101906200039d565b5b509050620003ca9190620003ce565b5090565b5b80821115620003e9576000816000905550600101620003cf565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000456826200040b565b810181811067ffffffffffffffff821117156200047857620004776200041c565b5b80604052505050565b60006200048d620003ed565b90506200049b82826200044b565b919050565b600067ffffffffffffffff821115620004be57620004bd6200041c565b5b620004c9826200040b565b9050602081019050919050565b60005b83811015620004f6578082015181840152602081019050620004d9565b8381111562000506576000848401525b50505050565b6000620005236200051d84620004a0565b62000481565b90508281526020810184848401111562000542576200054162000406565b5b6200054f848285620004d6565b509392505050565b600082601f8301126200056f576200056e62000401565b5b8151620005818482602086016200050c565b91505092915050565b600080600060608486031215620005a657620005a5620003f7565b5b600084015167ffffffffffffffff811115620005c757620005c6620003fc565b5b620005d58682870162000557565b935050602084015167ffffffffffffffff811115620005f957620005f8620003fc565b5b620006078682870162000557565b925050604084015167ffffffffffffffff8111156200062b576200062a620003fc565b5b620006398682870162000557565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200068c60208362000643565b9150620006998262000654565b602082019050919050565b60006020820190508181036000830152620006bf816200067d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200070e57607f821691505b60208210811415620007255762000724620006c6565b5b50919050565b613e57806200073b6000396000f3fe6080604052600436106102255760003560e01c806362b99ad411610123578063a45ba8e7116100ab578063dc33e6811161006f578063dc33e681146107c2578063e0a80853146107ff578063e985e9c514610828578063efbd73f414610865578063f2fde38b1461088e57610225565b8063a45ba8e7146106db578063b88d4fde14610706578063c7504dde1461072f578063c87b56dd1461075a578063d5abeb011461079757610225565b80637ec4a659116100f25780637ec4a659146106175780638da5cb5b1461064057806395d89b411461066b578063a0712d6814610696578063a22cb465146106b257610225565b806362b99ad41461055b5780636352211e1461058657806370a08231146105c3578063715018a61461060057610225565b8063239c70ae116101b157806344a0d68a1161017557806344a0d68a146104885780634fdd43cb146104b157806351830227146104da5780635503a0e8146105055780635c975abb1461053057610225565b8063239c70ae146103c957806323b872dd146103f45780633cb519941461041d5780633ccfd60b1461044857806342842e0e1461045f57610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806316ba10e01461034c57806316c38b3c1461037557806318160ddd1461039e57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063088a4ed0146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612d90565b6108b7565b60405161025e9190612dd8565b60405180910390f35b34801561027357600080fd5b5061027c610949565b6040516102899190612e8c565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612ee4565b6109db565b6040516102c69190612f52565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612ee4565b610a57565b005b34801561030457600080fd5b5061031f600480360381019061031a9190612f99565b610add565b005b34801561032d57600080fd5b50610336610c84565b6040516103439190612fe8565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190613138565b610c8a565b005b34801561038157600080fd5b5061039c600480360381019061039791906131ad565b610d20565b005b3480156103aa57600080fd5b506103b3610db9565b6040516103c09190612fe8565b60405180910390f35b3480156103d557600080fd5b506103de610dd0565b6040516103eb9190612fe8565b60405180910390f35b34801561040057600080fd5b5061041b600480360381019061041691906131da565b610dd6565b005b34801561042957600080fd5b50610432610de6565b60405161043f9190612fe8565b60405180910390f35b34801561045457600080fd5b5061045d610dec565b005b34801561046b57600080fd5b50610486600480360381019061048191906131da565b611197565b005b34801561049457600080fd5b506104af60048036038101906104aa9190612ee4565b6111b7565b005b3480156104bd57600080fd5b506104d860048036038101906104d39190613138565b61123d565b005b3480156104e657600080fd5b506104ef6112d3565b6040516104fc9190612dd8565b60405180910390f35b34801561051157600080fd5b5061051a6112e6565b6040516105279190612e8c565b60405180910390f35b34801561053c57600080fd5b50610545611374565b6040516105529190612dd8565b60405180910390f35b34801561056757600080fd5b50610570611387565b60405161057d9190612e8c565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190612ee4565b611415565b6040516105ba9190612f52565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e5919061322d565b611427565b6040516105f79190612fe8565b60405180910390f35b34801561060c57600080fd5b506106156114e0565b005b34801561062357600080fd5b5061063e60048036038101906106399190613138565b611568565b005b34801561064c57600080fd5b506106556115fe565b6040516106629190612f52565b60405180910390f35b34801561067757600080fd5b50610680611628565b60405161068d9190612e8c565b60405180910390f35b6106b060048036038101906106ab9190612ee4565b6116ba565b005b3480156106be57600080fd5b506106d960048036038101906106d4919061325a565b611938565b005b3480156106e757600080fd5b506106f0611ab0565b6040516106fd9190612e8c565b60405180910390f35b34801561071257600080fd5b5061072d6004803603810190610728919061333b565b611b3e565b005b34801561073b57600080fd5b50610744611bb1565b6040516107519190612fe8565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c9190612ee4565b611bb7565b60405161078e9190612e8c565b60405180910390f35b3480156107a357600080fd5b506107ac611d10565b6040516107b99190612fe8565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e4919061322d565b611d16565b6040516107f69190612fe8565b60405180910390f35b34801561080b57600080fd5b50610826600480360381019061082191906131ad565b611d28565b005b34801561083457600080fd5b5061084f600480360381019061084a91906133be565b611dc1565b60405161085c9190612dd8565b60405180910390f35b34801561087157600080fd5b5061088c600480360381019061088791906133fe565b611e55565b005b34801561089a57600080fd5b506108b560048036038101906108b0919061322d565b611f36565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109425750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109589061346d565b80601f01602080910402602001604051908101604052809291908181526020018280546109849061346d565b80156109d15780601f106109a6576101008083540402835291602001916109d1565b820191906000526020600020905b8154815290600101906020018083116109b457829003601f168201915b5050505050905090565b60006109e68261202e565b610a1c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a5f61208d565b73ffffffffffffffffffffffffffffffffffffffff16610a7d6115fe565b73ffffffffffffffffffffffffffffffffffffffff1614610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca906134eb565b60405180910390fd5b80600f8190555050565b6000610ae882612095565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6f612163565b73ffffffffffffffffffffffffffffffffffffffff1614610bd257610b9b81610b96612163565b611dc1565b610bd1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610c9261208d565b73ffffffffffffffffffffffffffffffffffffffff16610cb06115fe565b73ffffffffffffffffffffffffffffffffffffffff1614610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd906134eb565b60405180910390fd5b80600b9080519060200190610d1c929190612c81565b5050565b610d2861208d565b73ffffffffffffffffffffffffffffffffffffffff16610d466115fe565b73ffffffffffffffffffffffffffffffffffffffff1614610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d93906134eb565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b6000610dc361216b565b6001546000540303905090565b600f5481565b610de1838383612174565b505050565b60105481565b610df461208d565b73ffffffffffffffffffffffffffffffffffffffff16610e126115fe565b73ffffffffffffffffffffffffffffffffffffffff1614610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f906134eb565b60405180910390fd5b60026009541415610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590613557565b60405180910390fd5b6002600981905550600061271061084d47610ec991906135a6565b610ed3919061362f565b905060007366a0b5d5fbd417745bda06c0756c6e268e8c66c073ffffffffffffffffffffffffffffffffffffffff1682604051610f0f90613691565b60006040518083038185875af1925050503d8060008114610f4c576040519150601f19603f3d011682016040523d82523d6000602084013e610f51565b606091505b5050905080610f5f57600080fd5b6000735ec2825fe1ae89d02dd876a9aef902265729e44f73ffffffffffffffffffffffffffffffffffffffff1683604051610f9990613691565b60006040518083038185875af1925050503d8060008114610fd6576040519150601f19603f3d011682016040523d82523d6000602084013e610fdb565b606091505b5050905080610fe957600080fd5b6000732d6904da8b5713fcb00125e0bebe55216763261573ffffffffffffffffffffffffffffffffffffffff168460405161102390613691565b60006040518083038185875af1925050503d8060008114611060576040519150601f19603f3d011682016040523d82523d6000602084013e611065565b606091505b505090508061107357600080fd5b60007352f1aadb2fe9d115ac8e5e432d34670e6c10609673ffffffffffffffffffffffffffffffffffffffff16856040516110ad90613691565b60006040518083038185875af1925050503d80600081146110ea576040519150601f19603f3d011682016040523d82523d6000602084013e6110ef565b606091505b50509050806110fd57600080fd5b600073fddf2fb490d49b3dc8abcd42346ed1d55825e10d73ffffffffffffffffffffffffffffffffffffffff164760405161113790613691565b60006040518083038185875af1925050503d8060008114611174576040519150601f19603f3d011682016040523d82523d6000602084013e611179565b606091505b505090508061118757600080fd5b5050505050506001600981905550565b6111b283838360405180602001604052806000815250611b3e565b505050565b6111bf61208d565b73ffffffffffffffffffffffffffffffffffffffff166111dd6115fe565b73ffffffffffffffffffffffffffffffffffffffff1614611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a906134eb565b60405180910390fd5b80600d8190555050565b61124561208d565b73ffffffffffffffffffffffffffffffffffffffff166112636115fe565b73ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b0906134eb565b60405180910390fd5b80600c90805190602001906112cf929190612c81565b5050565b601260009054906101000a900460ff1681565b600b80546112f39061346d565b80601f016020809104026020016040519081016040528092919081815260200182805461131f9061346d565b801561136c5780601f106113415761010080835404028352916020019161136c565b820191906000526020600020905b81548152906001019060200180831161134f57829003601f168201915b505050505081565b601260019054906101000a900460ff1681565b600a80546113949061346d565b80601f01602080910402602001604051908101604052809291908181526020018280546113c09061346d565b801561140d5780601f106113e25761010080835404028352916020019161140d565b820191906000526020600020905b8154815290600101906020018083116113f057829003601f168201915b505050505081565b600061142082612095565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561148f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114e861208d565b73ffffffffffffffffffffffffffffffffffffffff166115066115fe565b73ffffffffffffffffffffffffffffffffffffffff161461155c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611553906134eb565b60405180910390fd5b611566600061251e565b565b61157061208d565b73ffffffffffffffffffffffffffffffffffffffff1661158e6115fe565b73ffffffffffffffffffffffffffffffffffffffff16146115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db906134eb565b60405180910390fd5b80600a90805190602001906115fa929190612c81565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116379061346d565b80601f01602080910402602001604051908101604052809291908181526020018280546116639061346d565b80156116b05780601f10611685576101008083540402835291602001916116b0565b820191906000526020600020905b81548152906001019060200180831161169357829003601f168201915b5050505050905090565b80601260019054906101000a900460ff161561170b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611702906136f2565b60405180910390fd5b600e5481611717610db9565b6117219190613712565b1115611762576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611759906137b4565b60405180910390fd5b60008111801561177457506010548111155b6117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90613820565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611818906138b2565b60405180910390fd5b6000811180156118465750600f548161183933611d16565b6118439190613712565b11155b611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90613944565b60405180910390fd5b81600060115461189433611d16565b10156118c65760006118a533611d16565b6011546118b29190613964565b905080600d546118c291906135a6565b9150505b8082600d546118d591906135a6565b6118df9190613964565b341015611921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611918906139e4565b60405180910390fd5b61193261192c61208d565b856125e4565b50505050565b611940612163565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119b2612163565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5f612163565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa49190612dd8565b60405180910390a35050565b600c8054611abd9061346d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ae99061346d565b8015611b365780601f10611b0b57610100808354040283529160200191611b36565b820191906000526020600020905b815481529060010190602001808311611b1957829003601f168201915b505050505081565b611b49848484612174565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bab57611b7484848484612602565b611baa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60115481565b6060611bc28261202e565b611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890613a76565b60405180910390fd5b60001515601260009054906101000a900460ff1615151415611caf57600c8054611c2a9061346d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c569061346d565b8015611ca35780601f10611c7857610100808354040283529160200191611ca3565b820191906000526020600020905b815481529060010190602001808311611c8657829003601f168201915b50505050509050611d0b565b6000611cb9612762565b90506000815111611cd95760405180602001604052806000815250611d07565b80611ce3846127f4565b600b604051602001611cf793929190613b66565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000611d2182612955565b9050919050565b611d3061208d565b73ffffffffffffffffffffffffffffffffffffffff16611d4e6115fe565b73ffffffffffffffffffffffffffffffffffffffff1614611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b906134eb565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e5d61208d565b73ffffffffffffffffffffffffffffffffffffffff16611e7b6115fe565b73ffffffffffffffffffffffffffffffffffffffff1614611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec8906134eb565b60405180910390fd5b600e5482611edd610db9565b611ee79190613712565b1115611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f90613be3565b60405180910390fd5b611f3281836125e4565b5050565b611f3e61208d565b73ffffffffffffffffffffffffffffffffffffffff16611f5c6115fe565b73ffffffffffffffffffffffffffffffffffffffff1614611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa9906134eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201990613c75565b60405180910390fd5b61202b8161251e565b50565b60008161203961216b565b11158015612048575060005482105b8015612086575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600080829050806120a461216b565b1161212c5760005481101561212b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612129575b600081141561211f5760046000836001900393508381526020019081526020016000205490506120f4565b809250505061215e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061217f82612095565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146121e6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612207612163565b73ffffffffffffffffffffffffffffffffffffffff161480612236575061223585612230612163565b611dc1565b5b8061227b5750612244612163565b73ffffffffffffffffffffffffffffffffffffffff16612263846109db565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806122b4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561231b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61232885858560016129ac565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612425866129b2565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156124af5760006001840190506000600460008381526020019081526020016000205414156124ad5760005481146124ac578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461251785858560016129bc565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125fe8282604051806020016040528060008152506129c2565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612628612163565b8786866040518563ffffffff1660e01b815260040161264a9493929190613cea565b602060405180830381600087803b15801561266457600080fd5b505af192505050801561269557506040513d601f19601f820116820180604052508101906126929190613d4b565b60015b61270f573d80600081146126c5576040519150601f19603f3d011682016040523d82523d6000602084013e6126ca565b606091505b50600081511415612707576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546127719061346d565b80601f016020809104026020016040519081016040528092919081815260200182805461279d9061346d565b80156127ea5780601f106127bf576101008083540402835291602001916127ea565b820191906000526020600020905b8154815290600101906020018083116127cd57829003601f168201915b5050505050905090565b6060600082141561283c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612950565b600082905060005b6000821461286e57808061285790613d78565b915050600a82612867919061362f565b9150612844565b60008167ffffffffffffffff81111561288a5761288961300d565b5b6040519080825280601f01601f1916602001820160405280156128bc5781602001600182028036833780820191505090505b5090505b60008514612949576001826128d59190613964565b9150600a856128e49190613dc1565b60306128f09190613712565b60f81b81838151811061290657612905613df2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612942919061362f565b94506128c0565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a2f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612a6a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a7760008583866129ac565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612adc60018514612c77565b901b60a042901b612aec866129b2565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612bf0575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ba06000878480600101955087612602565b612bd6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612b31578260005414612beb57600080fd5b612c5b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612bf1575b816000819055505050612c7160008583866129bc565b50505050565b6000819050919050565b828054612c8d9061346d565b90600052602060002090601f016020900481019282612caf5760008555612cf6565b82601f10612cc857805160ff1916838001178555612cf6565b82800160010185558215612cf6579182015b82811115612cf5578251825591602001919060010190612cda565b5b509050612d039190612d07565b5090565b5b80821115612d20576000816000905550600101612d08565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d6d81612d38565b8114612d7857600080fd5b50565b600081359050612d8a81612d64565b92915050565b600060208284031215612da657612da5612d2e565b5b6000612db484828501612d7b565b91505092915050565b60008115159050919050565b612dd281612dbd565b82525050565b6000602082019050612ded6000830184612dc9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e2d578082015181840152602081019050612e12565b83811115612e3c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e5e82612df3565b612e688185612dfe565b9350612e78818560208601612e0f565b612e8181612e42565b840191505092915050565b60006020820190508181036000830152612ea68184612e53565b905092915050565b6000819050919050565b612ec181612eae565b8114612ecc57600080fd5b50565b600081359050612ede81612eb8565b92915050565b600060208284031215612efa57612ef9612d2e565b5b6000612f0884828501612ecf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f3c82612f11565b9050919050565b612f4c81612f31565b82525050565b6000602082019050612f676000830184612f43565b92915050565b612f7681612f31565b8114612f8157600080fd5b50565b600081359050612f9381612f6d565b92915050565b60008060408385031215612fb057612faf612d2e565b5b6000612fbe85828601612f84565b9250506020612fcf85828601612ecf565b9150509250929050565b612fe281612eae565b82525050565b6000602082019050612ffd6000830184612fd9565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61304582612e42565b810181811067ffffffffffffffff821117156130645761306361300d565b5b80604052505050565b6000613077612d24565b9050613083828261303c565b919050565b600067ffffffffffffffff8211156130a3576130a261300d565b5b6130ac82612e42565b9050602081019050919050565b82818337600083830152505050565b60006130db6130d684613088565b61306d565b9050828152602081018484840111156130f7576130f6613008565b5b6131028482856130b9565b509392505050565b600082601f83011261311f5761311e613003565b5b813561312f8482602086016130c8565b91505092915050565b60006020828403121561314e5761314d612d2e565b5b600082013567ffffffffffffffff81111561316c5761316b612d33565b5b6131788482850161310a565b91505092915050565b61318a81612dbd565b811461319557600080fd5b50565b6000813590506131a781613181565b92915050565b6000602082840312156131c3576131c2612d2e565b5b60006131d184828501613198565b91505092915050565b6000806000606084860312156131f3576131f2612d2e565b5b600061320186828701612f84565b935050602061321286828701612f84565b925050604061322386828701612ecf565b9150509250925092565b60006020828403121561324357613242612d2e565b5b600061325184828501612f84565b91505092915050565b6000806040838503121561327157613270612d2e565b5b600061327f85828601612f84565b925050602061329085828601613198565b9150509250929050565b600067ffffffffffffffff8211156132b5576132b461300d565b5b6132be82612e42565b9050602081019050919050565b60006132de6132d98461329a565b61306d565b9050828152602081018484840111156132fa576132f9613008565b5b6133058482856130b9565b509392505050565b600082601f83011261332257613321613003565b5b81356133328482602086016132cb565b91505092915050565b6000806000806080858703121561335557613354612d2e565b5b600061336387828801612f84565b945050602061337487828801612f84565b935050604061338587828801612ecf565b925050606085013567ffffffffffffffff8111156133a6576133a5612d33565b5b6133b28782880161330d565b91505092959194509250565b600080604083850312156133d5576133d4612d2e565b5b60006133e385828601612f84565b92505060206133f485828601612f84565b9150509250929050565b6000806040838503121561341557613414612d2e565b5b600061342385828601612ecf565b925050602061343485828601612f84565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061348557607f821691505b602082108114156134995761349861343e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134d5602083612dfe565b91506134e08261349f565b602082019050919050565b60006020820190508181036000830152613504816134c8565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613541601f83612dfe565b915061354c8261350b565b602082019050919050565b6000602082019050818103600083015261357081613534565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135b182612eae565b91506135bc83612eae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135f5576135f4613577565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061363a82612eae565b915061364583612eae565b92508261365557613654613600565b5b828204905092915050565b600081905092915050565b50565b600061367b600083613660565b91506136868261366b565b600082019050919050565b600061369c8261366e565b9150819050919050565b7f476f72696c6c6173206172656e2774207265616479207965742e2e2e00000000600082015250565b60006136dc601c83612dfe565b91506136e7826136a6565b602082019050919050565b6000602082019050818103600083015261370b816136cf565b9050919050565b600061371d82612eae565b915061372883612eae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561375d5761375c613577565b5b828201905092915050565b7f416c6c20676f72696c6c61732061646f707465642e2e2e000000000000000000600082015250565b600061379e601783612dfe565b91506137a982613768565b602082019050919050565b600060208201905081810360008301526137cd81613791565b9050919050565b7f4f6e6c7920323020676f72696c6c617320656163682074696d652e2e2e000000600082015250565b600061380a601d83612dfe565b9150613815826137d4565b602082019050919050565b60006020820190508181036000830152613839816137fd565b9050919050565b7f436f6e7472616374206d696e746572732067657473206e6f20676f72696c6c6160008201527f2e2e2e0000000000000000000000000000000000000000000000000000000000602082015250565b600061389c602383612dfe565b91506138a782613840565b604082019050919050565b600060208201905081810360008301526138cb8161388f565b9050919050565b7f496e76616c6964206e756d626572206f6620676f72696c6c6173206f72206d6960008201527f6e746564206d617820676f72696c6c61732e2e2e000000000000000000000000602082015250565b600061392e603483612dfe565b9150613939826138d2565b604082019050919050565b6000602082019050818103600083015261395d81613921565b9050919050565b600061396f82612eae565b915061397a83612eae565b92508282101561398d5761398c613577565b5b828203905092915050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b60006139ce601383612dfe565b91506139d982613998565b602082019050919050565b600060208201905081810360008301526139fd816139c1565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a60602f83612dfe565b9150613a6b82613a04565b604082019050919050565b60006020820190508181036000830152613a8f81613a53565b9050919050565b600081905092915050565b6000613aac82612df3565b613ab68185613a96565b9350613ac6818560208601612e0f565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613af48161346d565b613afe8186613a96565b94506001821660008114613b195760018114613b2a57613b5d565b60ff19831686528186019350613b5d565b613b3385613ad2565b60005b83811015613b5557815481890152600182019150602081019050613b36565b838801955050505b50505092915050565b6000613b728286613aa1565b9150613b7e8285613aa1565b9150613b8a8284613ae7565b9150819050949350505050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613bcd601483612dfe565b9150613bd882613b97565b602082019050919050565b60006020820190508181036000830152613bfc81613bc0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c5f602683612dfe565b9150613c6a82613c03565b604082019050919050565b60006020820190508181036000830152613c8e81613c52565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cbc82613c95565b613cc68185613ca0565b9350613cd6818560208601612e0f565b613cdf81612e42565b840191505092915050565b6000608082019050613cff6000830187612f43565b613d0c6020830186612f43565b613d196040830185612fd9565b8181036060830152613d2b8184613cb1565b905095945050505050565b600081519050613d4581612d64565b92915050565b600060208284031215613d6157613d60612d2e565b5b6000613d6f84828501613d36565b91505092915050565b6000613d8382612eae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613db657613db5613577565b5b600182019050919050565b6000613dcc82612eae565b9150613dd783612eae565b925082613de757613de6613600565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220869a06d5df48681be88ac1ec9fec3461b05d57b243dae1b26c8e401dc66c2ab964736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000018426f72656420476f72696c6c6120596163687420436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000044247594300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f697066733a2f2f696e7374616e742f0000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c806362b99ad411610123578063a45ba8e7116100ab578063dc33e6811161006f578063dc33e681146107c2578063e0a80853146107ff578063e985e9c514610828578063efbd73f414610865578063f2fde38b1461088e57610225565b8063a45ba8e7146106db578063b88d4fde14610706578063c7504dde1461072f578063c87b56dd1461075a578063d5abeb011461079757610225565b80637ec4a659116100f25780637ec4a659146106175780638da5cb5b1461064057806395d89b411461066b578063a0712d6814610696578063a22cb465146106b257610225565b806362b99ad41461055b5780636352211e1461058657806370a08231146105c3578063715018a61461060057610225565b8063239c70ae116101b157806344a0d68a1161017557806344a0d68a146104885780634fdd43cb146104b157806351830227146104da5780635503a0e8146105055780635c975abb1461053057610225565b8063239c70ae146103c957806323b872dd146103f45780633cb519941461041d5780633ccfd60b1461044857806342842e0e1461045f57610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806316ba10e01461034c57806316c38b3c1461037557806318160ddd1461039e57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063088a4ed0146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612d90565b6108b7565b60405161025e9190612dd8565b60405180910390f35b34801561027357600080fd5b5061027c610949565b6040516102899190612e8c565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612ee4565b6109db565b6040516102c69190612f52565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612ee4565b610a57565b005b34801561030457600080fd5b5061031f600480360381019061031a9190612f99565b610add565b005b34801561032d57600080fd5b50610336610c84565b6040516103439190612fe8565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e9190613138565b610c8a565b005b34801561038157600080fd5b5061039c600480360381019061039791906131ad565b610d20565b005b3480156103aa57600080fd5b506103b3610db9565b6040516103c09190612fe8565b60405180910390f35b3480156103d557600080fd5b506103de610dd0565b6040516103eb9190612fe8565b60405180910390f35b34801561040057600080fd5b5061041b600480360381019061041691906131da565b610dd6565b005b34801561042957600080fd5b50610432610de6565b60405161043f9190612fe8565b60405180910390f35b34801561045457600080fd5b5061045d610dec565b005b34801561046b57600080fd5b50610486600480360381019061048191906131da565b611197565b005b34801561049457600080fd5b506104af60048036038101906104aa9190612ee4565b6111b7565b005b3480156104bd57600080fd5b506104d860048036038101906104d39190613138565b61123d565b005b3480156104e657600080fd5b506104ef6112d3565b6040516104fc9190612dd8565b60405180910390f35b34801561051157600080fd5b5061051a6112e6565b6040516105279190612e8c565b60405180910390f35b34801561053c57600080fd5b50610545611374565b6040516105529190612dd8565b60405180910390f35b34801561056757600080fd5b50610570611387565b60405161057d9190612e8c565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190612ee4565b611415565b6040516105ba9190612f52565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e5919061322d565b611427565b6040516105f79190612fe8565b60405180910390f35b34801561060c57600080fd5b506106156114e0565b005b34801561062357600080fd5b5061063e60048036038101906106399190613138565b611568565b005b34801561064c57600080fd5b506106556115fe565b6040516106629190612f52565b60405180910390f35b34801561067757600080fd5b50610680611628565b60405161068d9190612e8c565b60405180910390f35b6106b060048036038101906106ab9190612ee4565b6116ba565b005b3480156106be57600080fd5b506106d960048036038101906106d4919061325a565b611938565b005b3480156106e757600080fd5b506106f0611ab0565b6040516106fd9190612e8c565b60405180910390f35b34801561071257600080fd5b5061072d6004803603810190610728919061333b565b611b3e565b005b34801561073b57600080fd5b50610744611bb1565b6040516107519190612fe8565b60405180910390f35b34801561076657600080fd5b50610781600480360381019061077c9190612ee4565b611bb7565b60405161078e9190612e8c565b60405180910390f35b3480156107a357600080fd5b506107ac611d10565b6040516107b99190612fe8565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e4919061322d565b611d16565b6040516107f69190612fe8565b60405180910390f35b34801561080b57600080fd5b50610826600480360381019061082191906131ad565b611d28565b005b34801561083457600080fd5b5061084f600480360381019061084a91906133be565b611dc1565b60405161085c9190612dd8565b60405180910390f35b34801561087157600080fd5b5061088c600480360381019061088791906133fe565b611e55565b005b34801561089a57600080fd5b506108b560048036038101906108b0919061322d565b611f36565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109425750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109589061346d565b80601f01602080910402602001604051908101604052809291908181526020018280546109849061346d565b80156109d15780601f106109a6576101008083540402835291602001916109d1565b820191906000526020600020905b8154815290600101906020018083116109b457829003601f168201915b5050505050905090565b60006109e68261202e565b610a1c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a5f61208d565b73ffffffffffffffffffffffffffffffffffffffff16610a7d6115fe565b73ffffffffffffffffffffffffffffffffffffffff1614610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca906134eb565b60405180910390fd5b80600f8190555050565b6000610ae882612095565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6f612163565b73ffffffffffffffffffffffffffffffffffffffff1614610bd257610b9b81610b96612163565b611dc1565b610bd1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610c9261208d565b73ffffffffffffffffffffffffffffffffffffffff16610cb06115fe565b73ffffffffffffffffffffffffffffffffffffffff1614610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd906134eb565b60405180910390fd5b80600b9080519060200190610d1c929190612c81565b5050565b610d2861208d565b73ffffffffffffffffffffffffffffffffffffffff16610d466115fe565b73ffffffffffffffffffffffffffffffffffffffff1614610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d93906134eb565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b6000610dc361216b565b6001546000540303905090565b600f5481565b610de1838383612174565b505050565b60105481565b610df461208d565b73ffffffffffffffffffffffffffffffffffffffff16610e126115fe565b73ffffffffffffffffffffffffffffffffffffffff1614610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f906134eb565b60405180910390fd5b60026009541415610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590613557565b60405180910390fd5b6002600981905550600061271061084d47610ec991906135a6565b610ed3919061362f565b905060007366a0b5d5fbd417745bda06c0756c6e268e8c66c073ffffffffffffffffffffffffffffffffffffffff1682604051610f0f90613691565b60006040518083038185875af1925050503d8060008114610f4c576040519150601f19603f3d011682016040523d82523d6000602084013e610f51565b606091505b5050905080610f5f57600080fd5b6000735ec2825fe1ae89d02dd876a9aef902265729e44f73ffffffffffffffffffffffffffffffffffffffff1683604051610f9990613691565b60006040518083038185875af1925050503d8060008114610fd6576040519150601f19603f3d011682016040523d82523d6000602084013e610fdb565b606091505b5050905080610fe957600080fd5b6000732d6904da8b5713fcb00125e0bebe55216763261573ffffffffffffffffffffffffffffffffffffffff168460405161102390613691565b60006040518083038185875af1925050503d8060008114611060576040519150601f19603f3d011682016040523d82523d6000602084013e611065565b606091505b505090508061107357600080fd5b60007352f1aadb2fe9d115ac8e5e432d34670e6c10609673ffffffffffffffffffffffffffffffffffffffff16856040516110ad90613691565b60006040518083038185875af1925050503d80600081146110ea576040519150601f19603f3d011682016040523d82523d6000602084013e6110ef565b606091505b50509050806110fd57600080fd5b600073fddf2fb490d49b3dc8abcd42346ed1d55825e10d73ffffffffffffffffffffffffffffffffffffffff164760405161113790613691565b60006040518083038185875af1925050503d8060008114611174576040519150601f19603f3d011682016040523d82523d6000602084013e611179565b606091505b505090508061118757600080fd5b5050505050506001600981905550565b6111b283838360405180602001604052806000815250611b3e565b505050565b6111bf61208d565b73ffffffffffffffffffffffffffffffffffffffff166111dd6115fe565b73ffffffffffffffffffffffffffffffffffffffff1614611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a906134eb565b60405180910390fd5b80600d8190555050565b61124561208d565b73ffffffffffffffffffffffffffffffffffffffff166112636115fe565b73ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b0906134eb565b60405180910390fd5b80600c90805190602001906112cf929190612c81565b5050565b601260009054906101000a900460ff1681565b600b80546112f39061346d565b80601f016020809104026020016040519081016040528092919081815260200182805461131f9061346d565b801561136c5780601f106113415761010080835404028352916020019161136c565b820191906000526020600020905b81548152906001019060200180831161134f57829003601f168201915b505050505081565b601260019054906101000a900460ff1681565b600a80546113949061346d565b80601f01602080910402602001604051908101604052809291908181526020018280546113c09061346d565b801561140d5780601f106113e25761010080835404028352916020019161140d565b820191906000526020600020905b8154815290600101906020018083116113f057829003601f168201915b505050505081565b600061142082612095565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561148f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114e861208d565b73ffffffffffffffffffffffffffffffffffffffff166115066115fe565b73ffffffffffffffffffffffffffffffffffffffff161461155c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611553906134eb565b60405180910390fd5b611566600061251e565b565b61157061208d565b73ffffffffffffffffffffffffffffffffffffffff1661158e6115fe565b73ffffffffffffffffffffffffffffffffffffffff16146115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db906134eb565b60405180910390fd5b80600a90805190602001906115fa929190612c81565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116379061346d565b80601f01602080910402602001604051908101604052809291908181526020018280546116639061346d565b80156116b05780601f10611685576101008083540402835291602001916116b0565b820191906000526020600020905b81548152906001019060200180831161169357829003601f168201915b5050505050905090565b80601260019054906101000a900460ff161561170b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611702906136f2565b60405180910390fd5b600e5481611717610db9565b6117219190613712565b1115611762576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611759906137b4565b60405180910390fd5b60008111801561177457506010548111155b6117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90613820565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611818906138b2565b60405180910390fd5b6000811180156118465750600f548161183933611d16565b6118439190613712565b11155b611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90613944565b60405180910390fd5b81600060115461189433611d16565b10156118c65760006118a533611d16565b6011546118b29190613964565b905080600d546118c291906135a6565b9150505b8082600d546118d591906135a6565b6118df9190613964565b341015611921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611918906139e4565b60405180910390fd5b61193261192c61208d565b856125e4565b50505050565b611940612163565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119b2612163565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5f612163565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa49190612dd8565b60405180910390a35050565b600c8054611abd9061346d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ae99061346d565b8015611b365780601f10611b0b57610100808354040283529160200191611b36565b820191906000526020600020905b815481529060010190602001808311611b1957829003601f168201915b505050505081565b611b49848484612174565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bab57611b7484848484612602565b611baa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60115481565b6060611bc28261202e565b611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890613a76565b60405180910390fd5b60001515601260009054906101000a900460ff1615151415611caf57600c8054611c2a9061346d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c569061346d565b8015611ca35780601f10611c7857610100808354040283529160200191611ca3565b820191906000526020600020905b815481529060010190602001808311611c8657829003601f168201915b50505050509050611d0b565b6000611cb9612762565b90506000815111611cd95760405180602001604052806000815250611d07565b80611ce3846127f4565b600b604051602001611cf793929190613b66565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000611d2182612955565b9050919050565b611d3061208d565b73ffffffffffffffffffffffffffffffffffffffff16611d4e6115fe565b73ffffffffffffffffffffffffffffffffffffffff1614611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b906134eb565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e5d61208d565b73ffffffffffffffffffffffffffffffffffffffff16611e7b6115fe565b73ffffffffffffffffffffffffffffffffffffffff1614611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec8906134eb565b60405180910390fd5b600e5482611edd610db9565b611ee79190613712565b1115611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f90613be3565b60405180910390fd5b611f3281836125e4565b5050565b611f3e61208d565b73ffffffffffffffffffffffffffffffffffffffff16611f5c6115fe565b73ffffffffffffffffffffffffffffffffffffffff1614611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa9906134eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201990613c75565b60405180910390fd5b61202b8161251e565b50565b60008161203961216b565b11158015612048575060005482105b8015612086575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600080829050806120a461216b565b1161212c5760005481101561212b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612129575b600081141561211f5760046000836001900393508381526020019081526020016000205490506120f4565b809250505061215e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061217f82612095565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146121e6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612207612163565b73ffffffffffffffffffffffffffffffffffffffff161480612236575061223585612230612163565b611dc1565b5b8061227b5750612244612163565b73ffffffffffffffffffffffffffffffffffffffff16612263846109db565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806122b4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561231b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61232885858560016129ac565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612425866129b2565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156124af5760006001840190506000600460008381526020019081526020016000205414156124ad5760005481146124ac578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461251785858560016129bc565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125fe8282604051806020016040528060008152506129c2565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612628612163565b8786866040518563ffffffff1660e01b815260040161264a9493929190613cea565b602060405180830381600087803b15801561266457600080fd5b505af192505050801561269557506040513d601f19601f820116820180604052508101906126929190613d4b565b60015b61270f573d80600081146126c5576040519150601f19603f3d011682016040523d82523d6000602084013e6126ca565b606091505b50600081511415612707576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546127719061346d565b80601f016020809104026020016040519081016040528092919081815260200182805461279d9061346d565b80156127ea5780601f106127bf576101008083540402835291602001916127ea565b820191906000526020600020905b8154815290600101906020018083116127cd57829003601f168201915b5050505050905090565b6060600082141561283c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612950565b600082905060005b6000821461286e57808061285790613d78565b915050600a82612867919061362f565b9150612844565b60008167ffffffffffffffff81111561288a5761288961300d565b5b6040519080825280601f01601f1916602001820160405280156128bc5781602001600182028036833780820191505090505b5090505b60008514612949576001826128d59190613964565b9150600a856128e49190613dc1565b60306128f09190613712565b60f81b81838151811061290657612905613df2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612942919061362f565b94506128c0565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a2f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612a6a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a7760008583866129ac565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612adc60018514612c77565b901b60a042901b612aec866129b2565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612bf0575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ba06000878480600101955087612602565b612bd6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612b31578260005414612beb57600080fd5b612c5b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612bf1575b816000819055505050612c7160008583866129bc565b50505050565b6000819050919050565b828054612c8d9061346d565b90600052602060002090601f016020900481019282612caf5760008555612cf6565b82601f10612cc857805160ff1916838001178555612cf6565b82800160010185558215612cf6579182015b82811115612cf5578251825591602001919060010190612cda565b5b509050612d039190612d07565b5090565b5b80821115612d20576000816000905550600101612d08565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d6d81612d38565b8114612d7857600080fd5b50565b600081359050612d8a81612d64565b92915050565b600060208284031215612da657612da5612d2e565b5b6000612db484828501612d7b565b91505092915050565b60008115159050919050565b612dd281612dbd565b82525050565b6000602082019050612ded6000830184612dc9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e2d578082015181840152602081019050612e12565b83811115612e3c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e5e82612df3565b612e688185612dfe565b9350612e78818560208601612e0f565b612e8181612e42565b840191505092915050565b60006020820190508181036000830152612ea68184612e53565b905092915050565b6000819050919050565b612ec181612eae565b8114612ecc57600080fd5b50565b600081359050612ede81612eb8565b92915050565b600060208284031215612efa57612ef9612d2e565b5b6000612f0884828501612ecf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f3c82612f11565b9050919050565b612f4c81612f31565b82525050565b6000602082019050612f676000830184612f43565b92915050565b612f7681612f31565b8114612f8157600080fd5b50565b600081359050612f9381612f6d565b92915050565b60008060408385031215612fb057612faf612d2e565b5b6000612fbe85828601612f84565b9250506020612fcf85828601612ecf565b9150509250929050565b612fe281612eae565b82525050565b6000602082019050612ffd6000830184612fd9565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61304582612e42565b810181811067ffffffffffffffff821117156130645761306361300d565b5b80604052505050565b6000613077612d24565b9050613083828261303c565b919050565b600067ffffffffffffffff8211156130a3576130a261300d565b5b6130ac82612e42565b9050602081019050919050565b82818337600083830152505050565b60006130db6130d684613088565b61306d565b9050828152602081018484840111156130f7576130f6613008565b5b6131028482856130b9565b509392505050565b600082601f83011261311f5761311e613003565b5b813561312f8482602086016130c8565b91505092915050565b60006020828403121561314e5761314d612d2e565b5b600082013567ffffffffffffffff81111561316c5761316b612d33565b5b6131788482850161310a565b91505092915050565b61318a81612dbd565b811461319557600080fd5b50565b6000813590506131a781613181565b92915050565b6000602082840312156131c3576131c2612d2e565b5b60006131d184828501613198565b91505092915050565b6000806000606084860312156131f3576131f2612d2e565b5b600061320186828701612f84565b935050602061321286828701612f84565b925050604061322386828701612ecf565b9150509250925092565b60006020828403121561324357613242612d2e565b5b600061325184828501612f84565b91505092915050565b6000806040838503121561327157613270612d2e565b5b600061327f85828601612f84565b925050602061329085828601613198565b9150509250929050565b600067ffffffffffffffff8211156132b5576132b461300d565b5b6132be82612e42565b9050602081019050919050565b60006132de6132d98461329a565b61306d565b9050828152602081018484840111156132fa576132f9613008565b5b6133058482856130b9565b509392505050565b600082601f83011261332257613321613003565b5b81356133328482602086016132cb565b91505092915050565b6000806000806080858703121561335557613354612d2e565b5b600061336387828801612f84565b945050602061337487828801612f84565b935050604061338587828801612ecf565b925050606085013567ffffffffffffffff8111156133a6576133a5612d33565b5b6133b28782880161330d565b91505092959194509250565b600080604083850312156133d5576133d4612d2e565b5b60006133e385828601612f84565b92505060206133f485828601612f84565b9150509250929050565b6000806040838503121561341557613414612d2e565b5b600061342385828601612ecf565b925050602061343485828601612f84565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061348557607f821691505b602082108114156134995761349861343e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134d5602083612dfe565b91506134e08261349f565b602082019050919050565b60006020820190508181036000830152613504816134c8565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613541601f83612dfe565b915061354c8261350b565b602082019050919050565b6000602082019050818103600083015261357081613534565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135b182612eae565b91506135bc83612eae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135f5576135f4613577565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061363a82612eae565b915061364583612eae565b92508261365557613654613600565b5b828204905092915050565b600081905092915050565b50565b600061367b600083613660565b91506136868261366b565b600082019050919050565b600061369c8261366e565b9150819050919050565b7f476f72696c6c6173206172656e2774207265616479207965742e2e2e00000000600082015250565b60006136dc601c83612dfe565b91506136e7826136a6565b602082019050919050565b6000602082019050818103600083015261370b816136cf565b9050919050565b600061371d82612eae565b915061372883612eae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561375d5761375c613577565b5b828201905092915050565b7f416c6c20676f72696c6c61732061646f707465642e2e2e000000000000000000600082015250565b600061379e601783612dfe565b91506137a982613768565b602082019050919050565b600060208201905081810360008301526137cd81613791565b9050919050565b7f4f6e6c7920323020676f72696c6c617320656163682074696d652e2e2e000000600082015250565b600061380a601d83612dfe565b9150613815826137d4565b602082019050919050565b60006020820190508181036000830152613839816137fd565b9050919050565b7f436f6e7472616374206d696e746572732067657473206e6f20676f72696c6c6160008201527f2e2e2e0000000000000000000000000000000000000000000000000000000000602082015250565b600061389c602383612dfe565b91506138a782613840565b604082019050919050565b600060208201905081810360008301526138cb8161388f565b9050919050565b7f496e76616c6964206e756d626572206f6620676f72696c6c6173206f72206d6960008201527f6e746564206d617820676f72696c6c61732e2e2e000000000000000000000000602082015250565b600061392e603483612dfe565b9150613939826138d2565b604082019050919050565b6000602082019050818103600083015261395d81613921565b9050919050565b600061396f82612eae565b915061397a83612eae565b92508282101561398d5761398c613577565b5b828203905092915050565b7f496e73756666696369656e742066756e64732e00000000000000000000000000600082015250565b60006139ce601383612dfe565b91506139d982613998565b602082019050919050565b600060208201905081810360008301526139fd816139c1565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a60602f83612dfe565b9150613a6b82613a04565b604082019050919050565b60006020820190508181036000830152613a8f81613a53565b9050919050565b600081905092915050565b6000613aac82612df3565b613ab68185613a96565b9350613ac6818560208601612e0f565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613af48161346d565b613afe8186613a96565b94506001821660008114613b195760018114613b2a57613b5d565b60ff19831686528186019350613b5d565b613b3385613ad2565b60005b83811015613b5557815481890152600182019150602081019050613b36565b838801955050505b50505092915050565b6000613b728286613aa1565b9150613b7e8285613aa1565b9150613b8a8284613ae7565b9150819050949350505050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613bcd601483612dfe565b9150613bd882613b97565b602082019050919050565b60006020820190508181036000830152613bfc81613bc0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c5f602683612dfe565b9150613c6a82613c03565b604082019050919050565b60006020820190508181036000830152613c8e81613c52565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cbc82613c95565b613cc68185613ca0565b9350613cd6818560208601612e0f565b613cdf81612e42565b840191505092915050565b6000608082019050613cff6000830187612f43565b613d0c6020830186612f43565b613d196040830185612fd9565b8181036060830152613d2b8184613cb1565b905095945050505050565b600081519050613d4581612d64565b92915050565b600060208284031215613d6157613d60612d2e565b5b6000613d6f84828501613d36565b91505092915050565b6000613d8382612eae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613db657613db5613577565b5b600182019050919050565b6000613dcc82612eae565b9150613dd783612eae565b925082613de757613de6613600565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220869a06d5df48681be88ac1ec9fec3461b05d57b243dae1b26c8e401dc66c2ab964736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000018426f72656420476f72696c6c6120596163687420436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000044247594300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f697066733a2f2f696e7374616e742f0000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Bored Gorilla Yacht Club
Arg [1] : _tokenSymbol (string): BGYC
Arg [2] : _hiddenMetadataUri (string): ipfs://instant/

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [4] : 426f72656420476f72696c6c6120596163687420436c75620000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4247594300000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [8] : 697066733a2f2f696e7374616e742f0000000000000000000000000000000000


Deployed Bytecode Sourcemap

46650:4224:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13086:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18099:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20167:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49255:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19627:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46865:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49703:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49809:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12140:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46941:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21053:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46980:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50115:756;;;;;;;;;;;;;:::i;:::-;;21294:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49175:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49459:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47050:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46771:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47082:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46738:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17888:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13765:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45757:103;;;;;;;;;;;;;:::i;:::-;;49597:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45106:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18268:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48242:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20443:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46809:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21550:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47014:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48724:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46904:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49892:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49371:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20822:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48410:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46015:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13086:615;13171:4;13486:10;13471:25;;:11;:25;;;;:102;;;;13563:10;13548:25;;:11;:25;;;;13471:102;:179;;;;13640:10;13625:25;;:11;:25;;;;13471:179;13451:199;;13086:615;;;:::o;18099:100::-;18153:13;18186:5;18179:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18099:100;:::o;20167:204::-;20235:7;20260:16;20268:7;20260;:16::i;:::-;20255:64;;20285:34;;;;;;;;;;;;;;20255:64;20339:15;:24;20355:7;20339:24;;;;;;;;;;;;;;;;;;;;;20332:31;;20167:204;;;:::o;49255:110::-;45337:12;:10;:12::i;:::-;45326:23;;:7;:5;:7::i;:::-;:23;;;45318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49345:14:::1;49329:13;:30;;;;49255:110:::0;:::o;19627:474::-;19700:13;19732:27;19751:7;19732:18;:27::i;:::-;19700:61;;19782:5;19776:11;;:2;:11;;;19772:48;;;19796:24;;;;;;;;;;;;;;19772:48;19860:5;19837:28;;:19;:17;:19::i;:::-;:28;;;19833:175;;19885:44;19902:5;19909:19;:17;:19::i;:::-;19885:16;:44::i;:::-;19880:128;;19957:35;;;;;;;;;;;;;;19880:128;19833:175;20047:2;20020:15;:24;20036:7;20020:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20085:7;20081:2;20065:28;;20074:5;20065:28;;;;;;;;;;;;19689:412;19627:474;;:::o;46865:34::-;;;;:::o;49703:100::-;45337:12;:10;:12::i;:::-;45326:23;;:7;:5;:7::i;:::-;:23;;;45318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49787:10:::1;49775:9;:22;;;;;;;;;;;;:::i;:::-;;49703:100:::0;:::o;49809:77::-;45337:12;:10;:12::i;:::-;45326:23;;:7;:5;:7::i;:::-;:23;;;45318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49874:6:::1;49865;;:15;;;;;;;;;;;;;;;;;;49809:77:::0;:::o;12140:315::-;12193:7;12421:15;:13;:15::i;:::-;12406:12;;12390:13;;:28;:46;12383:53;;12140:315;:::o;46941:34::-;;;;:::o;21053:170::-;21187:28;21197:4;21203:2;21207:7;21187:9;:28::i;:::-;21053:170;;;:::o;46980:29::-;;;;:::o;50115:756::-;45337:12;:10;:12::i;:::-;45326:23;;:7;:5;:7::i;:::-;:23;;;45318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42249:1:::1;42847:7;;:19;;42839:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42249:1;42980:7;:18;;;;50172:17:::2;50223:5;50216:4;50192:21;:28;;;;:::i;:::-;:36;;;;:::i;:::-;50172:56;;50238:10;50262:42;50254:56;;50318:9;50254:78;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50237:95;;;50347:5;50339:14;;;::::0;::::2;;50363:10;50387:42;50379:56;;50443:9;50379:78;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50362:95;;;50472:5;50464:14;;;::::0;::::2;;50488:10;50512:42;50504:56;;50568:9;50504:78;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50487:95;;;50597:5;50589:14;;;::::0;::::2;;50613:10;50637:42;50629:56;;50693:9;50629:78;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50612:95;;;50722:5;50714:14;;;::::0;::::2;;50738:10;50762:42;50754:56;;50818:21;50754:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50737:107;;;50859:5;50851:14;;;::::0;::::2;;50165:706;;;;;;42205:1:::1;43159:7;:22;;;;50115:756::o:0;21294:185::-;21432:39;21449:4;21455:2;21459:7;21432:39;;;;;;;;;;;;:16;:39::i;:::-;21294:185;;;:::o;49175:74::-;45337:12;:10;:12::i;:::-;45326:23;;:7;:5;:7::i;:::-;:23;;;45318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49238:5:::1;49231:4;:12;;;;49175:74:::0;:::o;49459:132::-;45337:12;:10;:12::i;:::-;45326:23;;:7;:5;:7::i;:::-;:23;;;45318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49567:18:::1;49547:17;:38;;;;;;;;;;;;:::i;:::-;;49459:132:::0;:::o;47050:27::-;;;;;;;;;;;;;:::o;46771:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47082:25::-;;;;;;;;;;;;;:::o;46738:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17888:144::-;17952:7;17995:27;18014:7;17995:18;:27::i;:::-;17972:52;;17888:144;;;:::o;13765:224::-;13829:7;13870:1;13853:19;;:5;:19;;;13849:60;;;13881:28;;;;;;;;;;;;;;13849:60;9104:13;13927:18;:25;13946:5;13927:25;;;;;;;;;;;;;;;;:54;13920:61;;13765:224;;;:::o;45757:103::-;45337:12;:10;:12::i;:::-;45326:23;;:7;:5;:7::i;:::-;:23;;;45318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45822:30:::1;45849:1;45822:18;:30::i;:::-;45757:103::o:0;49597:100::-;45337:12;:10;:12::i;:::-;45326:23;;:7;:5;:7::i;:::-;:23;;;45318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49681:10:::1;49669:9;:22;;;;;;;;;;;;:::i;:::-;;49597:100:::0;:::o;45106:87::-;45152:7;45179:6;;;;;;;;;;;45172:13;;45106:87;:::o;18268:104::-;18324:13;18357:7;18350:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18268:104;:::o;48242:160::-;48307:11;47388:6;;;;;;;;;;;47387:7;47379:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;47473:9;;47458:11;47442:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;47434:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;47539:1;47525:11;:15;:43;;;;;47559:9;;47544:11;:24;;47525:43;47517:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;47630:10;47617:23;;:9;:23;;;47609:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;47717:1;47703:11;:15;:74;;;;;47764:13;;47749:11;47722:24;47735:10;47722:12;:24::i;:::-;:38;;;;:::i;:::-;:55;;47703:74;47687:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;48340:11:::1;47925:22;47995:10;;47968:24;47981:10;47968:12;:24::i;:::-;:37;47964:167;;;48016:21;48053:24;48066:10;48053:12;:24::i;:::-;48040:10;;:37;;;;:::i;:::-;48016:61;;48110:13;48103:4;;:20;;;;:::i;:::-;48086:37;;48007:124;47964:167;48184:14;48170:11;48163:4;;:18;;;;:::i;:::-;:35;;;;:::i;:::-;48150:9;:48;;48142:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;48360:36:::2;48370:12;:10;:12::i;:::-;48384:11;48360:9;:36::i;:::-;47918:318:::1;47855:1;48242:160:::0;;:::o;20443:308::-;20554:19;:17;:19::i;:::-;20542:31;;:8;:31;;;20538:61;;;20582:17;;;;;;;;;;;;;;20538:61;20664:8;20612:18;:39;20631:19;:17;:19::i;:::-;20612:39;;;;;;;;;;;;;;;:49;20652:8;20612:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20724:8;20688:55;;20703:19;:17;:19::i;:::-;20688:55;;;20734:8;20688:55;;;;;;:::i;:::-;;;;;;;;20443:308;;:::o;46809:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21550:396::-;21717:28;21727:4;21733:2;21737:7;21717:9;:28::i;:::-;21778:1;21760:2;:14;;;:19;21756:183;;21799:56;21830:4;21836:2;21840:7;21849:5;21799:30;:56::i;:::-;21794:145;;21883:40;;;;;;;;;;;;;;21794:145;21756:183;21550:396;;;;:::o;47014:29::-;;;;:::o;48724:445::-;48798:13;48828:17;48836:8;48828:7;:17::i;:::-;48820:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;48922:5;48910:17;;:8;;;;;;;;;;;:17;;;48906:64;;;48945:17;48938:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48906:64;48978:28;49009:10;:8;:10::i;:::-;48978:41;;49064:1;49039:14;49033:28;:32;:130;;;;;;;;;;;;;;;;;49101:14;49117:19;:8;:17;:19::i;:::-;49138:9;49084:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49033:130;49026:137;;;48724:445;;;;:::o;46904:32::-;;;;:::o;49892:107::-;49950:7;49973:20;49987:5;49973:13;:20::i;:::-;49966:27;;49892:107;;;:::o;49371:81::-;45337:12;:10;:12::i;:::-;45326:23;;:7;:5;:7::i;:::-;:23;;;45318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49440:6:::1;49429:8;;:17;;;;;;;;;;;;;;;;;;49371:81:::0;:::o;20822:164::-;20919:4;20943:18;:25;20962:5;20943:25;;;;;;;;;;;;;;;:35;20969:8;20943:35;;;;;;;;;;;;;;;;;;;;;;;;;20936:42;;20822:164;;;;:::o;48410:207::-;45337:12;:10;:12::i;:::-;45326:23;;:7;:5;:7::i;:::-;:23;;;45318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48537:9:::1;;48522:11;48506:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48498:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48578:33;48588:9;48599:11;48578:9;:33::i;:::-;48410:207:::0;;:::o;46015:201::-;45337:12;:10;:12::i;:::-;45326:23;;:7;:5;:7::i;:::-;:23;;;45318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46124:1:::1;46104:22;;:8;:22;;;;46096:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46180:28;46199:8;46180:18;:28::i;:::-;46015:201:::0;:::o;22201:273::-;22258:4;22314:7;22295:15;:13;:15::i;:::-;:26;;:66;;;;;22348:13;;22338:7;:23;22295:66;:152;;;;;22446:1;9874:8;22399:17;:26;22417:7;22399:26;;;;;;;;;;;;:43;:48;22295:152;22275:172;;22201:273;;;:::o;43853:98::-;43906:7;43933:10;43926:17;;43853:98;:::o;15403:1129::-;15470:7;15490:12;15505:7;15490:22;;15573:4;15554:15;:13;:15::i;:::-;:23;15550:915;;15607:13;;15600:4;:20;15596:869;;;15645:14;15662:17;:23;15680:4;15662:23;;;;;;;;;;;;15645:40;;15778:1;9874:8;15751:6;:23;:28;15747:699;;;16270:113;16287:1;16277:6;:11;16270:113;;;16330:17;:25;16348:6;;;;;;;16330:25;;;;;;;;;;;;16321:34;;16270:113;;;16416:6;16409:13;;;;;;15747:699;15622:843;15596:869;15550:915;16493:31;;;;;;;;;;;;;;15403:1129;;;;:::o;36183:105::-;36243:7;36270:10;36263:17;;36183:105;:::o;48623:95::-;48688:7;48711:1;48704:8;;48623:95;:::o;27440:2515::-;27555:27;27585;27604:7;27585:18;:27::i;:::-;27555:57;;27670:4;27629:45;;27645:19;27629:45;;;27625:86;;27683:28;;;;;;;;;;;;;;27625:86;27724:22;27773:4;27750:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27794:43;27811:4;27817:19;:17;:19::i;:::-;27794:16;:43::i;:::-;27750:87;:147;;;;27878:19;:17;:19::i;:::-;27854:43;;:20;27866:7;27854:11;:20::i;:::-;:43;;;27750:147;27724:174;;27916:17;27911:66;;27942:35;;;;;;;;;;;;;;27911:66;28006:1;27992:16;;:2;:16;;;27988:52;;;28017:23;;;;;;;;;;;;;;27988:52;28053:43;28075:4;28081:2;28085:7;28094:1;28053:21;:43::i;:::-;28169:15;:24;28185:7;28169:24;;;;;;;;;;;;28162:31;;;;;;;;;;;28561:18;:24;28580:4;28561:24;;;;;;;;;;;;;;;;28559:26;;;;;;;;;;;;28630:18;:22;28649:2;28630:22;;;;;;;;;;;;;;;;28628:24;;;;;;;;;;;10156:8;9758:3;29011:15;:41;;28969:21;28987:2;28969:17;:21::i;:::-;:84;:128;28923:17;:26;28941:7;28923:26;;;;;;;;;;;:174;;;;29267:1;10156:8;29217:19;:46;:51;29213:626;;;29289:19;29321:1;29311:7;:11;29289:33;;29478:1;29444:17;:30;29462:11;29444:30;;;;;;;;;;;;:35;29440:384;;;29582:13;;29567:11;:28;29563:242;;29762:19;29729:17;:30;29747:11;29729:30;;;;;;;;;;;:52;;;;29563:242;29440:384;29270:569;29213:626;29886:7;29882:2;29867:27;;29876:4;29867:27;;;;;;;;;;;;29905:42;29926:4;29932:2;29936:7;29945:1;29905:20;:42::i;:::-;27544:2411;;27440:2515;;;:::o;46376:191::-;46450:16;46469:6;;;;;;;;;;;46450:25;;46495:8;46486:6;;:17;;;;;;;;;;;;;;;;;;46550:8;46519:40;;46540:8;46519:40;;;;;;;;;;;;46439:128;46376:191;:::o;22558:104::-;22627:27;22637:2;22641:8;22627:27;;;;;;;;;;;;:9;:27::i;:::-;22558:104;;:::o;33652:716::-;33815:4;33861:2;33836:45;;;33882:19;:17;:19::i;:::-;33903:4;33909:7;33918:5;33836:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33832:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34136:1;34119:6;:13;:18;34115:235;;;34165:40;;;;;;;;;;;;;;34115:235;34308:6;34302:13;34293:6;34289:2;34285:15;34278:38;33832:529;34005:54;;;33995:64;;;:6;:64;;;;33988:71;;;33652:716;;;;;;:::o;50005:104::-;50065:13;50094:9;50087:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50005:104;:::o;38703:723::-;38759:13;38989:1;38980:5;:10;38976:53;;;39007:10;;;;;;;;;;;;;;;;;;;;;38976:53;39039:12;39054:5;39039:20;;39070:14;39095:78;39110:1;39102:4;:9;39095:78;;39128:8;;;;;:::i;:::-;;;;39159:2;39151:10;;;;;:::i;:::-;;;39095:78;;;39183:19;39215:6;39205:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39183:39;;39233:154;39249:1;39240:5;:10;39233:154;;39277:1;39267:11;;;;;:::i;:::-;;;39344:2;39336:5;:10;;;;:::i;:::-;39323:2;:24;;;;:::i;:::-;39310:39;;39293:6;39300;39293:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;39373:2;39364:11;;;;;:::i;:::-;;;39233:154;;;39411:6;39397:21;;;;;38703:723;;;;:::o;14071:176::-;14132:7;9104:13;9241:2;14160:18;:25;14179:5;14160:25;;;;;;;;;;;;;;;;:49;;14159:80;14152:87;;14071:176;;;:::o;35016:159::-;;;;;:::o;19188:148::-;19252:14;19313:5;19303:15;;19188:148;;;:::o;35834:158::-;;;;;:::o;23035:2236::-;23158:20;23181:13;;23158:36;;23223:1;23209:16;;:2;:16;;;23205:48;;;23234:19;;;;;;;;;;;;;;23205:48;23280:1;23268:8;:13;23264:44;;;23290:18;;;;;;;;;;;;;;23264:44;23321:61;23351:1;23355:2;23359:12;23373:8;23321:21;:61::i;:::-;23925:1;9241:2;23896:1;:25;;23895:31;23883:8;:44;23857:18;:22;23876:2;23857:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;10021:3;24326:29;24353:1;24341:8;:13;24326:14;:29::i;:::-;:56;;9758:3;24263:15;:41;;24221:21;24239:2;24221:17;:21::i;:::-;:84;:162;24170:17;:31;24188:12;24170:31;;;;;;;;;;;:213;;;;24400:20;24423:12;24400:35;;24450:11;24479:8;24464:12;:23;24450:37;;24526:1;24508:2;:14;;;:19;24504:635;;24548:313;24604:12;24600:2;24579:38;;24596:1;24579:38;;;;;;;;;;;;24645:69;24684:1;24688:2;24692:14;;;;;;24708:5;24645:30;:69::i;:::-;24640:174;;24750:40;;;;;;;;;;;;;;24640:174;24856:3;24841:12;:18;24548:313;;24942:12;24925:13;;:29;24921:43;;24956:8;;;24921:43;24504:635;;;25005:119;25061:14;;;;;;25057:2;25036:40;;25053:1;25036:40;;;;;;;;;;;;25119:3;25104:12;:18;25005:119;;24504:635;25169:12;25153:13;:28;;;;23634:1559;;25203:60;25232:1;25236:2;25240:12;25254:8;25203:20;:60::i;:::-;23147:2124;23035:2236;;;:::o;19423:142::-;19481:14;19542:5;19532:15;;19423:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:182::-;13582:34;13578:1;13570:6;13566:14;13559:58;13442:182;:::o;13630:366::-;13772:3;13793:67;13857:2;13852:3;13793:67;:::i;:::-;13786:74;;13869:93;13958:3;13869:93;:::i;:::-;13987:2;13982:3;13978:12;13971:19;;13630:366;;;:::o;14002:419::-;14168:4;14206:2;14195:9;14191:18;14183:26;;14255:9;14249:4;14245:20;14241:1;14230:9;14226:17;14219:47;14283:131;14409:4;14283:131;:::i;:::-;14275:139;;14002:419;;;:::o;14427:181::-;14567:33;14563:1;14555:6;14551:14;14544:57;14427:181;:::o;14614:366::-;14756:3;14777:67;14841:2;14836:3;14777:67;:::i;:::-;14770:74;;14853:93;14942:3;14853:93;:::i;:::-;14971:2;14966:3;14962:12;14955:19;;14614:366;;;:::o;14986:419::-;15152:4;15190:2;15179:9;15175:18;15167:26;;15239:9;15233:4;15229:20;15225:1;15214:9;15210:17;15203:47;15267:131;15393:4;15267:131;:::i;:::-;15259:139;;14986:419;;;:::o;15411:180::-;15459:77;15456:1;15449:88;15556:4;15553:1;15546:15;15580:4;15577:1;15570:15;15597:348;15637:7;15660:20;15678:1;15660:20;:::i;:::-;15655:25;;15694:20;15712:1;15694:20;:::i;:::-;15689:25;;15882:1;15814:66;15810:74;15807:1;15804:81;15799:1;15792:9;15785:17;15781:105;15778:131;;;15889:18;;:::i;:::-;15778:131;15937:1;15934;15930:9;15919:20;;15597:348;;;;:::o;15951:180::-;15999:77;15996:1;15989:88;16096:4;16093:1;16086:15;16120:4;16117:1;16110:15;16137:185;16177:1;16194:20;16212:1;16194:20;:::i;:::-;16189:25;;16228:20;16246:1;16228:20;:::i;:::-;16223:25;;16267:1;16257:35;;16272:18;;:::i;:::-;16257:35;16314:1;16311;16307:9;16302:14;;16137:185;;;;:::o;16328:147::-;16429:11;16466:3;16451:18;;16328:147;;;;:::o;16481:114::-;;:::o;16601:398::-;16760:3;16781:83;16862:1;16857:3;16781:83;:::i;:::-;16774:90;;16873:93;16962:3;16873:93;:::i;:::-;16991:1;16986:3;16982:11;16975:18;;16601:398;;;:::o;17005:379::-;17189:3;17211:147;17354:3;17211:147;:::i;:::-;17204:154;;17375:3;17368:10;;17005:379;;;:::o;17390:178::-;17530:30;17526:1;17518:6;17514:14;17507:54;17390:178;:::o;17574:366::-;17716:3;17737:67;17801:2;17796:3;17737:67;:::i;:::-;17730:74;;17813:93;17902:3;17813:93;:::i;:::-;17931:2;17926:3;17922:12;17915:19;;17574:366;;;:::o;17946:419::-;18112:4;18150:2;18139:9;18135:18;18127:26;;18199:9;18193:4;18189:20;18185:1;18174:9;18170:17;18163:47;18227:131;18353:4;18227:131;:::i;:::-;18219:139;;17946:419;;;:::o;18371:305::-;18411:3;18430:20;18448:1;18430:20;:::i;:::-;18425:25;;18464:20;18482:1;18464:20;:::i;:::-;18459:25;;18618:1;18550:66;18546:74;18543:1;18540:81;18537:107;;;18624:18;;:::i;:::-;18537:107;18668:1;18665;18661:9;18654:16;;18371:305;;;;:::o;18682:173::-;18822:25;18818:1;18810:6;18806:14;18799:49;18682:173;:::o;18861:366::-;19003:3;19024:67;19088:2;19083:3;19024:67;:::i;:::-;19017:74;;19100:93;19189:3;19100:93;:::i;:::-;19218:2;19213:3;19209:12;19202:19;;18861:366;;;:::o;19233:419::-;19399:4;19437:2;19426:9;19422:18;19414:26;;19486:9;19480:4;19476:20;19472:1;19461:9;19457:17;19450:47;19514:131;19640:4;19514:131;:::i;:::-;19506:139;;19233:419;;;:::o;19658:179::-;19798:31;19794:1;19786:6;19782:14;19775:55;19658:179;:::o;19843:366::-;19985:3;20006:67;20070:2;20065:3;20006:67;:::i;:::-;19999:74;;20082:93;20171:3;20082:93;:::i;:::-;20200:2;20195:3;20191:12;20184:19;;19843:366;;;:::o;20215:419::-;20381:4;20419:2;20408:9;20404:18;20396:26;;20468:9;20462:4;20458:20;20454:1;20443:9;20439:17;20432:47;20496:131;20622:4;20496:131;:::i;:::-;20488:139;;20215:419;;;:::o;20640:222::-;20780:34;20776:1;20768:6;20764:14;20757:58;20849:5;20844:2;20836:6;20832:15;20825:30;20640:222;:::o;20868:366::-;21010:3;21031:67;21095:2;21090:3;21031:67;:::i;:::-;21024:74;;21107:93;21196:3;21107:93;:::i;:::-;21225:2;21220:3;21216:12;21209:19;;20868:366;;;:::o;21240:419::-;21406:4;21444:2;21433:9;21429:18;21421:26;;21493:9;21487:4;21483:20;21479:1;21468:9;21464:17;21457:47;21521:131;21647:4;21521:131;:::i;:::-;21513:139;;21240:419;;;:::o;21665:239::-;21805:34;21801:1;21793:6;21789:14;21782:58;21874:22;21869:2;21861:6;21857:15;21850:47;21665:239;:::o;21910:366::-;22052:3;22073:67;22137:2;22132:3;22073:67;:::i;:::-;22066:74;;22149:93;22238:3;22149:93;:::i;:::-;22267:2;22262:3;22258:12;22251:19;;21910:366;;;:::o;22282:419::-;22448:4;22486:2;22475:9;22471:18;22463:26;;22535:9;22529:4;22525:20;22521:1;22510:9;22506:17;22499:47;22563:131;22689:4;22563:131;:::i;:::-;22555:139;;22282:419;;;:::o;22707:191::-;22747:4;22767:20;22785:1;22767:20;:::i;:::-;22762:25;;22801:20;22819:1;22801:20;:::i;:::-;22796:25;;22840:1;22837;22834:8;22831:34;;;22845:18;;:::i;:::-;22831:34;22890:1;22887;22883:9;22875:17;;22707:191;;;;:::o;22904:169::-;23044:21;23040:1;23032:6;23028:14;23021:45;22904:169;:::o;23079:366::-;23221:3;23242:67;23306:2;23301:3;23242:67;:::i;:::-;23235:74;;23318:93;23407:3;23318:93;:::i;:::-;23436:2;23431:3;23427:12;23420:19;;23079:366;;;:::o;23451:419::-;23617:4;23655:2;23644:9;23640:18;23632:26;;23704:9;23698:4;23694:20;23690:1;23679:9;23675:17;23668:47;23732:131;23858:4;23732:131;:::i;:::-;23724:139;;23451:419;;;:::o;23876:234::-;24016:34;24012:1;24004:6;24000:14;23993:58;24085:17;24080:2;24072:6;24068:15;24061:42;23876:234;:::o;24116:366::-;24258:3;24279:67;24343:2;24338:3;24279:67;:::i;:::-;24272:74;;24355:93;24444:3;24355:93;:::i;:::-;24473:2;24468:3;24464:12;24457:19;;24116:366;;;:::o;24488:419::-;24654:4;24692:2;24681:9;24677:18;24669:26;;24741:9;24735:4;24731:20;24727:1;24716:9;24712:17;24705:47;24769:131;24895:4;24769:131;:::i;:::-;24761:139;;24488:419;;;:::o;24913:148::-;25015:11;25052:3;25037:18;;24913:148;;;;:::o;25067:377::-;25173:3;25201:39;25234:5;25201:39;:::i;:::-;25256:89;25338:6;25333:3;25256:89;:::i;:::-;25249:96;;25354:52;25399:6;25394:3;25387:4;25380:5;25376:16;25354:52;:::i;:::-;25431:6;25426:3;25422:16;25415:23;;25177:267;25067:377;;;;:::o;25450:141::-;25499:4;25522:3;25514:11;;25545:3;25542:1;25535:14;25579:4;25576:1;25566:18;25558:26;;25450:141;;;:::o;25621:845::-;25724:3;25761:5;25755:12;25790:36;25816:9;25790:36;:::i;:::-;25842:89;25924:6;25919:3;25842:89;:::i;:::-;25835:96;;25962:1;25951:9;25947:17;25978:1;25973:137;;;;26124:1;26119:341;;;;25940:520;;25973:137;26057:4;26053:9;26042;26038:25;26033:3;26026:38;26093:6;26088:3;26084:16;26077:23;;25973:137;;26119:341;26186:38;26218:5;26186:38;:::i;:::-;26246:1;26260:154;26274:6;26271:1;26268:13;26260:154;;;26348:7;26342:14;26338:1;26333:3;26329:11;26322:35;26398:1;26389:7;26385:15;26374:26;;26296:4;26293:1;26289:12;26284:17;;26260:154;;;26443:6;26438:3;26434:16;26427:23;;26126:334;;25940:520;;25728:738;;25621:845;;;;:::o;26472:589::-;26697:3;26719:95;26810:3;26801:6;26719:95;:::i;:::-;26712:102;;26831:95;26922:3;26913:6;26831:95;:::i;:::-;26824:102;;26943:92;27031:3;27022:6;26943:92;:::i;:::-;26936:99;;27052:3;27045:10;;26472:589;;;;;;:::o;27067:170::-;27207:22;27203:1;27195:6;27191:14;27184:46;27067:170;:::o;27243:366::-;27385:3;27406:67;27470:2;27465:3;27406:67;:::i;:::-;27399:74;;27482:93;27571:3;27482:93;:::i;:::-;27600:2;27595:3;27591:12;27584:19;;27243:366;;;:::o;27615:419::-;27781:4;27819:2;27808:9;27804:18;27796:26;;27868:9;27862:4;27858:20;27854:1;27843:9;27839:17;27832:47;27896:131;28022:4;27896:131;:::i;:::-;27888:139;;27615:419;;;:::o;28040:225::-;28180:34;28176:1;28168:6;28164:14;28157:58;28249:8;28244:2;28236:6;28232:15;28225:33;28040:225;:::o;28271:366::-;28413:3;28434:67;28498:2;28493:3;28434:67;:::i;:::-;28427:74;;28510:93;28599:3;28510:93;:::i;:::-;28628:2;28623:3;28619:12;28612:19;;28271:366;;;:::o;28643:419::-;28809:4;28847:2;28836:9;28832:18;28824:26;;28896:9;28890:4;28886:20;28882:1;28871:9;28867:17;28860:47;28924:131;29050:4;28924:131;:::i;:::-;28916:139;;28643:419;;;:::o;29068:98::-;29119:6;29153:5;29147:12;29137:22;;29068:98;;;:::o;29172:168::-;29255:11;29289:6;29284:3;29277:19;29329:4;29324:3;29320:14;29305:29;;29172:168;;;;:::o;29346:360::-;29432:3;29460:38;29492:5;29460:38;:::i;:::-;29514:70;29577:6;29572:3;29514:70;:::i;:::-;29507:77;;29593:52;29638:6;29633:3;29626:4;29619:5;29615:16;29593:52;:::i;:::-;29670:29;29692:6;29670:29;:::i;:::-;29665:3;29661:39;29654:46;;29436:270;29346:360;;;;:::o;29712:640::-;29907:4;29945:3;29934:9;29930:19;29922:27;;29959:71;30027:1;30016:9;30012:17;30003:6;29959:71;:::i;:::-;30040:72;30108:2;30097:9;30093:18;30084:6;30040:72;:::i;:::-;30122;30190:2;30179:9;30175:18;30166:6;30122:72;:::i;:::-;30241:9;30235:4;30231:20;30226:2;30215:9;30211:18;30204:48;30269:76;30340:4;30331:6;30269:76;:::i;:::-;30261:84;;29712:640;;;;;;;:::o;30358:141::-;30414:5;30445:6;30439:13;30430:22;;30461:32;30487:5;30461:32;:::i;:::-;30358:141;;;;:::o;30505:349::-;30574:6;30623:2;30611:9;30602:7;30598:23;30594:32;30591:119;;;30629:79;;:::i;:::-;30591:119;30749:1;30774:63;30829:7;30820:6;30809:9;30805:22;30774:63;:::i;:::-;30764:73;;30720:127;30505:349;;;;:::o;30860:233::-;30899:3;30922:24;30940:5;30922:24;:::i;:::-;30913:33;;30968:66;30961:5;30958:77;30955:103;;;31038:18;;:::i;:::-;30955:103;31085:1;31078:5;31074:13;31067:20;;30860:233;;;:::o;31099:176::-;31131:1;31148:20;31166:1;31148:20;:::i;:::-;31143:25;;31182:20;31200:1;31182:20;:::i;:::-;31177:25;;31221:1;31211:35;;31226:18;;:::i;:::-;31211:35;31267:1;31264;31260:9;31255:14;;31099:176;;;;:::o;31281:180::-;31329:77;31326:1;31319:88;31426:4;31423:1;31416:15;31450:4;31447:1;31440:15

Swarm Source

ipfs://869a06d5df48681be88ac1ec9fec3461b05d57b243dae1b26c8e401dc66c2ab9
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.