ETH Price: $2,696.75 (+5.01%)
Gas: 1 Gwei

Token

WeAreBulls (WB)
 

Overview

Max Total Supply

3,333 WB

Holders

1,601

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 WB
0x9489aa21b9997a5e1ea2d1d62ce1a0564df31e6c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
WeAreBulls

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/security/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: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
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();

    /**
     * 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();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` 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);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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`
    // - [232..255] `extraData`
    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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 auxiliary 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 auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev 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;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // 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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @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));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word 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: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

// File: WeAreBulls.sol



pragma solidity >=0.8.9 <0.9.0;





contract WeAreBulls is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint;

  string public uriPrefix = 'ipfs://bafybeibw2fvnt2hiqv5aw3cznsiuukl5ed4zb3ntbewtjgw4dwud7vo4i4/';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;
  
  uint public Cost = 0.002 ether;
  uint public MAXSUPPLY = 3333;
  uint public FREESUPPLY = 1000;
  uint public MAXPERWALLET = 10;
  uint public maxMintAmountPerTx = 2;

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

  mapping(address => bool) public freeMintClaimed;

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

  // ~~~~~~~~~~~~~~~~~~~~ Modifiers ~~~~~~~~~~~~~~~~~~~~
  modifier mintCompliance(uint _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(_mintAmount + balanceOf(_msgSender()) <= MAXPERWALLET, 'Only two allowed per wallet!');
    require(totalSupply() + _mintAmount <= MAXSUPPLY, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint _mintAmount) {
    if (freeMintClaimed[_msgSender()] || totalSupply() >= FREESUPPLY) {
      require(msg.value >= Cost * _mintAmount, 'Insufficient funds!');
    }
    _;
  }

  // ~~~~~~~~~~~~~~~~~~~~ Mint Functions ~~~~~~~~~~~~~~~~~~~~
  function mint(uint _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');
    freeMintClaimed[_msgSender()] = true;

    _safeMint(_msgSender(), _mintAmount);

  }
  
  function mintForAddress(uint _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

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

  function tokenURI(uint _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))
        : 'ipfs://bafybeibw2fvnt2hiqv5aw3cznsiuukl5ed4zb3ntbewtjgw4dwud7vo4i4/';
  }

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

  function setCost(uint _Cost) public onlyOwner {
    Cost = _Cost;
  }

  function setMaxMintAmountPerTx(uint _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  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 setFreeSupply(uint _freeQty) public onlyOwner {
    FREESUPPLY = _freeQty;
  }

  // ~~~~~~~~~~~~~~~~~~~~ Withdraw Functions ~~~~~~~~~~~~~~~~~~~~
  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }
/*

*/
}

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":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREESUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXPERWALLET","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxMintAmountPerTx","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":[],"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":"uint256","name":"_freeQty","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","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"}]

6080604052604051806080016040528060438152602001620041b860439139600a90816200002e9190620005ad565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9081620000759190620005ad565b5066071afd498d0000600d55610d05600e556103e8600f55600a60105560026011556001601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff021916908315150217905550348015620000da57600080fd5b50604051620041fb380380620041fb833981810160405281019062000100919062000802565b82828160029081620001139190620005ad565b508060039081620001259190620005ad565b50620001366200018060201b60201c565b60008190555050506200015e620001526200018560201b60201c565b6200018d60201b60201c565b600160098190555062000177816200025360201b60201c565b5050506200093e565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002636200027860201b60201c565b80600c9081620002749190620005ad565b5050565b620002886200018560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ae6200030960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000307576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fe906200091c565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003b557607f821691505b602082108103620003cb57620003ca6200036d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003f6565b620004418683620003f6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200048e62000488620004828462000459565b62000463565b62000459565b9050919050565b6000819050919050565b620004aa836200046d565b620004c2620004b98262000495565b84845462000403565b825550505050565b600090565b620004d9620004ca565b620004e68184846200049f565b505050565b5b818110156200050e5762000502600082620004cf565b600181019050620004ec565b5050565b601f8211156200055d576200052781620003d1565b6200053284620003e6565b8101602085101562000542578190505b6200055a6200055185620003e6565b830182620004eb565b50505b505050565b600082821c905092915050565b6000620005826000198460080262000562565b1980831691505092915050565b60006200059d83836200056f565b9150826002028217905092915050565b620005b88262000333565b67ffffffffffffffff811115620005d457620005d36200033e565b5b620005e082546200039c565b620005ed82828562000512565b600060209050601f83116001811462000625576000841562000610578287015190505b6200061c85826200058f565b8655506200068c565b601f1984166200063586620003d1565b60005b828110156200065f5784890151825560018201915060208501945060208101905062000638565b868310156200067f57848901516200067b601f8916826200056f565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620006ce82620006b2565b810181811067ffffffffffffffff82111715620006f057620006ef6200033e565b5b80604052505050565b60006200070562000694565b9050620007138282620006c3565b919050565b600067ffffffffffffffff8211156200073657620007356200033e565b5b6200074182620006b2565b9050602081019050919050565b60005b838110156200076e57808201518184015260208101905062000751565b838111156200077e576000848401525b50505050565b60006200079b620007958462000718565b620006f9565b905082815260208101848484011115620007ba57620007b9620006ad565b5b620007c78482856200074e565b509392505050565b600082601f830112620007e757620007e6620006a8565b5b8151620007f984826020860162000784565b91505092915050565b6000806000606084860312156200081e576200081d6200069e565b5b600084015167ffffffffffffffff8111156200083f576200083e620006a3565b5b6200084d86828701620007cf565b935050602084015167ffffffffffffffff811115620008715762000870620006a3565b5b6200087f86828701620007cf565b925050604084015167ffffffffffffffff811115620008a357620008a2620006a3565b5b620008b186828701620007cf565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000904602083620008bb565b91506200091182620008cc565b602082019050919050565b600060208201905081810360008301526200093781620008f5565b9050919050565b61386a806200094e6000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063b071401b116100ab578063e985e9c51161006f578063e985e9c514610808578063efbd73f414610845578063f2fde38b1461086e578063f63c533c14610897578063f676308a146108c257610230565b8063b071401b14610713578063b88d4fde1461073c578063c87b56dd14610765578063e0a80853146107a2578063e0ec7c36146107cb57610230565b806395d89b41116100f257806395d89b411461064d5780639dbc61fa14610678578063a0712d68146106a3578063a22cb465146106bf578063a45ba8e7146106e857610230565b8063715018a61461058c578063758b4e86146105a35780637ec4a659146105ce5780638da5cb5b146105f757806394354fd01461062257610230565b80633ccfd60b116101bc5780635503a0e8116101805780635503a0e8146104915780635c975abb146104bc57806362b99ad4146104e75780636352211e1461051257806370a082311461054f57610230565b80633ccfd60b146103d457806342842e0e146103eb57806344a0d68a146104145780634fdd43cb1461043d578063518302271461046657610230565b8063095ea7b311610203578063095ea7b31461030557806316ba10e01461032e57806316c38b3c1461035757806318160ddd1461038057806323b872dd146103ab57610230565b806301ffc9a71461023557806304cb229e1461027257806306fdde031461029d578063081812fc146102c8575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612619565b6108eb565b6040516102699190612661565b60405180910390f35b34801561027e57600080fd5b5061028761097d565b6040516102949190612695565b60405180910390f35b3480156102a957600080fd5b506102b2610983565b6040516102bf9190612749565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190612797565b610a15565b6040516102fc9190612805565b60405180910390f35b34801561031157600080fd5b5061032c6004803603810190610327919061284c565b610a94565b005b34801561033a57600080fd5b50610355600480360381019061035091906129c1565b610bd8565b005b34801561036357600080fd5b5061037e60048036038101906103799190612a36565b610bf3565b005b34801561038c57600080fd5b50610395610c18565b6040516103a29190612695565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd9190612a63565b610c2f565b005b3480156103e057600080fd5b506103e9610f51565b005b3480156103f757600080fd5b50610412600480360381019061040d9190612a63565b61102e565b005b34801561042057600080fd5b5061043b60048036038101906104369190612797565b61104e565b005b34801561044957600080fd5b50610464600480360381019061045f91906129c1565b611060565b005b34801561047257600080fd5b5061047b61107b565b6040516104889190612661565b60405180910390f35b34801561049d57600080fd5b506104a661108e565b6040516104b39190612749565b60405180910390f35b3480156104c857600080fd5b506104d161111c565b6040516104de9190612661565b60405180910390f35b3480156104f357600080fd5b506104fc61112f565b6040516105099190612749565b60405180910390f35b34801561051e57600080fd5b5061053960048036038101906105349190612797565b6111bd565b6040516105469190612805565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190612ab6565b6111cf565b6040516105839190612695565b60405180910390f35b34801561059857600080fd5b506105a1611287565b005b3480156105af57600080fd5b506105b861129b565b6040516105c59190612695565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f091906129c1565b6112a1565b005b34801561060357600080fd5b5061060c6112bc565b6040516106199190612805565b60405180910390f35b34801561062e57600080fd5b506106376112e6565b6040516106449190612695565b60405180910390f35b34801561065957600080fd5b506106626112ec565b60405161066f9190612749565b60405180910390f35b34801561068457600080fd5b5061068d61137e565b60405161069a9190612695565b60405180910390f35b6106bd60048036038101906106b89190612797565b611384565b005b3480156106cb57600080fd5b506106e660048036038101906106e19190612ae3565b611610565b005b3480156106f457600080fd5b506106fd611787565b60405161070a9190612749565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190612797565b611815565b005b34801561074857600080fd5b50610763600480360381019061075e9190612bc4565b611827565b005b34801561077157600080fd5b5061078c60048036038101906107879190612797565b61189a565b6040516107999190612749565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190612a36565b6119fb565b005b3480156107d757600080fd5b506107f260048036038101906107ed9190612ab6565b611a20565b6040516107ff9190612661565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a9190612c47565b611a40565b60405161083c9190612661565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190612c87565b611ad4565b005b34801561087a57600080fd5b5061089560048036038101906108909190612ab6565b611bf3565b005b3480156108a357600080fd5b506108ac611c76565b6040516108b99190612695565b60405180910390f35b3480156108ce57600080fd5b506108e960048036038101906108e49190612797565b611c7c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109765750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600f5481565b60606002805461099290612cf6565b80601f01602080910402602001604051908101604052809291908181526020018280546109be90612cf6565b8015610a0b5780601f106109e057610100808354040283529160200191610a0b565b820191906000526020600020905b8154815290600101906020018083116109ee57829003601f168201915b5050505050905090565b6000610a2082611c8e565b610a56576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9f826111bd565b90508073ffffffffffffffffffffffffffffffffffffffff16610ac0611ced565b73ffffffffffffffffffffffffffffffffffffffff1614610b2357610aec81610ae7611ced565b611a40565b610b22576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610be0611cf5565b80600b9081610bef9190612ed3565b5050565b610bfb611cf5565b80601260006101000a81548160ff02191690831515021790555050565b6000610c22611d73565b6001546000540303905090565b6000610c3a82611d78565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ca1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610cad84611e44565b91509150610cc38187610cbe611ced565b611e6b565b610d0f57610cd886610cd3611ced565b611a40565b610d0e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d75576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d828686866001611eaf565b8015610d8d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5b85610e37888887611eb5565b7c020000000000000000000000000000000000000000000000000000000017611edd565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ee15760006001850190506000600460008381526020019081526020016000205403610edf576000548114610ede578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f498686866001611f08565b505050505050565b610f59611cf5565b600260095403610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590612ff1565b60405180910390fd5b60026009819055506000610fb06112bc565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fd390613042565b60006040518083038185875af1925050503d8060008114611010576040519150601f19603f3d011682016040523d82523d6000602084013e611015565b606091505b505090508061102357600080fd5b506001600981905550565b61104983838360405180602001604052806000815250611827565b505050565b611056611cf5565b80600d8190555050565b611068611cf5565b80600c90816110779190612ed3565b5050565b601260019054906101000a900460ff1681565b600b805461109b90612cf6565b80601f01602080910402602001604051908101604052809291908181526020018280546110c790612cf6565b80156111145780601f106110e957610100808354040283529160200191611114565b820191906000526020600020905b8154815290600101906020018083116110f757829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600a805461113c90612cf6565b80601f016020809104026020016040519081016040528092919081815260200182805461116890612cf6565b80156111b55780601f1061118a576101008083540402835291602001916111b5565b820191906000526020600020905b81548152906001019060200180831161119857829003601f168201915b505050505081565b60006111c882611d78565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611236576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61128f611cf5565b6112996000611f0e565b565b600e5481565b6112a9611cf5565b80600a90816112b89190612ed3565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546112fb90612cf6565b80601f016020809104026020016040519081016040528092919081815260200182805461132790612cf6565b80156113745780601f1061134957610100808354040283529160200191611374565b820191906000526020600020905b81548152906001019060200180831161135757829003601f168201915b5050505050905090565b60105481565b8060008111801561139757506011548111155b6113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd906130a3565b60405180910390fd5b6010546113e96113e4611fd4565b6111cf565b826113f491906130f2565b1115611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c90613194565b60405180910390fd5b600e5481611441610c18565b61144b91906130f2565b111561148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390613200565b60405180910390fd5b8160136000611499611fd4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114f55750600f546114f2610c18565b10155b1561154b5780600d546115089190613220565b34101561154a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611541906132c6565b60405180910390fd5b5b601260009054906101000a900460ff161561159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290613332565b60405180910390fd5b6001601360006115a9611fd4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061160b611605611fd4565b84611fdc565b505050565b611618611ced565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361167c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611689611ced565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611736611ced565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161177b9190612661565b60405180910390a35050565b600c805461179490612cf6565b80601f01602080910402602001604051908101604052809291908181526020018280546117c090612cf6565b801561180d5780601f106117e25761010080835404028352916020019161180d565b820191906000526020600020905b8154815290600101906020018083116117f057829003601f168201915b505050505081565b61181d611cf5565b8060118190555050565b611832848484610c2f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118945761185d84848484611ffa565b611893576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606118a582611c8e565b6118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db906133c4565b60405180910390fd5b60001515601260019054906101000a900460ff1615150361199157600c805461190c90612cf6565b80601f016020809104026020016040519081016040528092919081815260200182805461193890612cf6565b80156119855780601f1061195a57610100808354040283529160200191611985565b820191906000526020600020905b81548152906001019060200180831161196857829003601f168201915b505050505090506119f6565b600061199b61214a565b905060008151116119c4576040518060800160405280604381526020016137f2604391396119f2565b806119ce846121dc565b600b6040516020016119e2939291906134a3565b6040516020818303038152906040525b9150505b919050565b611a03611cf5565b80601260016101000a81548160ff02191690831515021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611ae757506011548111155b611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d906130a3565b60405180910390fd5b601054611b39611b34611fd4565b6111cf565b82611b4491906130f2565b1115611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90613194565b60405180910390fd5b600e5481611b91610c18565b611b9b91906130f2565b1115611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd390613200565b60405180910390fd5b611be4611cf5565b611bee8284611fdc565b505050565b611bfb611cf5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6190613546565b60405180910390fd5b611c7381611f0e565b50565b600d5481565b611c84611cf5565b80600f8190555050565b600081611c99611d73565b11158015611ca8575060005482105b8015611ce6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611cfd611fd4565b73ffffffffffffffffffffffffffffffffffffffff16611d1b6112bc565b73ffffffffffffffffffffffffffffffffffffffff1614611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d68906135b2565b60405180910390fd5b565b600090565b60008082905080611d87611d73565b11611e0d57600054811015611e0c5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e0a575b60008103611e00576004600083600190039350838152602001908152602001600020549050611dd6565b8092505050611e3f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ecc86868461233c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611ff6828260405180602001604052806000815250612345565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612020611ced565b8786866040518563ffffffff1660e01b81526004016120429493929190613627565b6020604051808303816000875af192505050801561207e57506040513d601f19601f8201168201806040525081019061207b9190613688565b60015b6120f7573d80600081146120ae576040519150601f19603f3d011682016040523d82523d6000602084013e6120b3565b606091505b5060008151036120ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461215990612cf6565b80601f016020809104026020016040519081016040528092919081815260200182805461218590612cf6565b80156121d25780601f106121a7576101008083540402835291602001916121d2565b820191906000526020600020905b8154815290600101906020018083116121b557829003601f168201915b5050505050905090565b606060008203612223576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612337565b600082905060005b6000821461225557808061223e906136b5565b915050600a8261224e919061372c565b915061222b565b60008167ffffffffffffffff81111561227157612270612896565b5b6040519080825280601f01601f1916602001820160405280156122a35781602001600182028036833780820191505090505b5090505b60008514612330576001826122bc919061375d565b9150600a856122cb9190613791565b60306122d791906130f2565b60f81b8183815181106122ed576122ec6137c2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612329919061372c565b94506122a7565b8093505050505b919050565b60009392505050565b61234f83836123e2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123dd57600080549050600083820390505b61238f6000868380600101945086611ffa565b6123c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061237c5781600054146123da57600080fd5b50505b505050565b60008054905060008203612422576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61242f6000848385611eaf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124a6836124976000866000611eb5565b6124a08561259d565b17611edd565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461254757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061250c565b5060008203612582576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125986000848385611f08565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125f6816125c1565b811461260157600080fd5b50565b600081359050612613816125ed565b92915050565b60006020828403121561262f5761262e6125b7565b5b600061263d84828501612604565b91505092915050565b60008115159050919050565b61265b81612646565b82525050565b60006020820190506126766000830184612652565b92915050565b6000819050919050565b61268f8161267c565b82525050565b60006020820190506126aa6000830184612686565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126ea5780820151818401526020810190506126cf565b838111156126f9576000848401525b50505050565b6000601f19601f8301169050919050565b600061271b826126b0565b61272581856126bb565b93506127358185602086016126cc565b61273e816126ff565b840191505092915050565b600060208201905081810360008301526127638184612710565b905092915050565b6127748161267c565b811461277f57600080fd5b50565b6000813590506127918161276b565b92915050565b6000602082840312156127ad576127ac6125b7565b5b60006127bb84828501612782565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127ef826127c4565b9050919050565b6127ff816127e4565b82525050565b600060208201905061281a60008301846127f6565b92915050565b612829816127e4565b811461283457600080fd5b50565b60008135905061284681612820565b92915050565b60008060408385031215612863576128626125b7565b5b600061287185828601612837565b925050602061288285828601612782565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128ce826126ff565b810181811067ffffffffffffffff821117156128ed576128ec612896565b5b80604052505050565b60006129006125ad565b905061290c82826128c5565b919050565b600067ffffffffffffffff82111561292c5761292b612896565b5b612935826126ff565b9050602081019050919050565b82818337600083830152505050565b600061296461295f84612911565b6128f6565b9050828152602081018484840111156129805761297f612891565b5b61298b848285612942565b509392505050565b600082601f8301126129a8576129a761288c565b5b81356129b8848260208601612951565b91505092915050565b6000602082840312156129d7576129d66125b7565b5b600082013567ffffffffffffffff8111156129f5576129f46125bc565b5b612a0184828501612993565b91505092915050565b612a1381612646565b8114612a1e57600080fd5b50565b600081359050612a3081612a0a565b92915050565b600060208284031215612a4c57612a4b6125b7565b5b6000612a5a84828501612a21565b91505092915050565b600080600060608486031215612a7c57612a7b6125b7565b5b6000612a8a86828701612837565b9350506020612a9b86828701612837565b9250506040612aac86828701612782565b9150509250925092565b600060208284031215612acc57612acb6125b7565b5b6000612ada84828501612837565b91505092915050565b60008060408385031215612afa57612af96125b7565b5b6000612b0885828601612837565b9250506020612b1985828601612a21565b9150509250929050565b600067ffffffffffffffff821115612b3e57612b3d612896565b5b612b47826126ff565b9050602081019050919050565b6000612b67612b6284612b23565b6128f6565b905082815260208101848484011115612b8357612b82612891565b5b612b8e848285612942565b509392505050565b600082601f830112612bab57612baa61288c565b5b8135612bbb848260208601612b54565b91505092915050565b60008060008060808587031215612bde57612bdd6125b7565b5b6000612bec87828801612837565b9450506020612bfd87828801612837565b9350506040612c0e87828801612782565b925050606085013567ffffffffffffffff811115612c2f57612c2e6125bc565b5b612c3b87828801612b96565b91505092959194509250565b60008060408385031215612c5e57612c5d6125b7565b5b6000612c6c85828601612837565b9250506020612c7d85828601612837565b9150509250929050565b60008060408385031215612c9e57612c9d6125b7565b5b6000612cac85828601612782565b9250506020612cbd85828601612837565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d0e57607f821691505b602082108103612d2157612d20612cc7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d4c565b612d938683612d4c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612dd0612dcb612dc68461267c565b612dab565b61267c565b9050919050565b6000819050919050565b612dea83612db5565b612dfe612df682612dd7565b848454612d59565b825550505050565b600090565b612e13612e06565b612e1e818484612de1565b505050565b5b81811015612e4257612e37600082612e0b565b600181019050612e24565b5050565b601f821115612e8757612e5881612d27565b612e6184612d3c565b81016020851015612e70578190505b612e84612e7c85612d3c565b830182612e23565b50505b505050565b600082821c905092915050565b6000612eaa60001984600802612e8c565b1980831691505092915050565b6000612ec38383612e99565b9150826002028217905092915050565b612edc826126b0565b67ffffffffffffffff811115612ef557612ef4612896565b5b612eff8254612cf6565b612f0a828285612e46565b600060209050601f831160018114612f3d5760008415612f2b578287015190505b612f358582612eb7565b865550612f9d565b601f198416612f4b86612d27565b60005b82811015612f7357848901518255600182019150602085019450602081019050612f4e565b86831015612f905784890151612f8c601f891682612e99565b8355505b6001600288020188555050505b505050505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612fdb601f836126bb565b9150612fe682612fa5565b602082019050919050565b6000602082019050818103600083015261300a81612fce565b9050919050565b600081905092915050565b50565b600061302c600083613011565b91506130378261301c565b600082019050919050565b600061304d8261301f565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061308d6014836126bb565b915061309882613057565b602082019050919050565b600060208201905081810360008301526130bc81613080565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130fd8261267c565b91506131088361267c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561313d5761313c6130c3565b5b828201905092915050565b7f4f6e6c792074776f20616c6c6f776564207065722077616c6c65742100000000600082015250565b600061317e601c836126bb565b915061318982613148565b602082019050919050565b600060208201905081810360008301526131ad81613171565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006131ea6014836126bb565b91506131f5826131b4565b602082019050919050565b60006020820190508181036000830152613219816131dd565b9050919050565b600061322b8261267c565b91506132368361267c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561326f5761326e6130c3565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006132b06013836126bb565b91506132bb8261327a565b602082019050919050565b600060208201905081810360008301526132df816132a3565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061331c6017836126bb565b9150613327826132e6565b602082019050919050565b6000602082019050818103600083015261334b8161330f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133ae602f836126bb565b91506133b982613352565b604082019050919050565b600060208201905081810360008301526133dd816133a1565b9050919050565b600081905092915050565b60006133fa826126b0565b61340481856133e4565b93506134148185602086016126cc565b80840191505092915050565b6000815461342d81612cf6565b61343781866133e4565b9450600182166000811461345257600181146134675761349a565b60ff198316865281151582028601935061349a565b61347085612d27565b60005b8381101561349257815481890152600182019150602081019050613473565b838801955050505b50505092915050565b60006134af82866133ef565b91506134bb82856133ef565b91506134c78284613420565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135306026836126bb565b915061353b826134d4565b604082019050919050565b6000602082019050818103600083015261355f81613523565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061359c6020836126bb565b91506135a782613566565b602082019050919050565b600060208201905081810360008301526135cb8161358f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135f9826135d2565b61360381856135dd565b93506136138185602086016126cc565b61361c816126ff565b840191505092915050565b600060808201905061363c60008301876127f6565b61364960208301866127f6565b6136566040830185612686565b818103606083015261366881846135ee565b905095945050505050565b600081519050613682816125ed565b92915050565b60006020828403121561369e5761369d6125b7565b5b60006136ac84828501613673565b91505092915050565b60006136c08261267c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136f2576136f16130c3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006137378261267c565b91506137428361267c565b925082613752576137516136fd565b5b828204905092915050565b60006137688261267c565b91506137738361267c565b925082821015613786576137856130c3565b5b828203905092915050565b600061379c8261267c565b91506137a78361267c565b9250826137b7576137b66136fd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfe697066733a2f2f6261667962656962773266766e74326869717635617733637a6e736975756b6c356564347a62336e74626577746a6777346477756437766f3469342fa26469706673582212208207f0419600834cf5cc65cadb7513d87ca48340c81b5da51d493948efbde48664736f6c634300080f0033697066733a2f2f6261667962656962773266766e74326869717635617733637a6e736975756b6c356564347a62336e74626577746a6777346477756437766f3469342f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a576541726542756c6c730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025742000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003b6261667962656962773266766e74326869717635617733637a6e736975756b6c356564347a62336e74626577746a6777346477756437766f3469340000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063715018a61161012e578063b071401b116100ab578063e985e9c51161006f578063e985e9c514610808578063efbd73f414610845578063f2fde38b1461086e578063f63c533c14610897578063f676308a146108c257610230565b8063b071401b14610713578063b88d4fde1461073c578063c87b56dd14610765578063e0a80853146107a2578063e0ec7c36146107cb57610230565b806395d89b41116100f257806395d89b411461064d5780639dbc61fa14610678578063a0712d68146106a3578063a22cb465146106bf578063a45ba8e7146106e857610230565b8063715018a61461058c578063758b4e86146105a35780637ec4a659146105ce5780638da5cb5b146105f757806394354fd01461062257610230565b80633ccfd60b116101bc5780635503a0e8116101805780635503a0e8146104915780635c975abb146104bc57806362b99ad4146104e75780636352211e1461051257806370a082311461054f57610230565b80633ccfd60b146103d457806342842e0e146103eb57806344a0d68a146104145780634fdd43cb1461043d578063518302271461046657610230565b8063095ea7b311610203578063095ea7b31461030557806316ba10e01461032e57806316c38b3c1461035757806318160ddd1461038057806323b872dd146103ab57610230565b806301ffc9a71461023557806304cb229e1461027257806306fdde031461029d578063081812fc146102c8575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612619565b6108eb565b6040516102699190612661565b60405180910390f35b34801561027e57600080fd5b5061028761097d565b6040516102949190612695565b60405180910390f35b3480156102a957600080fd5b506102b2610983565b6040516102bf9190612749565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190612797565b610a15565b6040516102fc9190612805565b60405180910390f35b34801561031157600080fd5b5061032c6004803603810190610327919061284c565b610a94565b005b34801561033a57600080fd5b50610355600480360381019061035091906129c1565b610bd8565b005b34801561036357600080fd5b5061037e60048036038101906103799190612a36565b610bf3565b005b34801561038c57600080fd5b50610395610c18565b6040516103a29190612695565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd9190612a63565b610c2f565b005b3480156103e057600080fd5b506103e9610f51565b005b3480156103f757600080fd5b50610412600480360381019061040d9190612a63565b61102e565b005b34801561042057600080fd5b5061043b60048036038101906104369190612797565b61104e565b005b34801561044957600080fd5b50610464600480360381019061045f91906129c1565b611060565b005b34801561047257600080fd5b5061047b61107b565b6040516104889190612661565b60405180910390f35b34801561049d57600080fd5b506104a661108e565b6040516104b39190612749565b60405180910390f35b3480156104c857600080fd5b506104d161111c565b6040516104de9190612661565b60405180910390f35b3480156104f357600080fd5b506104fc61112f565b6040516105099190612749565b60405180910390f35b34801561051e57600080fd5b5061053960048036038101906105349190612797565b6111bd565b6040516105469190612805565b60405180910390f35b34801561055b57600080fd5b5061057660048036038101906105719190612ab6565b6111cf565b6040516105839190612695565b60405180910390f35b34801561059857600080fd5b506105a1611287565b005b3480156105af57600080fd5b506105b861129b565b6040516105c59190612695565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f091906129c1565b6112a1565b005b34801561060357600080fd5b5061060c6112bc565b6040516106199190612805565b60405180910390f35b34801561062e57600080fd5b506106376112e6565b6040516106449190612695565b60405180910390f35b34801561065957600080fd5b506106626112ec565b60405161066f9190612749565b60405180910390f35b34801561068457600080fd5b5061068d61137e565b60405161069a9190612695565b60405180910390f35b6106bd60048036038101906106b89190612797565b611384565b005b3480156106cb57600080fd5b506106e660048036038101906106e19190612ae3565b611610565b005b3480156106f457600080fd5b506106fd611787565b60405161070a9190612749565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190612797565b611815565b005b34801561074857600080fd5b50610763600480360381019061075e9190612bc4565b611827565b005b34801561077157600080fd5b5061078c60048036038101906107879190612797565b61189a565b6040516107999190612749565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190612a36565b6119fb565b005b3480156107d757600080fd5b506107f260048036038101906107ed9190612ab6565b611a20565b6040516107ff9190612661565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a9190612c47565b611a40565b60405161083c9190612661565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190612c87565b611ad4565b005b34801561087a57600080fd5b5061089560048036038101906108909190612ab6565b611bf3565b005b3480156108a357600080fd5b506108ac611c76565b6040516108b99190612695565b60405180910390f35b3480156108ce57600080fd5b506108e960048036038101906108e49190612797565b611c7c565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109765750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600f5481565b60606002805461099290612cf6565b80601f01602080910402602001604051908101604052809291908181526020018280546109be90612cf6565b8015610a0b5780601f106109e057610100808354040283529160200191610a0b565b820191906000526020600020905b8154815290600101906020018083116109ee57829003601f168201915b5050505050905090565b6000610a2082611c8e565b610a56576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9f826111bd565b90508073ffffffffffffffffffffffffffffffffffffffff16610ac0611ced565b73ffffffffffffffffffffffffffffffffffffffff1614610b2357610aec81610ae7611ced565b611a40565b610b22576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610be0611cf5565b80600b9081610bef9190612ed3565b5050565b610bfb611cf5565b80601260006101000a81548160ff02191690831515021790555050565b6000610c22611d73565b6001546000540303905090565b6000610c3a82611d78565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ca1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610cad84611e44565b91509150610cc38187610cbe611ced565b611e6b565b610d0f57610cd886610cd3611ced565b611a40565b610d0e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d75576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d828686866001611eaf565b8015610d8d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5b85610e37888887611eb5565b7c020000000000000000000000000000000000000000000000000000000017611edd565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ee15760006001850190506000600460008381526020019081526020016000205403610edf576000548114610ede578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f498686866001611f08565b505050505050565b610f59611cf5565b600260095403610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590612ff1565b60405180910390fd5b60026009819055506000610fb06112bc565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fd390613042565b60006040518083038185875af1925050503d8060008114611010576040519150601f19603f3d011682016040523d82523d6000602084013e611015565b606091505b505090508061102357600080fd5b506001600981905550565b61104983838360405180602001604052806000815250611827565b505050565b611056611cf5565b80600d8190555050565b611068611cf5565b80600c90816110779190612ed3565b5050565b601260019054906101000a900460ff1681565b600b805461109b90612cf6565b80601f01602080910402602001604051908101604052809291908181526020018280546110c790612cf6565b80156111145780601f106110e957610100808354040283529160200191611114565b820191906000526020600020905b8154815290600101906020018083116110f757829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600a805461113c90612cf6565b80601f016020809104026020016040519081016040528092919081815260200182805461116890612cf6565b80156111b55780601f1061118a576101008083540402835291602001916111b5565b820191906000526020600020905b81548152906001019060200180831161119857829003601f168201915b505050505081565b60006111c882611d78565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611236576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61128f611cf5565b6112996000611f0e565b565b600e5481565b6112a9611cf5565b80600a90816112b89190612ed3565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546112fb90612cf6565b80601f016020809104026020016040519081016040528092919081815260200182805461132790612cf6565b80156113745780601f1061134957610100808354040283529160200191611374565b820191906000526020600020905b81548152906001019060200180831161135757829003601f168201915b5050505050905090565b60105481565b8060008111801561139757506011548111155b6113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd906130a3565b60405180910390fd5b6010546113e96113e4611fd4565b6111cf565b826113f491906130f2565b1115611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c90613194565b60405180910390fd5b600e5481611441610c18565b61144b91906130f2565b111561148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148390613200565b60405180910390fd5b8160136000611499611fd4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114f55750600f546114f2610c18565b10155b1561154b5780600d546115089190613220565b34101561154a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611541906132c6565b60405180910390fd5b5b601260009054906101000a900460ff161561159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290613332565b60405180910390fd5b6001601360006115a9611fd4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061160b611605611fd4565b84611fdc565b505050565b611618611ced565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361167c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611689611ced565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611736611ced565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161177b9190612661565b60405180910390a35050565b600c805461179490612cf6565b80601f01602080910402602001604051908101604052809291908181526020018280546117c090612cf6565b801561180d5780601f106117e25761010080835404028352916020019161180d565b820191906000526020600020905b8154815290600101906020018083116117f057829003601f168201915b505050505081565b61181d611cf5565b8060118190555050565b611832848484610c2f565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118945761185d84848484611ffa565b611893576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606118a582611c8e565b6118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db906133c4565b60405180910390fd5b60001515601260019054906101000a900460ff1615150361199157600c805461190c90612cf6565b80601f016020809104026020016040519081016040528092919081815260200182805461193890612cf6565b80156119855780601f1061195a57610100808354040283529160200191611985565b820191906000526020600020905b81548152906001019060200180831161196857829003601f168201915b505050505090506119f6565b600061199b61214a565b905060008151116119c4576040518060800160405280604381526020016137f2604391396119f2565b806119ce846121dc565b600b6040516020016119e2939291906134a3565b6040516020818303038152906040525b9150505b919050565b611a03611cf5565b80601260016101000a81548160ff02191690831515021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611ae757506011548111155b611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d906130a3565b60405180910390fd5b601054611b39611b34611fd4565b6111cf565b82611b4491906130f2565b1115611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90613194565b60405180910390fd5b600e5481611b91610c18565b611b9b91906130f2565b1115611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd390613200565b60405180910390fd5b611be4611cf5565b611bee8284611fdc565b505050565b611bfb611cf5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6190613546565b60405180910390fd5b611c7381611f0e565b50565b600d5481565b611c84611cf5565b80600f8190555050565b600081611c99611d73565b11158015611ca8575060005482105b8015611ce6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611cfd611fd4565b73ffffffffffffffffffffffffffffffffffffffff16611d1b6112bc565b73ffffffffffffffffffffffffffffffffffffffff1614611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d68906135b2565b60405180910390fd5b565b600090565b60008082905080611d87611d73565b11611e0d57600054811015611e0c5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e0a575b60008103611e00576004600083600190039350838152602001908152602001600020549050611dd6565b8092505050611e3f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ecc86868461233c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611ff6828260405180602001604052806000815250612345565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612020611ced565b8786866040518563ffffffff1660e01b81526004016120429493929190613627565b6020604051808303816000875af192505050801561207e57506040513d601f19601f8201168201806040525081019061207b9190613688565b60015b6120f7573d80600081146120ae576040519150601f19603f3d011682016040523d82523d6000602084013e6120b3565b606091505b5060008151036120ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461215990612cf6565b80601f016020809104026020016040519081016040528092919081815260200182805461218590612cf6565b80156121d25780601f106121a7576101008083540402835291602001916121d2565b820191906000526020600020905b8154815290600101906020018083116121b557829003601f168201915b5050505050905090565b606060008203612223576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612337565b600082905060005b6000821461225557808061223e906136b5565b915050600a8261224e919061372c565b915061222b565b60008167ffffffffffffffff81111561227157612270612896565b5b6040519080825280601f01601f1916602001820160405280156122a35781602001600182028036833780820191505090505b5090505b60008514612330576001826122bc919061375d565b9150600a856122cb9190613791565b60306122d791906130f2565b60f81b8183815181106122ed576122ec6137c2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612329919061372c565b94506122a7565b8093505050505b919050565b60009392505050565b61234f83836123e2565b60008373ffffffffffffffffffffffffffffffffffffffff163b146123dd57600080549050600083820390505b61238f6000868380600101945086611ffa565b6123c5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061237c5781600054146123da57600080fd5b50505b505050565b60008054905060008203612422576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61242f6000848385611eaf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506124a6836124976000866000611eb5565b6124a08561259d565b17611edd565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461254757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061250c565b5060008203612582576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125986000848385611f08565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125f6816125c1565b811461260157600080fd5b50565b600081359050612613816125ed565b92915050565b60006020828403121561262f5761262e6125b7565b5b600061263d84828501612604565b91505092915050565b60008115159050919050565b61265b81612646565b82525050565b60006020820190506126766000830184612652565b92915050565b6000819050919050565b61268f8161267c565b82525050565b60006020820190506126aa6000830184612686565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126ea5780820151818401526020810190506126cf565b838111156126f9576000848401525b50505050565b6000601f19601f8301169050919050565b600061271b826126b0565b61272581856126bb565b93506127358185602086016126cc565b61273e816126ff565b840191505092915050565b600060208201905081810360008301526127638184612710565b905092915050565b6127748161267c565b811461277f57600080fd5b50565b6000813590506127918161276b565b92915050565b6000602082840312156127ad576127ac6125b7565b5b60006127bb84828501612782565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127ef826127c4565b9050919050565b6127ff816127e4565b82525050565b600060208201905061281a60008301846127f6565b92915050565b612829816127e4565b811461283457600080fd5b50565b60008135905061284681612820565b92915050565b60008060408385031215612863576128626125b7565b5b600061287185828601612837565b925050602061288285828601612782565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128ce826126ff565b810181811067ffffffffffffffff821117156128ed576128ec612896565b5b80604052505050565b60006129006125ad565b905061290c82826128c5565b919050565b600067ffffffffffffffff82111561292c5761292b612896565b5b612935826126ff565b9050602081019050919050565b82818337600083830152505050565b600061296461295f84612911565b6128f6565b9050828152602081018484840111156129805761297f612891565b5b61298b848285612942565b509392505050565b600082601f8301126129a8576129a761288c565b5b81356129b8848260208601612951565b91505092915050565b6000602082840312156129d7576129d66125b7565b5b600082013567ffffffffffffffff8111156129f5576129f46125bc565b5b612a0184828501612993565b91505092915050565b612a1381612646565b8114612a1e57600080fd5b50565b600081359050612a3081612a0a565b92915050565b600060208284031215612a4c57612a4b6125b7565b5b6000612a5a84828501612a21565b91505092915050565b600080600060608486031215612a7c57612a7b6125b7565b5b6000612a8a86828701612837565b9350506020612a9b86828701612837565b9250506040612aac86828701612782565b9150509250925092565b600060208284031215612acc57612acb6125b7565b5b6000612ada84828501612837565b91505092915050565b60008060408385031215612afa57612af96125b7565b5b6000612b0885828601612837565b9250506020612b1985828601612a21565b9150509250929050565b600067ffffffffffffffff821115612b3e57612b3d612896565b5b612b47826126ff565b9050602081019050919050565b6000612b67612b6284612b23565b6128f6565b905082815260208101848484011115612b8357612b82612891565b5b612b8e848285612942565b509392505050565b600082601f830112612bab57612baa61288c565b5b8135612bbb848260208601612b54565b91505092915050565b60008060008060808587031215612bde57612bdd6125b7565b5b6000612bec87828801612837565b9450506020612bfd87828801612837565b9350506040612c0e87828801612782565b925050606085013567ffffffffffffffff811115612c2f57612c2e6125bc565b5b612c3b87828801612b96565b91505092959194509250565b60008060408385031215612c5e57612c5d6125b7565b5b6000612c6c85828601612837565b9250506020612c7d85828601612837565b9150509250929050565b60008060408385031215612c9e57612c9d6125b7565b5b6000612cac85828601612782565b9250506020612cbd85828601612837565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d0e57607f821691505b602082108103612d2157612d20612cc7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d4c565b612d938683612d4c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612dd0612dcb612dc68461267c565b612dab565b61267c565b9050919050565b6000819050919050565b612dea83612db5565b612dfe612df682612dd7565b848454612d59565b825550505050565b600090565b612e13612e06565b612e1e818484612de1565b505050565b5b81811015612e4257612e37600082612e0b565b600181019050612e24565b5050565b601f821115612e8757612e5881612d27565b612e6184612d3c565b81016020851015612e70578190505b612e84612e7c85612d3c565b830182612e23565b50505b505050565b600082821c905092915050565b6000612eaa60001984600802612e8c565b1980831691505092915050565b6000612ec38383612e99565b9150826002028217905092915050565b612edc826126b0565b67ffffffffffffffff811115612ef557612ef4612896565b5b612eff8254612cf6565b612f0a828285612e46565b600060209050601f831160018114612f3d5760008415612f2b578287015190505b612f358582612eb7565b865550612f9d565b601f198416612f4b86612d27565b60005b82811015612f7357848901518255600182019150602085019450602081019050612f4e565b86831015612f905784890151612f8c601f891682612e99565b8355505b6001600288020188555050505b505050505050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612fdb601f836126bb565b9150612fe682612fa5565b602082019050919050565b6000602082019050818103600083015261300a81612fce565b9050919050565b600081905092915050565b50565b600061302c600083613011565b91506130378261301c565b600082019050919050565b600061304d8261301f565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061308d6014836126bb565b915061309882613057565b602082019050919050565b600060208201905081810360008301526130bc81613080565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130fd8261267c565b91506131088361267c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561313d5761313c6130c3565b5b828201905092915050565b7f4f6e6c792074776f20616c6c6f776564207065722077616c6c65742100000000600082015250565b600061317e601c836126bb565b915061318982613148565b602082019050919050565b600060208201905081810360008301526131ad81613171565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006131ea6014836126bb565b91506131f5826131b4565b602082019050919050565b60006020820190508181036000830152613219816131dd565b9050919050565b600061322b8261267c565b91506132368361267c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561326f5761326e6130c3565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006132b06013836126bb565b91506132bb8261327a565b602082019050919050565b600060208201905081810360008301526132df816132a3565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061331c6017836126bb565b9150613327826132e6565b602082019050919050565b6000602082019050818103600083015261334b8161330f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006133ae602f836126bb565b91506133b982613352565b604082019050919050565b600060208201905081810360008301526133dd816133a1565b9050919050565b600081905092915050565b60006133fa826126b0565b61340481856133e4565b93506134148185602086016126cc565b80840191505092915050565b6000815461342d81612cf6565b61343781866133e4565b9450600182166000811461345257600181146134675761349a565b60ff198316865281151582028601935061349a565b61347085612d27565b60005b8381101561349257815481890152600182019150602081019050613473565b838801955050505b50505092915050565b60006134af82866133ef565b91506134bb82856133ef565b91506134c78284613420565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135306026836126bb565b915061353b826134d4565b604082019050919050565b6000602082019050818103600083015261355f81613523565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061359c6020836126bb565b91506135a782613566565b602082019050919050565b600060208201905081810360008301526135cb8161358f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006135f9826135d2565b61360381856135dd565b93506136138185602086016126cc565b61361c816126ff565b840191505092915050565b600060808201905061363c60008301876127f6565b61364960208301866127f6565b6136566040830185612686565b818103606083015261366881846135ee565b905095945050505050565b600081519050613682816125ed565b92915050565b60006020828403121561369e5761369d6125b7565b5b60006136ac84828501613673565b91505092915050565b60006136c08261267c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136f2576136f16130c3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006137378261267c565b91506137428361267c565b925082613752576137516136fd565b5b828204905092915050565b60006137688261267c565b91506137738361267c565b925082821015613786576137856130c3565b5b828203905092915050565b600061379c8261267c565b91506137a78361267c565b9250826137b7576137b66136fd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfe697066733a2f2f6261667962656962773266766e74326869717635617733637a6e736975756b6c356564347a62336e74626577746a6777346477756437766f3469342fa26469706673582212208207f0419600834cf5cc65cadb7513d87ca48340c81b5da51d493948efbde48664736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a576541726542756c6c730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025742000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003b6261667962656962773266766e74326869717635617733637a6e736975756b6c356564347a62336e74626577746a6777346477756437766f3469340000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): WeAreBulls
Arg [1] : _tokenSymbol (string): WB
Arg [2] : _hiddenMetadataUri (string): bafybeibw2fvnt2hiqv5aw3cznsiuukl5ed4zb3ntbewtjgw4dwud7vo4i4

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 576541726542756c6c7300000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 5742000000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000003b
Arg [8] : 6261667962656962773266766e74326869717635617733637a6e736975756b6c
Arg [9] : 356564347a62336e74626577746a6777346477756437766f3469340000000000


Deployed Bytecode Sourcemap

59784:3687:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27319:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60123:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28221:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34704:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34145:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62957:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63063:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23972:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38411:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63308:150;;;;;;;;;;;;;:::i;:::-;;41324:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62503:71;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62713:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60262:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59977:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60232:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59877:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29614:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25156:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8067:103;;;;;;;;;;;;;:::i;:::-;;60090:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62851:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7419:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60191:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28397:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60157:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61238:254;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35262:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60015:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62580:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42107:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61833:509;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62416:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60296:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35727:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61500:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8325:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60055:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63146:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27319:639;27404:4;27743:10;27728:25;;:11;:25;;;;:102;;;;27820:10;27805:25;;:11;:25;;;;27728:102;:179;;;;27897:10;27882:25;;:11;:25;;;;27728:179;27708:199;;27319:639;;;:::o;60123:29::-;;;;:::o;28221:100::-;28275:13;28308:5;28301:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28221:100;:::o;34704:218::-;34780:7;34805:16;34813:7;34805;:16::i;:::-;34800:64;;34830:34;;;;;;;;;;;;;;34800:64;34884:15;:24;34900:7;34884:24;;;;;;;;;;;:30;;;;;;;;;;;;34877:37;;34704:218;;;:::o;34145:400::-;34226:13;34242:16;34250:7;34242;:16::i;:::-;34226:32;;34298:5;34275:28;;:19;:17;:19::i;:::-;:28;;;34271:175;;34323:44;34340:5;34347:19;:17;:19::i;:::-;34323:16;:44::i;:::-;34318:128;;34395:35;;;;;;;;;;;;;;34318:128;34271:175;34491:2;34458:15;:24;34474:7;34458:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34529:7;34525:2;34509:28;;34518:5;34509:28;;;;;;;;;;;;34215:330;34145:400;;:::o;62957:100::-;7305:13;:11;:13::i;:::-;63041:10:::1;63029:9;:22;;;;;;:::i;:::-;;62957:100:::0;:::o;63063:77::-;7305:13;:11;:13::i;:::-;63128:6:::1;63119;;:15;;;;;;;;;;;;;;;;;;63063:77:::0;:::o;23972:323::-;24033:7;24261:15;:13;:15::i;:::-;24246:12;;24230:13;;:28;:46;24223:53;;23972:323;:::o;38411:2817::-;38545:27;38575;38594:7;38575:18;:27::i;:::-;38545:57;;38660:4;38619:45;;38635:19;38619:45;;;38615:86;;38673:28;;;;;;;;;;;;;;38615:86;38715:27;38744:23;38771:35;38798:7;38771:26;:35::i;:::-;38714:92;;;;38906:68;38931:15;38948:4;38954:19;:17;:19::i;:::-;38906:24;:68::i;:::-;38901:180;;38994:43;39011:4;39017:19;:17;:19::i;:::-;38994:16;:43::i;:::-;38989:92;;39046:35;;;;;;;;;;;;;;38989:92;38901:180;39112:1;39098:16;;:2;:16;;;39094:52;;39123:23;;;;;;;;;;;;;;39094:52;39159:43;39181:4;39187:2;39191:7;39200:1;39159:21;:43::i;:::-;39295:15;39292:160;;;39435:1;39414:19;39407:30;39292:160;39832:18;:24;39851:4;39832:24;;;;;;;;;;;;;;;;39830:26;;;;;;;;;;;;39901:18;:22;39920:2;39901:22;;;;;;;;;;;;;;;;39899:24;;;;;;;;;;;40223:146;40260:2;40309:45;40324:4;40330:2;40334:19;40309:14;:45::i;:::-;20371:8;40281:73;40223:18;:146::i;:::-;40194:17;:26;40212:7;40194:26;;;;;;;;;;;:175;;;;40540:1;20371:8;40489:19;:47;:52;40485:627;;40562:19;40594:1;40584:7;:11;40562:33;;40751:1;40717:17;:30;40735:11;40717:30;;;;;;;;;;;;:35;40713:384;;40855:13;;40840:11;:28;40836:242;;41035:19;41002:17;:30;41020:11;41002:30;;;;;;;;;;;:52;;;;40836:242;40713:384;40543:569;40485:627;41159:7;41155:2;41140:27;;41149:4;41140:27;;;;;;;;;;;;41178:42;41199:4;41205:2;41209:7;41218:1;41178:20;:42::i;:::-;38534:2694;;;38411:2817;;;:::o;63308:150::-;7305:13;:11;:13::i;:::-;1847:1:::1;2445:7;;:19:::0;2437:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1847:1;2578:7;:18;;;;63366:7:::2;63387;:5;:7::i;:::-;63379:21;;63408;63379:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63365:69;;;63449:2;63441:11;;;::::0;::::2;;63358:100;1803:1:::1;2757:7;:22;;;;63308:150::o:0;41324:185::-;41462:39;41479:4;41485:2;41489:7;41462:39;;;;;;;;;;;;:16;:39::i;:::-;41324:185;;;:::o;62503:71::-;7305:13;:11;:13::i;:::-;62563:5:::1;62556:4;:12;;;;62503:71:::0;:::o;62713:132::-;7305:13;:11;:13::i;:::-;62821:18:::1;62801:17;:38;;;;;;:::i;:::-;;62713:132:::0;:::o;60262:27::-;;;;;;;;;;;;;:::o;59977:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60232:25::-;;;;;;;;;;;;;:::o;59877:95::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29614:152::-;29686:7;29729:27;29748:7;29729:18;:27::i;:::-;29706:52;;29614:152;;;:::o;25156:233::-;25228:7;25269:1;25252:19;;:5;:19;;;25248:60;;25280:28;;;;;;;;;;;;;;25248:60;19315:13;25326:18;:25;25345:5;25326:25;;;;;;;;;;;;;;;;:55;25319:62;;25156:233;;;:::o;8067:103::-;7305:13;:11;:13::i;:::-;8132:30:::1;8159:1;8132:18;:30::i;:::-;8067:103::o:0;60090:28::-;;;;:::o;62851:100::-;7305:13;:11;:13::i;:::-;62935:10:::1;62923:9;:22;;;;;;:::i;:::-;;62851:100:::0;:::o;7419:87::-;7465:7;7492:6;;;;;;;;;;;7485:13;;7419:87;:::o;60191:34::-;;;;:::o;28397:104::-;28453:13;28486:7;28479:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28397:104;:::o;60157:29::-;;;;:::o;61238:254::-;61300:11;60692:1;60678:11;:15;:52;;;;;60712:18;;60697:11;:33;;60678:52;60670:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;60811:12;;60784:23;60794:12;:10;:12::i;:::-;60784:9;:23::i;:::-;60770:11;:37;;;;:::i;:::-;:53;;60762:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;60902:9;;60887:11;60871:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;60863:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;61333:11:::1;61014:15;:29;61030:12;:10;:12::i;:::-;61014:29;;;;;;;;;;;;;;;;;;;;;;;;;:60;;;;61064:10;;61047:13;:11;:13::i;:::-;:27;;61014:60;61010:146;;;61113:11;61106:4;;:18;;;;:::i;:::-;61093:9;:31;;61085:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;61010:146;61362:6:::2;;;;;;;;;;;61361:7;61353:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;61435:4;61403:15;:29;61419:12;:10;:12::i;:::-;61403:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;61448;61458:12;:10;:12::i;:::-;61472:11;61448:9;:36::i;:::-;60943:1:::1;61238:254:::0;;:::o;35262:308::-;35373:19;:17;:19::i;:::-;35361:31;;:8;:31;;;35357:61;;35401:17;;;;;;;;;;;;;;35357:61;35483:8;35431:18;:39;35450:19;:17;:19::i;:::-;35431:39;;;;;;;;;;;;;;;:49;35471:8;35431:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35543:8;35507:55;;35522:19;:17;:19::i;:::-;35507:55;;;35553:8;35507:55;;;;;;:::i;:::-;;;;;;;;35262:308;;:::o;60015:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62580:127::-;7305:13;:11;:13::i;:::-;62682:19:::1;62661:18;:40;;;;62580:127:::0;:::o;42107:399::-;42274:31;42287:4;42293:2;42297:7;42274:12;:31::i;:::-;42338:1;42320:2;:14;;;:19;42316:183;;42359:56;42390:4;42396:2;42400:7;42409:5;42359:30;:56::i;:::-;42354:145;;42443:40;;;;;;;;;;;;;;42354:145;42316:183;42107:399;;;;:::o;61833:509::-;61904:13;61934:17;61942:8;61934:7;:17::i;:::-;61926:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;62028:5;62016:17;;:8;;;;;;;;;;;:17;;;62012:64;;62051:17;62044:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62012:64;62084:28;62115:10;:8;:10::i;:::-;62084:41;;62170:1;62145:14;62139:28;:32;:197;;;;;;;;;;;;;;;;;;;;;;62207:14;62223:19;:8;:17;:19::i;:::-;62244:9;62190:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62139:197;62132:204;;;61833:509;;;;:::o;62416:81::-;7305:13;:11;:13::i;:::-;62485:6:::1;62474:8;;:17;;;;;;;;;;;;;;;;;;62416:81:::0;:::o;60296:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;35727:164::-;35824:4;35848:18;:25;35867:5;35848:25;;;;;;;;;;;;;;;:35;35874:8;35848:35;;;;;;;;;;;;;;;;;;;;;;;;;35841:42;;35727:164;;;;:::o;61500:152::-;61583:11;60692:1;60678:11;:15;:52;;;;;60712:18;;60697:11;:33;;60678:52;60670:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;60811:12;;60784:23;60794:12;:10;:12::i;:::-;60784:9;:23::i;:::-;60770:11;:37;;;;:::i;:::-;:53;;60762:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;60902:9;;60887:11;60871:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;60863:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7305:13:::1;:11;:13::i;:::-;61613:33:::2;61623:9;61634:11;61613:9;:33::i;:::-;61500:152:::0;;;:::o;8325:201::-;7305:13;:11;:13::i;:::-;8434:1:::1;8414:22;;:8;:22;;::::0;8406:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8490:28;8509:8;8490:18;:28::i;:::-;8325:201:::0;:::o;60055:30::-;;;;:::o;63146:89::-;7305:13;:11;:13::i;:::-;63221:8:::1;63208:10;:21;;;;63146:89:::0;:::o;36149:282::-;36214:4;36270:7;36251:15;:13;:15::i;:::-;:26;;:66;;;;;36304:13;;36294:7;:23;36251:66;:153;;;;;36403:1;20091:8;36355:17;:26;36373:7;36355:26;;;;;;;;;;;;:44;:49;36251:153;36231:173;;36149:282;;;:::o;57915:105::-;57975:7;58002:10;57995:17;;57915:105;:::o;7584:132::-;7659:12;:10;:12::i;:::-;7648:23;;:7;:5;:7::i;:::-;:23;;;7640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7584:132::o;23488:92::-;23544:7;23488:92;:::o;30769:1275::-;30836:7;30856:12;30871:7;30856:22;;30939:4;30920:15;:13;:15::i;:::-;:23;30916:1061;;30973:13;;30966:4;:20;30962:1015;;;31011:14;31028:17;:23;31046:4;31028:23;;;;;;;;;;;;31011:40;;31145:1;20091:8;31117:6;:24;:29;31113:845;;31782:113;31799:1;31789:6;:11;31782:113;;31842:17;:25;31860:6;;;;;;;31842:25;;;;;;;;;;;;31833:34;;31782:113;;;31928:6;31921:13;;;;;;31113:845;30988:989;30962:1015;30916:1061;32005:31;;;;;;;;;;;;;;30769:1275;;;;:::o;37312:479::-;37414:27;37443:23;37484:38;37525:15;:24;37541:7;37525:24;;;;;;;;;;;37484:65;;37696:18;37673:41;;37753:19;37747:26;37728:45;;37658:126;37312:479;;;:::o;36540:659::-;36689:11;36854:16;36847:5;36843:28;36834:37;;37014:16;37003:9;36999:32;36986:45;;37164:15;37153:9;37150:30;37142:5;37131:9;37128:20;37125:56;37115:66;;36540:659;;;;;:::o;43168:159::-;;;;;:::o;57224:311::-;57359:7;57379:16;20495:3;57405:19;:41;;57379:68;;20495:3;57473:31;57484:4;57490:2;57494:9;57473:10;:31::i;:::-;57465:40;;:62;;57458:69;;;57224:311;;;;;:::o;32592:450::-;32672:14;32840:16;32833:5;32829:28;32820:37;;33017:5;33003:11;32978:23;32974:41;32971:52;32964:5;32961:63;32951:73;;32592:450;;;;:::o;43992:158::-;;;;;:::o;8686:191::-;8760:16;8779:6;;;;;;;;;;;8760:25;;8805:8;8796:6;;:17;;;;;;;;;;;;;;;;;;8860:8;8829:40;;8850:8;8829:40;;;;;;;;;;;;8749:128;8686:191;:::o;5970:98::-;6023:7;6050:10;6043:17;;5970:98;:::o;51747:112::-;51824:27;51834:2;51838:8;51824:27;;;;;;;;;;;;:9;:27::i;:::-;51747:112;;:::o;44590:716::-;44753:4;44799:2;44774:45;;;44820:19;:17;:19::i;:::-;44841:4;44847:7;44856:5;44774:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44770:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45074:1;45057:6;:13;:18;45053:235;;45103:40;;;;;;;;;;;;;;45053:235;45246:6;45240:13;45231:6;45227:2;45223:15;45216:38;44770:529;44943:54;;;44933:64;;;:6;:64;;;;44926:71;;;44590:716;;;;;;:::o;61723:104::-;61783:13;61812:9;61805:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61723:104;:::o;3224:723::-;3280:13;3510:1;3501:5;:10;3497:53;;3528:10;;;;;;;;;;;;;;;;;;;;;3497:53;3560:12;3575:5;3560:20;;3591:14;3616:78;3631:1;3623:4;:9;3616:78;;3649:8;;;;;:::i;:::-;;;;3680:2;3672:10;;;;;:::i;:::-;;;3616:78;;;3704:19;3736:6;3726:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3704:39;;3754:154;3770:1;3761:5;:10;3754:154;;3798:1;3788:11;;;;;:::i;:::-;;;3865:2;3857:5;:10;;;;:::i;:::-;3844:2;:24;;;;:::i;:::-;3831:39;;3814:6;3821;3814:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3894:2;3885:11;;;;;:::i;:::-;;;3754:154;;;3932:6;3918:21;;;;;3224:723;;;;:::o;56925:147::-;57062:6;56925:147;;;;;:::o;50974:689::-;51105:19;51111:2;51115:8;51105:5;:19::i;:::-;51184:1;51166:2;:14;;;:19;51162:483;;51206:11;51220:13;;51206:27;;51252:13;51274:8;51268:3;:14;51252:30;;51301:233;51332:62;51371:1;51375:2;51379:7;;;;;;51388:5;51332:30;:62::i;:::-;51327:167;;51430:40;;;;;;;;;;;;;;51327:167;51529:3;51521:5;:11;51301:233;;51616:3;51599:13;;:20;51595:34;;51621:8;;;51595:34;51187:458;;51162:483;50974:689;;;:::o;45768:2454::-;45841:20;45864:13;;45841:36;;45904:1;45892:8;:13;45888:44;;45914:18;;;;;;;;;;;;;;45888:44;45945:61;45975:1;45979:2;45983:12;45997:8;45945:21;:61::i;:::-;46489:1;19453:2;46459:1;:26;;46458:32;46446:8;:45;46420:18;:22;46439:2;46420:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46768:139;46805:2;46859:33;46882:1;46886:2;46890:1;46859:14;:33::i;:::-;46826:30;46847:8;46826:20;:30::i;:::-;:66;46768:18;:139::i;:::-;46734:17;:31;46752:12;46734:31;;;;;;;;;;;:173;;;;46924:16;46955:11;46984:8;46969:12;:23;46955:37;;47239:16;47235:2;47231:25;47219:37;;47611:12;47571:8;47530:1;47468:25;47409:1;47348;47321:335;47736:1;47722:12;47718:20;47676:346;47777:3;47768:7;47765:16;47676:346;;47995:7;47985:8;47982:1;47955:25;47952:1;47949;47944:59;47830:1;47821:7;47817:15;47806:26;;47676:346;;;47680:77;48067:1;48055:8;:13;48051:45;;48077:19;;;;;;;;;;;;;;48051:45;48129:3;48113:13;:19;;;;46194:1950;;48154:60;48183:1;48187:2;48191:12;48205:8;48154:20;:60::i;:::-;45830:2392;45768:2454;;:::o;33144:324::-;33214:14;33447:1;33437:8;33434:15;33408:24;33404:46;33394:56;;33144:324;;;:::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:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::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:141::-;13491:4;13514:3;13506:11;;13537:3;13534:1;13527:14;13571:4;13568:1;13558:18;13550:26;;13442:141;;;:::o;13589:93::-;13626:6;13673:2;13668;13661:5;13657:14;13653:23;13643:33;;13589:93;;;:::o;13688:107::-;13732:8;13782:5;13776:4;13772:16;13751:37;;13688:107;;;;:::o;13801:393::-;13870:6;13920:1;13908:10;13904:18;13943:97;13973:66;13962:9;13943:97;:::i;:::-;14061:39;14091:8;14080:9;14061:39;:::i;:::-;14049:51;;14133:4;14129:9;14122:5;14118:21;14109:30;;14182:4;14172:8;14168:19;14161:5;14158:30;14148:40;;13877:317;;13801:393;;;;;:::o;14200:60::-;14228:3;14249:5;14242:12;;14200:60;;;:::o;14266:142::-;14316:9;14349:53;14367:34;14376:24;14394:5;14376:24;:::i;:::-;14367:34;:::i;:::-;14349:53;:::i;:::-;14336:66;;14266:142;;;:::o;14414:75::-;14457:3;14478:5;14471:12;;14414:75;;;:::o;14495:269::-;14605:39;14636:7;14605:39;:::i;:::-;14666:91;14715:41;14739:16;14715:41;:::i;:::-;14707:6;14700:4;14694:11;14666:91;:::i;:::-;14660:4;14653:105;14571:193;14495:269;;;:::o;14770:73::-;14815:3;14770:73;:::o;14849:189::-;14926:32;;:::i;:::-;14967:65;15025:6;15017;15011:4;14967:65;:::i;:::-;14902:136;14849:189;;:::o;15044:186::-;15104:120;15121:3;15114:5;15111:14;15104:120;;;15175:39;15212:1;15205:5;15175:39;:::i;:::-;15148:1;15141:5;15137:13;15128:22;;15104:120;;;15044:186;;:::o;15236:543::-;15337:2;15332:3;15329:11;15326:446;;;15371:38;15403:5;15371:38;:::i;:::-;15455:29;15473:10;15455:29;:::i;:::-;15445:8;15441:44;15638:2;15626:10;15623:18;15620:49;;;15659:8;15644:23;;15620:49;15682:80;15738:22;15756:3;15738:22;:::i;:::-;15728:8;15724:37;15711:11;15682:80;:::i;:::-;15341:431;;15326:446;15236:543;;;:::o;15785:117::-;15839:8;15889:5;15883:4;15879:16;15858:37;;15785:117;;;;:::o;15908:169::-;15952:6;15985:51;16033:1;16029:6;16021:5;16018:1;16014:13;15985:51;:::i;:::-;15981:56;16066:4;16060;16056:15;16046:25;;15959:118;15908:169;;;;:::o;16082:295::-;16158:4;16304:29;16329:3;16323:4;16304:29;:::i;:::-;16296:37;;16366:3;16363:1;16359:11;16353:4;16350:21;16342:29;;16082:295;;;;:::o;16382:1395::-;16499:37;16532:3;16499:37;:::i;:::-;16601:18;16593:6;16590:30;16587:56;;;16623:18;;:::i;:::-;16587:56;16667:38;16699:4;16693:11;16667:38;:::i;:::-;16752:67;16812:6;16804;16798:4;16752:67;:::i;:::-;16846:1;16870:4;16857:17;;16902:2;16894:6;16891:14;16919:1;16914:618;;;;17576:1;17593:6;17590:77;;;17642:9;17637:3;17633:19;17627:26;17618:35;;17590:77;17693:67;17753:6;17746:5;17693:67;:::i;:::-;17687:4;17680:81;17549:222;16884:887;;16914:618;16966:4;16962:9;16954:6;16950:22;17000:37;17032:4;17000:37;:::i;:::-;17059:1;17073:208;17087:7;17084:1;17081:14;17073:208;;;17166:9;17161:3;17157:19;17151:26;17143:6;17136:42;17217:1;17209:6;17205:14;17195:24;;17264:2;17253:9;17249:18;17236:31;;17110:4;17107:1;17103:12;17098:17;;17073:208;;;17309:6;17300:7;17297:19;17294:179;;;17367:9;17362:3;17358:19;17352:26;17410:48;17452:4;17444:6;17440:17;17429:9;17410:48;:::i;:::-;17402:6;17395:64;17317:156;17294:179;17519:1;17515;17507:6;17503:14;17499:22;17493:4;17486:36;16921:611;;;16884:887;;16474:1303;;;16382:1395;;:::o;17783:181::-;17923:33;17919:1;17911:6;17907:14;17900:57;17783:181;:::o;17970:366::-;18112:3;18133:67;18197:2;18192:3;18133:67;:::i;:::-;18126:74;;18209:93;18298:3;18209:93;:::i;:::-;18327:2;18322:3;18318:12;18311:19;;17970:366;;;:::o;18342:419::-;18508:4;18546:2;18535:9;18531:18;18523:26;;18595:9;18589:4;18585:20;18581:1;18570:9;18566:17;18559:47;18623:131;18749:4;18623:131;:::i;:::-;18615:139;;18342:419;;;:::o;18767:147::-;18868:11;18905:3;18890:18;;18767:147;;;;:::o;18920:114::-;;:::o;19040:398::-;19199:3;19220:83;19301:1;19296:3;19220:83;:::i;:::-;19213:90;;19312:93;19401:3;19312:93;:::i;:::-;19430:1;19425:3;19421:11;19414:18;;19040:398;;;:::o;19444:379::-;19628:3;19650:147;19793:3;19650:147;:::i;:::-;19643:154;;19814:3;19807:10;;19444:379;;;:::o;19829:170::-;19969:22;19965:1;19957:6;19953:14;19946:46;19829:170;:::o;20005:366::-;20147:3;20168:67;20232:2;20227:3;20168:67;:::i;:::-;20161:74;;20244:93;20333:3;20244:93;:::i;:::-;20362:2;20357:3;20353:12;20346:19;;20005:366;;;:::o;20377:419::-;20543:4;20581:2;20570:9;20566:18;20558:26;;20630:9;20624:4;20620:20;20616:1;20605:9;20601:17;20594:47;20658:131;20784:4;20658:131;:::i;:::-;20650:139;;20377:419;;;:::o;20802:180::-;20850:77;20847:1;20840:88;20947:4;20944:1;20937:15;20971:4;20968:1;20961:15;20988:305;21028:3;21047:20;21065:1;21047:20;:::i;:::-;21042:25;;21081:20;21099:1;21081:20;:::i;:::-;21076:25;;21235:1;21167:66;21163:74;21160:1;21157:81;21154:107;;;21241:18;;:::i;:::-;21154:107;21285:1;21282;21278:9;21271:16;;20988:305;;;;:::o;21299:178::-;21439:30;21435:1;21427:6;21423:14;21416:54;21299:178;:::o;21483:366::-;21625:3;21646:67;21710:2;21705:3;21646:67;:::i;:::-;21639:74;;21722:93;21811:3;21722:93;:::i;:::-;21840:2;21835:3;21831:12;21824:19;;21483:366;;;:::o;21855:419::-;22021:4;22059:2;22048:9;22044:18;22036:26;;22108:9;22102:4;22098:20;22094:1;22083:9;22079:17;22072:47;22136:131;22262:4;22136:131;:::i;:::-;22128:139;;21855:419;;;:::o;22280:170::-;22420:22;22416:1;22408:6;22404:14;22397:46;22280:170;:::o;22456:366::-;22598:3;22619:67;22683:2;22678:3;22619:67;:::i;:::-;22612:74;;22695:93;22784:3;22695:93;:::i;:::-;22813:2;22808:3;22804:12;22797:19;;22456:366;;;:::o;22828:419::-;22994:4;23032:2;23021:9;23017:18;23009:26;;23081:9;23075:4;23071:20;23067:1;23056:9;23052:17;23045:47;23109:131;23235:4;23109:131;:::i;:::-;23101:139;;22828:419;;;:::o;23253:348::-;23293:7;23316:20;23334:1;23316:20;:::i;:::-;23311:25;;23350:20;23368:1;23350:20;:::i;:::-;23345:25;;23538:1;23470:66;23466:74;23463:1;23460:81;23455:1;23448:9;23441:17;23437:105;23434:131;;;23545:18;;:::i;:::-;23434:131;23593:1;23590;23586:9;23575:20;;23253:348;;;;:::o;23607:169::-;23747:21;23743:1;23735:6;23731:14;23724:45;23607:169;:::o;23782:366::-;23924:3;23945:67;24009:2;24004:3;23945:67;:::i;:::-;23938:74;;24021:93;24110:3;24021:93;:::i;:::-;24139:2;24134:3;24130:12;24123:19;;23782:366;;;:::o;24154:419::-;24320:4;24358:2;24347:9;24343:18;24335:26;;24407:9;24401:4;24397:20;24393:1;24382:9;24378:17;24371:47;24435:131;24561:4;24435:131;:::i;:::-;24427:139;;24154:419;;;:::o;24579:173::-;24719:25;24715:1;24707:6;24703:14;24696:49;24579:173;:::o;24758:366::-;24900:3;24921:67;24985:2;24980:3;24921:67;:::i;:::-;24914:74;;24997:93;25086:3;24997:93;:::i;:::-;25115:2;25110:3;25106:12;25099:19;;24758:366;;;:::o;25130:419::-;25296:4;25334:2;25323:9;25319:18;25311:26;;25383:9;25377:4;25373:20;25369:1;25358:9;25354:17;25347:47;25411:131;25537:4;25411:131;:::i;:::-;25403:139;;25130:419;;;:::o;25555:234::-;25695:34;25691:1;25683:6;25679:14;25672:58;25764:17;25759:2;25751:6;25747:15;25740:42;25555:234;:::o;25795:366::-;25937:3;25958:67;26022:2;26017:3;25958:67;:::i;:::-;25951:74;;26034:93;26123:3;26034:93;:::i;:::-;26152:2;26147:3;26143:12;26136:19;;25795:366;;;:::o;26167:419::-;26333:4;26371:2;26360:9;26356:18;26348:26;;26420:9;26414:4;26410:20;26406:1;26395:9;26391:17;26384:47;26448:131;26574:4;26448:131;:::i;:::-;26440:139;;26167:419;;;:::o;26592:148::-;26694:11;26731:3;26716:18;;26592:148;;;;:::o;26746:377::-;26852:3;26880:39;26913:5;26880:39;:::i;:::-;26935:89;27017:6;27012:3;26935:89;:::i;:::-;26928:96;;27033:52;27078:6;27073:3;27066:4;27059:5;27055:16;27033:52;:::i;:::-;27110:6;27105:3;27101:16;27094:23;;26856:267;26746:377;;;;:::o;27153:874::-;27256:3;27293:5;27287:12;27322:36;27348:9;27322:36;:::i;:::-;27374:89;27456:6;27451:3;27374:89;:::i;:::-;27367:96;;27494:1;27483:9;27479:17;27510:1;27505:166;;;;27685:1;27680:341;;;;27472:549;;27505:166;27589:4;27585:9;27574;27570:25;27565:3;27558:38;27651:6;27644:14;27637:22;27629:6;27625:35;27620:3;27616:45;27609:52;;27505:166;;27680:341;27747:38;27779:5;27747:38;:::i;:::-;27807:1;27821:154;27835:6;27832:1;27829:13;27821:154;;;27909:7;27903:14;27899:1;27894:3;27890:11;27883:35;27959:1;27950:7;27946:15;27935:26;;27857:4;27854:1;27850:12;27845:17;;27821:154;;;28004:6;27999:3;27995:16;27988:23;;27687:334;;27472:549;;27260:767;;27153:874;;;;:::o;28033:589::-;28258:3;28280:95;28371:3;28362:6;28280:95;:::i;:::-;28273:102;;28392:95;28483:3;28474:6;28392:95;:::i;:::-;28385:102;;28504:92;28592:3;28583:6;28504:92;:::i;:::-;28497:99;;28613:3;28606:10;;28033:589;;;;;;:::o;28628:225::-;28768:34;28764:1;28756:6;28752:14;28745:58;28837:8;28832:2;28824:6;28820:15;28813:33;28628:225;:::o;28859:366::-;29001:3;29022:67;29086:2;29081:3;29022:67;:::i;:::-;29015:74;;29098:93;29187:3;29098:93;:::i;:::-;29216:2;29211:3;29207:12;29200:19;;28859:366;;;:::o;29231:419::-;29397:4;29435:2;29424:9;29420:18;29412:26;;29484:9;29478:4;29474:20;29470:1;29459:9;29455:17;29448:47;29512:131;29638:4;29512:131;:::i;:::-;29504:139;;29231:419;;;:::o;29656:182::-;29796:34;29792:1;29784:6;29780:14;29773:58;29656:182;:::o;29844:366::-;29986:3;30007:67;30071:2;30066:3;30007:67;:::i;:::-;30000:74;;30083:93;30172:3;30083:93;:::i;:::-;30201:2;30196:3;30192:12;30185:19;;29844:366;;;:::o;30216:419::-;30382:4;30420:2;30409:9;30405:18;30397:26;;30469:9;30463:4;30459:20;30455:1;30444:9;30440:17;30433:47;30497:131;30623:4;30497:131;:::i;:::-;30489:139;;30216:419;;;:::o;30641:98::-;30692:6;30726:5;30720:12;30710:22;;30641:98;;;:::o;30745:168::-;30828:11;30862:6;30857:3;30850:19;30902:4;30897:3;30893:14;30878:29;;30745:168;;;;:::o;30919:360::-;31005:3;31033:38;31065:5;31033:38;:::i;:::-;31087:70;31150:6;31145:3;31087:70;:::i;:::-;31080:77;;31166:52;31211:6;31206:3;31199:4;31192:5;31188:16;31166:52;:::i;:::-;31243:29;31265:6;31243:29;:::i;:::-;31238:3;31234:39;31227:46;;31009:270;30919:360;;;;:::o;31285:640::-;31480:4;31518:3;31507:9;31503:19;31495:27;;31532:71;31600:1;31589:9;31585:17;31576:6;31532:71;:::i;:::-;31613:72;31681:2;31670:9;31666:18;31657:6;31613:72;:::i;:::-;31695;31763:2;31752:9;31748:18;31739:6;31695:72;:::i;:::-;31814:9;31808:4;31804:20;31799:2;31788:9;31784:18;31777:48;31842:76;31913:4;31904:6;31842:76;:::i;:::-;31834:84;;31285:640;;;;;;;:::o;31931:141::-;31987:5;32018:6;32012:13;32003:22;;32034:32;32060:5;32034:32;:::i;:::-;31931:141;;;;:::o;32078:349::-;32147:6;32196:2;32184:9;32175:7;32171:23;32167:32;32164:119;;;32202:79;;:::i;:::-;32164:119;32322:1;32347:63;32402:7;32393:6;32382:9;32378:22;32347:63;:::i;:::-;32337:73;;32293:127;32078:349;;;;:::o;32433:233::-;32472:3;32495:24;32513:5;32495:24;:::i;:::-;32486:33;;32541:66;32534:5;32531:77;32528:103;;32611:18;;:::i;:::-;32528:103;32658:1;32651:5;32647:13;32640:20;;32433:233;;;:::o;32672:180::-;32720:77;32717:1;32710:88;32817:4;32814:1;32807:15;32841:4;32838:1;32831:15;32858:185;32898:1;32915:20;32933:1;32915:20;:::i;:::-;32910:25;;32949:20;32967:1;32949:20;:::i;:::-;32944:25;;32988:1;32978:35;;32993:18;;:::i;:::-;32978:35;33035:1;33032;33028:9;33023:14;;32858:185;;;;:::o;33049:191::-;33089:4;33109:20;33127:1;33109:20;:::i;:::-;33104:25;;33143:20;33161:1;33143:20;:::i;:::-;33138:25;;33182:1;33179;33176:8;33173:34;;;33187:18;;:::i;:::-;33173:34;33232:1;33229;33225:9;33217:17;;33049:191;;;;:::o;33246:176::-;33278:1;33295:20;33313:1;33295:20;:::i;:::-;33290:25;;33329:20;33347:1;33329:20;:::i;:::-;33324:25;;33368:1;33358:35;;33373:18;;:::i;:::-;33358:35;33414:1;33411;33407:9;33402:14;;33246:176;;;;:::o;33428:180::-;33476:77;33473:1;33466:88;33573:4;33570:1;33563:15;33597:4;33594:1;33587:15

Swarm Source

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