ETH Price: $3,305.20 (-3.75%)
Gas: 14 Gwei

Token

Magnum Opus (MO)
 

Overview

Max Total Supply

30 MO

Holders

30

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MO
0xbdbe03fd84e81584d74b8fbf6e602c1caa6da4c5
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:
MagnumOpus

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-20
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/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() {
        _setOwner(_msgSender());
    }

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// 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();

    /**
     * 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 payable;

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

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

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

    /**
     * @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: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// 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 {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    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 payable 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 {
        _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].value`.
        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 payable 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 payable 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 payable 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.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            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`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                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 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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






pragma solidity ^0.8.7;

contract MagnumOpus is ERC721A, Ownable{
    using SafeMath for uint256;

    uint public maxPerTransactionForFreeMint = 1;
    uint public maxPerTransaction = 20;
    uint public supplyLimit = 1000;
    bool public publicSaleActive = false;
    string public baseURI;
    uint256 public tokenPrice = .004 ether;

  constructor(string memory name, string memory symbol, string memory baseURIinput)
    ERC721A(name, symbol)
  {
      baseURI = baseURIinput;
  }

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

  function setBaseURI(string calldata newBaseUri) external onlyOwner {
    baseURI = newBaseUri;
  }

  function togglePublicSaleActive() external onlyOwner {
    publicSaleActive = !publicSaleActive;
  }
  
  function mint(uint256 _quantity) external payable{
      require(_quantity <= maxPerTransaction, "Over max per transaction! Limit is 20 per transaction.");
      require(publicSaleActive == true, "Not Yet Active.");
      require((totalSupply() + _quantity) <= supplyLimit, "Supply reached");
      require(msg.value >= (tokenPrice * _quantity), "Insufficient funds");
      _safeMint(msg.sender, _quantity);
  }

  function freeMint(uint256 _quantity) external{
      require(_quantity <= maxPerTransactionForFreeMint, "Over max per transaction! Free mint is limited to 1 tokens per transaction.");
      require(publicSaleActive == true, "Not Yet Active.");
      require((totalSupply() + _quantity) <= supplyLimit, "Supply reached");
      require(this.balanceOf(msg.sender) + _quantity <= 1, "Per wallet free limit reached! (Limit = 1 token)");
      _safeMint(msg.sender, _quantity);
  }

  function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURIinput","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransactionForFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"togglePublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260016009556014600a556103e8600b556000600c60006101000a81548160ff021916908315150217905550660e35fa931a0000600e553480156200004757600080fd5b506040516200334e3803806200334e83398181016040528101906200006d9190620002fc565b8282816002908051906020019062000087929190620001ce565b508060039080519060200190620000a0929190620001ce565b50620000b1620000fb60201b60201c565b6000819055505050620000d9620000cd6200010060201b60201c565b6200010860201b60201c565b80600d9080519060200190620000f1929190620001ce565b5050505062000539565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001dc906200044a565b90600052602060002090601f0160209004810192826200020057600085556200024c565b82601f106200021b57805160ff19168380011785556200024c565b828001600101855582156200024c579182015b828111156200024b5782518255916020019190600101906200022e565b5b5090506200025b91906200025f565b5090565b5b808211156200027a57600081600090555060010162000260565b5090565b6000620002956200028f84620003de565b620003b5565b905082815260208101848484011115620002b457620002b362000519565b5b620002c184828562000414565b509392505050565b600082601f830112620002e157620002e062000514565b5b8151620002f38482602086016200027e565b91505092915050565b60008060006060848603121562000318576200031762000523565b5b600084015167ffffffffffffffff8111156200033957620003386200051e565b5b6200034786828701620002c9565b935050602084015167ffffffffffffffff8111156200036b576200036a6200051e565b5b6200037986828701620002c9565b925050604084015167ffffffffffffffff8111156200039d576200039c6200051e565b5b620003ab86828701620002c9565b9150509250925092565b6000620003c1620003d4565b9050620003cf828262000480565b919050565b6000604051905090565b600067ffffffffffffffff821115620003fc57620003fb620004e5565b5b620004078262000528565b9050602081019050919050565b60005b838110156200043457808201518184015260208101905062000417565b8381111562000444576000848401525b50505050565b600060028204905060018216806200046357607f821691505b602082108114156200047a5762000479620004b6565b5b50919050565b6200048b8262000528565b810181811067ffffffffffffffff82111715620004ad57620004ac620004e5565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b612e0580620005496000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a0712d681161008a578063bc8893b411610064578063bc8893b41461057f578063c87b56dd146105aa578063e985e9c5146105e7578063f2fde38b14610624576101b7565b8063a0712d681461051e578063a22cb4651461053a578063b88d4fde14610563576101b7565b80637ff9b596116100c65780637ff9b596146104725780638da5cb5b1461049d57806395d89b41146104c85780639e2fafce146104f3576101b7565b806370a08231146103f5578063715018a6146104325780637c928fe914610449576101b7565b806323b872dd116101595780634b980d67116101335780634b980d671461033957806355f804b3146103645780636352211e1461038d5780636c0360eb146103ca576101b7565b806323b872dd146102ea5780633ccfd60b1461030657806342842e0e1461031d576101b7565b8063095ea7b311610195578063095ea7b3146102615780630c894cfe1461027d57806318160ddd1461029457806319d1997a146102bf576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612383565b61064d565b6040516101f091906126f7565b60405180910390f35b34801561020557600080fd5b5061020e6106df565b60405161021b9190612712565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061242a565b610771565b6040516102589190612690565b60405180910390f35b61027b60048036038101906102769190612343565b6107f0565b005b34801561028957600080fd5b50610292610934565b005b3480156102a057600080fd5b506102a96109dc565b6040516102b69190612834565b60405180910390f35b3480156102cb57600080fd5b506102d46109f3565b6040516102e19190612834565b60405180910390f35b61030460048036038101906102ff919061222d565b6109f9565b005b34801561031257600080fd5b5061031b610d1e565b005b6103376004803603810190610332919061222d565b610de9565b005b34801561034557600080fd5b5061034e610e09565b60405161035b9190612834565b60405180910390f35b34801561037057600080fd5b5061038b600480360381019061038691906123dd565b610e0f565b005b34801561039957600080fd5b506103b460048036038101906103af919061242a565b610ea1565b6040516103c19190612690565b60405180910390f35b3480156103d657600080fd5b506103df610eb3565b6040516103ec9190612712565b60405180910390f35b34801561040157600080fd5b5061041c600480360381019061041791906121c0565b610f41565b6040516104299190612834565b60405180910390f35b34801561043e57600080fd5b50610447610ffa565b005b34801561045557600080fd5b50610470600480360381019061046b919061242a565b611082565b005b34801561047e57600080fd5b50610487611258565b6040516104949190612834565b60405180910390f35b3480156104a957600080fd5b506104b261125e565b6040516104bf9190612690565b60405180910390f35b3480156104d457600080fd5b506104dd611288565b6040516104ea9190612712565b60405180910390f35b3480156104ff57600080fd5b5061050861131a565b6040516105159190612834565b60405180910390f35b6105386004803603810190610533919061242a565b611320565b005b34801561054657600080fd5b50610561600480360381019061055c9190612303565b61146f565b005b61057d60048036038101906105789190612280565b61157a565b005b34801561058b57600080fd5b506105946115ed565b6040516105a191906126f7565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc919061242a565b611600565b6040516105de9190612712565b60405180910390f35b3480156105f357600080fd5b5061060e600480360381019061060991906121ed565b61169f565b60405161061b91906126f7565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906121c0565b611733565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106ee90612a4e565b80601f016020809104026020016040519081016040528092919081815260200182805461071a90612a4e565b80156107675780601f1061073c57610100808354040283529160200191610767565b820191906000526020600020905b81548152906001019060200180831161074a57829003601f168201915b5050505050905090565b600061077c8261182b565b6107b2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107fb82610ea1565b90508073ffffffffffffffffffffffffffffffffffffffff1661081c61188a565b73ffffffffffffffffffffffffffffffffffffffff161461087f576108488161084361188a565b61169f565b61087e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61093c611892565b73ffffffffffffffffffffffffffffffffffffffff1661095a61125e565b73ffffffffffffffffffffffffffffffffffffffff16146109b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a7906127f4565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b60006109e661189a565b6001546000540303905090565b600b5481565b6000610a048261189f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a778461196d565b91509150610a8d8187610a8861188a565b611994565b610ad957610aa286610a9d61188a565b61169f565b610ad8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b40576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4d86868660016119d8565b8015610b5857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c2685610c028888876119de565b7c020000000000000000000000000000000000000000000000000000000017611a06565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cae576000600185019050600060046000838152602001908152602001600020541415610cac576000548114610cab578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d168686866001611a31565b505050505050565b610d26611892565b73ffffffffffffffffffffffffffffffffffffffff16610d4461125e565b73ffffffffffffffffffffffffffffffffffffffff1614610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d91906127f4565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610de5573d6000803e3d6000fd5b5050565b610e048383836040518060200160405280600081525061157a565b505050565b600a5481565b610e17611892565b73ffffffffffffffffffffffffffffffffffffffff16610e3561125e565b73ffffffffffffffffffffffffffffffffffffffff1614610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e82906127f4565b60405180910390fd5b8181600d9190610e9c929190611fd9565b505050565b6000610eac8261189f565b9050919050565b600d8054610ec090612a4e565b80601f0160208091040260200160405190810160405280929190818152602001828054610eec90612a4e565b8015610f395780601f10610f0e57610100808354040283529160200191610f39565b820191906000526020600020905b815481529060010190602001808311610f1c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611002611892565b73ffffffffffffffffffffffffffffffffffffffff1661102061125e565b73ffffffffffffffffffffffffffffffffffffffff1614611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d906127f4565b60405180910390fd5b6110806000611a37565b565b6009548111156110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90612734565b60405180910390fd5b60011515600c60009054906101000a900460ff1615151461111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111490612774565b60405180910390fd5b600b54816111296109dc565b61113391906128e8565b1115611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90612814565b60405180910390fd5b6001813073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016111b09190612690565b60206040518083038186803b1580156111c857600080fd5b505afa1580156111dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112009190612457565b61120a91906128e8565b111561124b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611242906127d4565b60405180910390fd5b6112553382611afd565b50565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461129790612a4e565b80601f01602080910402602001604051908101604052809291908181526020018280546112c390612a4e565b80156113105780601f106112e557610100808354040283529160200191611310565b820191906000526020600020905b8154815290600101906020018083116112f357829003601f168201915b5050505050905090565b60095481565b600a54811115611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90612794565b60405180910390fd5b60011515600c60009054906101000a900460ff161515146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290612774565b60405180910390fd5b600b54816113c76109dc565b6113d191906128e8565b1115611412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140990612814565b60405180910390fd5b80600e54611420919061293e565b341015611462576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611459906127b4565b60405180910390fd5b61146c3382611afd565b50565b806007600061147c61188a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661152961188a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161156e91906126f7565b60405180910390a35050565b6115858484846109f9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115e7576115b084848484611b1b565b6115e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c60009054906101000a900460ff1681565b606061160b8261182b565b611641576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061164b611c7b565b905060008151141561166c5760405180602001604052806000815250611697565b8061167684611d0d565b60405160200161168792919061266c565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61173b611892565b73ffffffffffffffffffffffffffffffffffffffff1661175961125e565b73ffffffffffffffffffffffffffffffffffffffff16146117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a6906127f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690612754565b60405180910390fd5b61182881611a37565b50565b60008161183661189a565b11158015611845575060005482105b8015611883575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600090565b600080829050806118ae61189a565b11611936576000548110156119355760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611933575b60008114156119295760046000836001900393508381526020019081526020016000205490506118fe565b8092505050611968565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86119f5868684611d66565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b17828260405180602001604052806000815250611d6f565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b4161188a565b8786866040518563ffffffff1660e01b8152600401611b6394939291906126ab565b602060405180830381600087803b158015611b7d57600080fd5b505af1925050508015611bae57506040513d601f19601f82011682018060405250810190611bab91906123b0565b60015b611c28573d8060008114611bde576040519150601f19603f3d011682016040523d82523d6000602084013e611be3565b606091505b50600081511415611c20576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611c8a90612a4e565b80601f0160208091040260200160405190810160405280929190818152602001828054611cb690612a4e565b8015611d035780601f10611cd857610100808354040283529160200191611d03565b820191906000526020600020905b815481529060010190602001808311611ce657829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611d5157600184039350600a81066030018453600a8104905080611d4c57611d51565b611d26565b50828103602084039350808452505050919050565b60009392505050565b611d798383611e0c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0757600080549050600083820390505b611db96000868380600101945086611b1b565b611def576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611da6578160005414611e0457600080fd5b50505b505050565b6000805490506000821415611e4d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e5a60008483856119d8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ed183611ec260008660006119de565b611ecb85611fc9565b17611a06565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f7257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f37565b506000821415611fae576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611fc46000848385611a31565b505050565b60006001821460e11b9050919050565b828054611fe590612a4e565b90600052602060002090601f016020900481019282612007576000855561204e565b82601f1061202057803560ff191683800117855561204e565b8280016001018555821561204e579182015b8281111561204d578235825591602001919060010190612032565b5b50905061205b919061205f565b5090565b5b80821115612078576000816000905550600101612060565b5090565b600061208f61208a84612874565b61284f565b9050828152602081018484840111156120ab576120aa612b4d565b5b6120b6848285612a0c565b509392505050565b6000813590506120cd81612d73565b92915050565b6000813590506120e281612d8a565b92915050565b6000813590506120f781612da1565b92915050565b60008151905061210c81612da1565b92915050565b600082601f83011261212757612126612b43565b5b813561213784826020860161207c565b91505092915050565b60008083601f84011261215657612155612b43565b5b8235905067ffffffffffffffff81111561217357612172612b3e565b5b60208301915083600182028301111561218f5761218e612b48565b5b9250929050565b6000813590506121a581612db8565b92915050565b6000815190506121ba81612db8565b92915050565b6000602082840312156121d6576121d5612b57565b5b60006121e4848285016120be565b91505092915050565b6000806040838503121561220457612203612b57565b5b6000612212858286016120be565b9250506020612223858286016120be565b9150509250929050565b60008060006060848603121561224657612245612b57565b5b6000612254868287016120be565b9350506020612265868287016120be565b925050604061227686828701612196565b9150509250925092565b6000806000806080858703121561229a57612299612b57565b5b60006122a8878288016120be565b94505060206122b9878288016120be565b93505060406122ca87828801612196565b925050606085013567ffffffffffffffff8111156122eb576122ea612b52565b5b6122f787828801612112565b91505092959194509250565b6000806040838503121561231a57612319612b57565b5b6000612328858286016120be565b9250506020612339858286016120d3565b9150509250929050565b6000806040838503121561235a57612359612b57565b5b6000612368858286016120be565b925050602061237985828601612196565b9150509250929050565b60006020828403121561239957612398612b57565b5b60006123a7848285016120e8565b91505092915050565b6000602082840312156123c6576123c5612b57565b5b60006123d4848285016120fd565b91505092915050565b600080602083850312156123f4576123f3612b57565b5b600083013567ffffffffffffffff81111561241257612411612b52565b5b61241e85828601612140565b92509250509250929050565b6000602082840312156124405761243f612b57565b5b600061244e84828501612196565b91505092915050565b60006020828403121561246d5761246c612b57565b5b600061247b848285016121ab565b91505092915050565b61248d81612998565b82525050565b61249c816129aa565b82525050565b60006124ad826128a5565b6124b781856128bb565b93506124c7818560208601612a1b565b6124d081612b5c565b840191505092915050565b60006124e6826128b0565b6124f081856128cc565b9350612500818560208601612a1b565b61250981612b5c565b840191505092915050565b600061251f826128b0565b61252981856128dd565b9350612539818560208601612a1b565b80840191505092915050565b6000612552604b836128cc565b915061255d82612b6d565b606082019050919050565b60006125756026836128cc565b915061258082612be2565b604082019050919050565b6000612598600f836128cc565b91506125a382612c31565b602082019050919050565b60006125bb6036836128cc565b91506125c682612c5a565b604082019050919050565b60006125de6012836128cc565b91506125e982612ca9565b602082019050919050565b60006126016030836128cc565b915061260c82612cd2565b604082019050919050565b60006126246020836128cc565b915061262f82612d21565b602082019050919050565b6000612647600e836128cc565b915061265282612d4a565b602082019050919050565b61266681612a02565b82525050565b60006126788285612514565b91506126848284612514565b91508190509392505050565b60006020820190506126a56000830184612484565b92915050565b60006080820190506126c06000830187612484565b6126cd6020830186612484565b6126da604083018561265d565b81810360608301526126ec81846124a2565b905095945050505050565b600060208201905061270c6000830184612493565b92915050565b6000602082019050818103600083015261272c81846124db565b905092915050565b6000602082019050818103600083015261274d81612545565b9050919050565b6000602082019050818103600083015261276d81612568565b9050919050565b6000602082019050818103600083015261278d8161258b565b9050919050565b600060208201905081810360008301526127ad816125ae565b9050919050565b600060208201905081810360008301526127cd816125d1565b9050919050565b600060208201905081810360008301526127ed816125f4565b9050919050565b6000602082019050818103600083015261280d81612617565b9050919050565b6000602082019050818103600083015261282d8161263a565b9050919050565b6000602082019050612849600083018461265d565b92915050565b600061285961286a565b90506128658282612a80565b919050565b6000604051905090565b600067ffffffffffffffff82111561288f5761288e612b0f565b5b61289882612b5c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006128f382612a02565b91506128fe83612a02565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561293357612932612ab1565b5b828201905092915050565b600061294982612a02565b915061295483612a02565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561298d5761298c612ab1565b5b828202905092915050565b60006129a3826129e2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612a39578082015181840152602081019050612a1e565b83811115612a48576000848401525b50505050565b60006002820490506001821680612a6657607f821691505b60208210811415612a7a57612a79612ae0565b5b50919050565b612a8982612b5c565b810181811067ffffffffffffffff82111715612aa857612aa7612b0f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f766572206d617820706572207472616e73616374696f6e212046726565206d60008201527f696e74206973206c696d6974656420746f203120746f6b656e7320706572207460208201527f72616e73616374696f6e2e000000000000000000000000000000000000000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420596574204163746976652e0000000000000000000000000000000000600082015250565b7f4f766572206d617820706572207472616e73616374696f6e21204c696d69742060008201527f697320323020706572207472616e73616374696f6e2e00000000000000000000602082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f5065722077616c6c65742066726565206c696d6974207265616368656421202860008201527f4c696d6974203d203120746f6b656e2900000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f537570706c792072656163686564000000000000000000000000000000000000600082015250565b612d7c81612998565b8114612d8757600080fd5b50565b612d93816129aa565b8114612d9e57600080fd5b50565b612daa816129b6565b8114612db557600080fd5b50565b612dc181612a02565b8114612dcc57600080fd5b5056fea2646970667358221220eac88e154eeb40f6ee49b240db7f1f8282479148925c21abf9fe1f5c275cfab964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b4d61676e756d204f70757300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d4f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d645650684570514c7344415a47366e4573456d316a4556626f6232646d48344358775941786f7850536578332f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a0712d681161008a578063bc8893b411610064578063bc8893b41461057f578063c87b56dd146105aa578063e985e9c5146105e7578063f2fde38b14610624576101b7565b8063a0712d681461051e578063a22cb4651461053a578063b88d4fde14610563576101b7565b80637ff9b596116100c65780637ff9b596146104725780638da5cb5b1461049d57806395d89b41146104c85780639e2fafce146104f3576101b7565b806370a08231146103f5578063715018a6146104325780637c928fe914610449576101b7565b806323b872dd116101595780634b980d67116101335780634b980d671461033957806355f804b3146103645780636352211e1461038d5780636c0360eb146103ca576101b7565b806323b872dd146102ea5780633ccfd60b1461030657806342842e0e1461031d576101b7565b8063095ea7b311610195578063095ea7b3146102615780630c894cfe1461027d57806318160ddd1461029457806319d1997a146102bf576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612383565b61064d565b6040516101f091906126f7565b60405180910390f35b34801561020557600080fd5b5061020e6106df565b60405161021b9190612712565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061242a565b610771565b6040516102589190612690565b60405180910390f35b61027b60048036038101906102769190612343565b6107f0565b005b34801561028957600080fd5b50610292610934565b005b3480156102a057600080fd5b506102a96109dc565b6040516102b69190612834565b60405180910390f35b3480156102cb57600080fd5b506102d46109f3565b6040516102e19190612834565b60405180910390f35b61030460048036038101906102ff919061222d565b6109f9565b005b34801561031257600080fd5b5061031b610d1e565b005b6103376004803603810190610332919061222d565b610de9565b005b34801561034557600080fd5b5061034e610e09565b60405161035b9190612834565b60405180910390f35b34801561037057600080fd5b5061038b600480360381019061038691906123dd565b610e0f565b005b34801561039957600080fd5b506103b460048036038101906103af919061242a565b610ea1565b6040516103c19190612690565b60405180910390f35b3480156103d657600080fd5b506103df610eb3565b6040516103ec9190612712565b60405180910390f35b34801561040157600080fd5b5061041c600480360381019061041791906121c0565b610f41565b6040516104299190612834565b60405180910390f35b34801561043e57600080fd5b50610447610ffa565b005b34801561045557600080fd5b50610470600480360381019061046b919061242a565b611082565b005b34801561047e57600080fd5b50610487611258565b6040516104949190612834565b60405180910390f35b3480156104a957600080fd5b506104b261125e565b6040516104bf9190612690565b60405180910390f35b3480156104d457600080fd5b506104dd611288565b6040516104ea9190612712565b60405180910390f35b3480156104ff57600080fd5b5061050861131a565b6040516105159190612834565b60405180910390f35b6105386004803603810190610533919061242a565b611320565b005b34801561054657600080fd5b50610561600480360381019061055c9190612303565b61146f565b005b61057d60048036038101906105789190612280565b61157a565b005b34801561058b57600080fd5b506105946115ed565b6040516105a191906126f7565b60405180910390f35b3480156105b657600080fd5b506105d160048036038101906105cc919061242a565b611600565b6040516105de9190612712565b60405180910390f35b3480156105f357600080fd5b5061060e600480360381019061060991906121ed565b61169f565b60405161061b91906126f7565b60405180910390f35b34801561063057600080fd5b5061064b600480360381019061064691906121c0565b611733565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106a857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106ee90612a4e565b80601f016020809104026020016040519081016040528092919081815260200182805461071a90612a4e565b80156107675780601f1061073c57610100808354040283529160200191610767565b820191906000526020600020905b81548152906001019060200180831161074a57829003601f168201915b5050505050905090565b600061077c8261182b565b6107b2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107fb82610ea1565b90508073ffffffffffffffffffffffffffffffffffffffff1661081c61188a565b73ffffffffffffffffffffffffffffffffffffffff161461087f576108488161084361188a565b61169f565b61087e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61093c611892565b73ffffffffffffffffffffffffffffffffffffffff1661095a61125e565b73ffffffffffffffffffffffffffffffffffffffff16146109b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a7906127f4565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b60006109e661189a565b6001546000540303905090565b600b5481565b6000610a048261189f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a778461196d565b91509150610a8d8187610a8861188a565b611994565b610ad957610aa286610a9d61188a565b61169f565b610ad8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b40576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4d86868660016119d8565b8015610b5857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c2685610c028888876119de565b7c020000000000000000000000000000000000000000000000000000000017611a06565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cae576000600185019050600060046000838152602001908152602001600020541415610cac576000548114610cab578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d168686866001611a31565b505050505050565b610d26611892565b73ffffffffffffffffffffffffffffffffffffffff16610d4461125e565b73ffffffffffffffffffffffffffffffffffffffff1614610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d91906127f4565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610de5573d6000803e3d6000fd5b5050565b610e048383836040518060200160405280600081525061157a565b505050565b600a5481565b610e17611892565b73ffffffffffffffffffffffffffffffffffffffff16610e3561125e565b73ffffffffffffffffffffffffffffffffffffffff1614610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e82906127f4565b60405180910390fd5b8181600d9190610e9c929190611fd9565b505050565b6000610eac8261189f565b9050919050565b600d8054610ec090612a4e565b80601f0160208091040260200160405190810160405280929190818152602001828054610eec90612a4e565b8015610f395780601f10610f0e57610100808354040283529160200191610f39565b820191906000526020600020905b815481529060010190602001808311610f1c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611002611892565b73ffffffffffffffffffffffffffffffffffffffff1661102061125e565b73ffffffffffffffffffffffffffffffffffffffff1614611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d906127f4565b60405180910390fd5b6110806000611a37565b565b6009548111156110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90612734565b60405180910390fd5b60011515600c60009054906101000a900460ff1615151461111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111490612774565b60405180910390fd5b600b54816111296109dc565b61113391906128e8565b1115611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90612814565b60405180910390fd5b6001813073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016111b09190612690565b60206040518083038186803b1580156111c857600080fd5b505afa1580156111dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112009190612457565b61120a91906128e8565b111561124b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611242906127d4565b60405180910390fd5b6112553382611afd565b50565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461129790612a4e565b80601f01602080910402602001604051908101604052809291908181526020018280546112c390612a4e565b80156113105780601f106112e557610100808354040283529160200191611310565b820191906000526020600020905b8154815290600101906020018083116112f357829003601f168201915b5050505050905090565b60095481565b600a54811115611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90612794565b60405180910390fd5b60011515600c60009054906101000a900460ff161515146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290612774565b60405180910390fd5b600b54816113c76109dc565b6113d191906128e8565b1115611412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140990612814565b60405180910390fd5b80600e54611420919061293e565b341015611462576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611459906127b4565b60405180910390fd5b61146c3382611afd565b50565b806007600061147c61188a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661152961188a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161156e91906126f7565b60405180910390a35050565b6115858484846109f9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115e7576115b084848484611b1b565b6115e6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c60009054906101000a900460ff1681565b606061160b8261182b565b611641576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061164b611c7b565b905060008151141561166c5760405180602001604052806000815250611697565b8061167684611d0d565b60405160200161168792919061266c565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61173b611892565b73ffffffffffffffffffffffffffffffffffffffff1661175961125e565b73ffffffffffffffffffffffffffffffffffffffff16146117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a6906127f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690612754565b60405180910390fd5b61182881611a37565b50565b60008161183661189a565b11158015611845575060005482105b8015611883575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600090565b600080829050806118ae61189a565b11611936576000548110156119355760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611933575b60008114156119295760046000836001900393508381526020019081526020016000205490506118fe565b8092505050611968565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86119f5868684611d66565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b17828260405180602001604052806000815250611d6f565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b4161188a565b8786866040518563ffffffff1660e01b8152600401611b6394939291906126ab565b602060405180830381600087803b158015611b7d57600080fd5b505af1925050508015611bae57506040513d601f19601f82011682018060405250810190611bab91906123b0565b60015b611c28573d8060008114611bde576040519150601f19603f3d011682016040523d82523d6000602084013e611be3565b606091505b50600081511415611c20576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611c8a90612a4e565b80601f0160208091040260200160405190810160405280929190818152602001828054611cb690612a4e565b8015611d035780601f10611cd857610100808354040283529160200191611d03565b820191906000526020600020905b815481529060010190602001808311611ce657829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611d5157600184039350600a81066030018453600a8104905080611d4c57611d51565b611d26565b50828103602084039350808452505050919050565b60009392505050565b611d798383611e0c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0757600080549050600083820390505b611db96000868380600101945086611b1b565b611def576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611da6578160005414611e0457600080fd5b50505b505050565b6000805490506000821415611e4d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e5a60008483856119d8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611ed183611ec260008660006119de565b611ecb85611fc9565b17611a06565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f7257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f37565b506000821415611fae576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611fc46000848385611a31565b505050565b60006001821460e11b9050919050565b828054611fe590612a4e565b90600052602060002090601f016020900481019282612007576000855561204e565b82601f1061202057803560ff191683800117855561204e565b8280016001018555821561204e579182015b8281111561204d578235825591602001919060010190612032565b5b50905061205b919061205f565b5090565b5b80821115612078576000816000905550600101612060565b5090565b600061208f61208a84612874565b61284f565b9050828152602081018484840111156120ab576120aa612b4d565b5b6120b6848285612a0c565b509392505050565b6000813590506120cd81612d73565b92915050565b6000813590506120e281612d8a565b92915050565b6000813590506120f781612da1565b92915050565b60008151905061210c81612da1565b92915050565b600082601f83011261212757612126612b43565b5b813561213784826020860161207c565b91505092915050565b60008083601f84011261215657612155612b43565b5b8235905067ffffffffffffffff81111561217357612172612b3e565b5b60208301915083600182028301111561218f5761218e612b48565b5b9250929050565b6000813590506121a581612db8565b92915050565b6000815190506121ba81612db8565b92915050565b6000602082840312156121d6576121d5612b57565b5b60006121e4848285016120be565b91505092915050565b6000806040838503121561220457612203612b57565b5b6000612212858286016120be565b9250506020612223858286016120be565b9150509250929050565b60008060006060848603121561224657612245612b57565b5b6000612254868287016120be565b9350506020612265868287016120be565b925050604061227686828701612196565b9150509250925092565b6000806000806080858703121561229a57612299612b57565b5b60006122a8878288016120be565b94505060206122b9878288016120be565b93505060406122ca87828801612196565b925050606085013567ffffffffffffffff8111156122eb576122ea612b52565b5b6122f787828801612112565b91505092959194509250565b6000806040838503121561231a57612319612b57565b5b6000612328858286016120be565b9250506020612339858286016120d3565b9150509250929050565b6000806040838503121561235a57612359612b57565b5b6000612368858286016120be565b925050602061237985828601612196565b9150509250929050565b60006020828403121561239957612398612b57565b5b60006123a7848285016120e8565b91505092915050565b6000602082840312156123c6576123c5612b57565b5b60006123d4848285016120fd565b91505092915050565b600080602083850312156123f4576123f3612b57565b5b600083013567ffffffffffffffff81111561241257612411612b52565b5b61241e85828601612140565b92509250509250929050565b6000602082840312156124405761243f612b57565b5b600061244e84828501612196565b91505092915050565b60006020828403121561246d5761246c612b57565b5b600061247b848285016121ab565b91505092915050565b61248d81612998565b82525050565b61249c816129aa565b82525050565b60006124ad826128a5565b6124b781856128bb565b93506124c7818560208601612a1b565b6124d081612b5c565b840191505092915050565b60006124e6826128b0565b6124f081856128cc565b9350612500818560208601612a1b565b61250981612b5c565b840191505092915050565b600061251f826128b0565b61252981856128dd565b9350612539818560208601612a1b565b80840191505092915050565b6000612552604b836128cc565b915061255d82612b6d565b606082019050919050565b60006125756026836128cc565b915061258082612be2565b604082019050919050565b6000612598600f836128cc565b91506125a382612c31565b602082019050919050565b60006125bb6036836128cc565b91506125c682612c5a565b604082019050919050565b60006125de6012836128cc565b91506125e982612ca9565b602082019050919050565b60006126016030836128cc565b915061260c82612cd2565b604082019050919050565b60006126246020836128cc565b915061262f82612d21565b602082019050919050565b6000612647600e836128cc565b915061265282612d4a565b602082019050919050565b61266681612a02565b82525050565b60006126788285612514565b91506126848284612514565b91508190509392505050565b60006020820190506126a56000830184612484565b92915050565b60006080820190506126c06000830187612484565b6126cd6020830186612484565b6126da604083018561265d565b81810360608301526126ec81846124a2565b905095945050505050565b600060208201905061270c6000830184612493565b92915050565b6000602082019050818103600083015261272c81846124db565b905092915050565b6000602082019050818103600083015261274d81612545565b9050919050565b6000602082019050818103600083015261276d81612568565b9050919050565b6000602082019050818103600083015261278d8161258b565b9050919050565b600060208201905081810360008301526127ad816125ae565b9050919050565b600060208201905081810360008301526127cd816125d1565b9050919050565b600060208201905081810360008301526127ed816125f4565b9050919050565b6000602082019050818103600083015261280d81612617565b9050919050565b6000602082019050818103600083015261282d8161263a565b9050919050565b6000602082019050612849600083018461265d565b92915050565b600061285961286a565b90506128658282612a80565b919050565b6000604051905090565b600067ffffffffffffffff82111561288f5761288e612b0f565b5b61289882612b5c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006128f382612a02565b91506128fe83612a02565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561293357612932612ab1565b5b828201905092915050565b600061294982612a02565b915061295483612a02565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561298d5761298c612ab1565b5b828202905092915050565b60006129a3826129e2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612a39578082015181840152602081019050612a1e565b83811115612a48576000848401525b50505050565b60006002820490506001821680612a6657607f821691505b60208210811415612a7a57612a79612ae0565b5b50919050565b612a8982612b5c565b810181811067ffffffffffffffff82111715612aa857612aa7612b0f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f766572206d617820706572207472616e73616374696f6e212046726565206d60008201527f696e74206973206c696d6974656420746f203120746f6b656e7320706572207460208201527f72616e73616374696f6e2e000000000000000000000000000000000000000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420596574204163746976652e0000000000000000000000000000000000600082015250565b7f4f766572206d617820706572207472616e73616374696f6e21204c696d69742060008201527f697320323020706572207472616e73616374696f6e2e00000000000000000000602082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f5065722077616c6c65742066726565206c696d6974207265616368656421202860008201527f4c696d6974203d203120746f6b656e2900000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f537570706c792072656163686564000000000000000000000000000000000000600082015250565b612d7c81612998565b8114612d8757600080fd5b50565b612d93816129aa565b8114612d9e57600080fd5b50565b612daa816129b6565b8114612db557600080fd5b50565b612dc181612a02565b8114612dcc57600080fd5b5056fea2646970667358221220eac88e154eeb40f6ee49b240db7f1f8282479148925c21abf9fe1f5c275cfab964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b4d61676e756d204f70757300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d4f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d645650684570514c7344415a47366e4573456d316a4556626f6232646d48344358775941786f7850536578332f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Magnum Opus
Arg [1] : symbol (string): MO
Arg [2] : baseURIinput (string): https://ipfs.io/ipfs/QmdVPhEpQLsDAZG6nEsEm1jEVbob2dmH4CXwYAxoxPSex3/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 4d61676e756d204f707573000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4d4f000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d645650684570514c73
Arg [9] : 44415a47366e4573456d316a4556626f6232646d48344358775941786f785053
Arg [10] : 6578332f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

61822:1855:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28717:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29619:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36110:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35543:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62509:102;;;;;;;;;;;;;:::i;:::-;;25370:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61995:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39749:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63531:143;;;;;;;;;;;;;:::i;:::-;;42670:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61954:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62403:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31012:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62075:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26554:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9604:94;;;;;;;;;;;;;:::i;:::-;;63043:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62103:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8953:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29795:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61903:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62619:418;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36668:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43461:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62032:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30005:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37059:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9853:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28717:639;28802:4;29141:10;29126:25;;:11;:25;;;;:102;;;;29218:10;29203:25;;:11;:25;;;;29126:102;:179;;;;29295:10;29280:25;;:11;:25;;;;29126:179;29106:199;;28717:639;;;:::o;29619:100::-;29673:13;29706:5;29699:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29619:100;:::o;36110:218::-;36186:7;36211:16;36219:7;36211;:16::i;:::-;36206:64;;36236:34;;;;;;;;;;;;;;36206:64;36290:15;:24;36306:7;36290:24;;;;;;;;;;;:30;;;;;;;;;;;;36283:37;;36110:218;;;:::o;35543:408::-;35632:13;35648:16;35656:7;35648;:16::i;:::-;35632:32;;35704:5;35681:28;;:19;:17;:19::i;:::-;:28;;;35677:175;;35729:44;35746:5;35753:19;:17;:19::i;:::-;35729:16;:44::i;:::-;35724:128;;35801:35;;;;;;;;;;;;;;35724:128;35677:175;35897:2;35864:15;:24;35880:7;35864:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35935:7;35931:2;35915:28;;35924:5;35915:28;;;;;;;;;;;;35621:330;35543:408;;:::o;62509:102::-;9184:12;:10;:12::i;:::-;9173:23;;:7;:5;:7::i;:::-;:23;;;9165:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62589:16:::1;;;;;;;;;;;62588:17;62569:16;;:36;;;;;;;;;;;;;;;;;;62509:102::o:0;25370:323::-;25431:7;25659:15;:13;:15::i;:::-;25644:12;;25628:13;;:28;:46;25621:53;;25370:323;:::o;61995:30::-;;;;:::o;39749:2825::-;39891:27;39921;39940:7;39921:18;:27::i;:::-;39891:57;;40006:4;39965:45;;39981:19;39965:45;;;39961:86;;40019:28;;;;;;;;;;;;;;39961:86;40061:27;40090:23;40117:35;40144:7;40117:26;:35::i;:::-;40060:92;;;;40252:68;40277:15;40294:4;40300:19;:17;:19::i;:::-;40252:24;:68::i;:::-;40247:180;;40340:43;40357:4;40363:19;:17;:19::i;:::-;40340:16;:43::i;:::-;40335:92;;40392:35;;;;;;;;;;;;;;40335:92;40247:180;40458:1;40444:16;;:2;:16;;;40440:52;;;40469:23;;;;;;;;;;;;;;40440:52;40505:43;40527:4;40533:2;40537:7;40546:1;40505:21;:43::i;:::-;40641:15;40638:160;;;40781:1;40760:19;40753:30;40638:160;41178:18;:24;41197:4;41178:24;;;;;;;;;;;;;;;;41176:26;;;;;;;;;;;;41247:18;:22;41266:2;41247:22;;;;;;;;;;;;;;;;41245:24;;;;;;;;;;;41569:146;41606:2;41655:45;41670:4;41676:2;41680:19;41655:14;:45::i;:::-;21769:8;41627:73;41569:18;:146::i;:::-;41540:17;:26;41558:7;41540:26;;;;;;;;;;;:175;;;;41886:1;21769:8;41835:19;:47;:52;41831:627;;;41908:19;41940:1;41930:7;:11;41908:33;;42097:1;42063:17;:30;42081:11;42063:30;;;;;;;;;;;;:35;42059:384;;;42201:13;;42186:11;:28;42182:242;;42381:19;42348:17;:30;42366:11;42348:30;;;;;;;;;;;:52;;;;42182:242;42059:384;41889:569;41831:627;42505:7;42501:2;42486:27;;42495:4;42486:27;;;;;;;;;;;;42524:42;42545:4;42551:2;42555:7;42564:1;42524:20;:42::i;:::-;39880:2694;;;39749:2825;;;:::o;63531:143::-;9184:12;:10;:12::i;:::-;9173:23;;:7;:5;:7::i;:::-;:23;;;9165:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63579:15:::1;63597:21;63579:39;;63637:10;63629:28;;:37;63658:7;63629:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;63568:106;63531:143::o:0;42670:193::-;42816:39;42833:4;42839:2;42843:7;42816:39;;;;;;;;;;;;:16;:39::i;:::-;42670:193;;;:::o;61954:34::-;;;;:::o;62403:100::-;9184:12;:10;:12::i;:::-;9173:23;;:7;:5;:7::i;:::-;:23;;;9165:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62487:10:::1;;62477:7;:20;;;;;;;:::i;:::-;;62403:100:::0;;:::o;31012:152::-;31084:7;31127:27;31146:7;31127:18;:27::i;:::-;31104:52;;31012:152;;;:::o;62075:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26554:233::-;26626:7;26667:1;26650:19;;:5;:19;;;26646:60;;;26678:28;;;;;;;;;;;;;;26646:60;20713:13;26724:18;:25;26743:5;26724:25;;;;;;;;;;;;;;;;:55;26717:62;;26554:233;;;:::o;9604:94::-;9184:12;:10;:12::i;:::-;9173:23;;:7;:5;:7::i;:::-;:23;;;9165:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9669:21:::1;9687:1;9669:9;:21::i;:::-;9604:94::o:0;63043:482::-;63118:28;;63105:9;:41;;63097:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;63263:4;63243:24;;:16;;;;;;;;;;;:24;;;63235:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;63335:11;;63321:9;63305:13;:11;:13::i;:::-;:25;;;;:::i;:::-;63304:42;;63296:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;63424:1;63411:9;63382:4;:14;;;63397:10;63382:26;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:38;;;;:::i;:::-;:43;;63374:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;63487:32;63497:10;63509:9;63487;:32::i;:::-;63043:482;:::o;62103:38::-;;;;:::o;8953:87::-;8999:7;9026:6;;;;;;;;;;;9019:13;;8953:87;:::o;29795:104::-;29851:13;29884:7;29877:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29795:104;:::o;61903:44::-;;;;:::o;62619:418::-;62698:17;;62685:9;:30;;62677:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;62811:4;62791:24;;:16;;;;;;;;;;;:24;;;62783:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;62883:11;;62869:9;62853:13;:11;:13::i;:::-;:25;;;;:::i;:::-;62852:42;;62844:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;62957:9;62944:10;;:22;;;;:::i;:::-;62930:9;:37;;62922:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62999:32;63009:10;63021:9;62999;:32::i;:::-;62619:418;:::o;36668:234::-;36815:8;36763:18;:39;36782:19;:17;:19::i;:::-;36763:39;;;;;;;;;;;;;;;:49;36803:8;36763:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;36875:8;36839:55;;36854:19;:17;:19::i;:::-;36839:55;;;36885:8;36839:55;;;;;;:::i;:::-;;;;;;;;36668:234;;:::o;43461:407::-;43636:31;43649:4;43655:2;43659:7;43636:12;:31::i;:::-;43700:1;43682:2;:14;;;:19;43678:183;;43721:56;43752:4;43758:2;43762:7;43771:5;43721:30;:56::i;:::-;43716:145;;43805:40;;;;;;;;;;;;;;43716:145;43678:183;43461:407;;;;:::o;62032:36::-;;;;;;;;;;;;;:::o;30005:318::-;30078:13;30109:16;30117:7;30109;:16::i;:::-;30104:59;;30134:29;;;;;;;;;;;;;;30104:59;30176:21;30200:10;:8;:10::i;:::-;30176:34;;30253:1;30234:7;30228:21;:26;;:87;;;;;;;;;;;;;;;;;30281:7;30290:18;30300:7;30290:9;:18::i;:::-;30264:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30228:87;30221:94;;;30005:318;;;:::o;37059:164::-;37156:4;37180:18;:25;37199:5;37180:25;;;;;;;;;;;;;;;:35;37206:8;37180:35;;;;;;;;;;;;;;;;;;;;;;;;;37173:42;;37059:164;;;;:::o;9853:192::-;9184:12;:10;:12::i;:::-;9173:23;;:7;:5;:7::i;:::-;:23;;;9165:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9962:1:::1;9942:22;;:8;:22;;;;9934:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10018:19;10028:8;10018:9;:19::i;:::-;9853:192:::0;:::o;37481:282::-;37546:4;37602:7;37583:15;:13;:15::i;:::-;:26;;:66;;;;;37636:13;;37626:7;:23;37583:66;:153;;;;;37735:1;21489:8;37687:17;:26;37705:7;37687:26;;;;;;;;;;;;:44;:49;37583:153;37563:173;;37481:282;;;:::o;59789:105::-;59849:7;59876:10;59869:17;;59789:105;:::o;7688:98::-;7741:7;7768:10;7761:17;;7688:98;:::o;24886:92::-;24942:7;24886:92;:::o;32167:1275::-;32234:7;32254:12;32269:7;32254:22;;32337:4;32318:15;:13;:15::i;:::-;:23;32314:1061;;32371:13;;32364:4;:20;32360:1015;;;32409:14;32426:17;:23;32444:4;32426:23;;;;;;;;;;;;32409:40;;32543:1;21489:8;32515:6;:24;:29;32511:845;;;33180:113;33197:1;33187:6;:11;33180:113;;;33240:17;:25;33258:6;;;;;;;33240:25;;;;;;;;;;;;33231:34;;33180:113;;;33326:6;33319:13;;;;;;32511:845;32386:989;32360:1015;32314:1061;33403:31;;;;;;;;;;;;;;32167:1275;;;;:::o;38644:485::-;38746:27;38775:23;38816:38;38857:15;:24;38873:7;38857:24;;;;;;;;;;;38816:65;;39034:18;39011:41;;39091:19;39085:26;39066:45;;38996:126;38644:485;;;:::o;37872:659::-;38021:11;38186:16;38179:5;38175:28;38166:37;;38346:16;38335:9;38331:32;38318:45;;38496:15;38485:9;38482:30;38474:5;38463:9;38460:20;38457:56;38447:66;;37872:659;;;;;:::o;44530:159::-;;;;;:::o;59098:311::-;59233:7;59253:16;21893:3;59279:19;:41;;59253:68;;21893:3;59347:31;59358:4;59364:2;59368:9;59347:10;:31::i;:::-;59339:40;;:62;;59332:69;;;59098:311;;;;;:::o;33990:450::-;34070:14;34238:16;34231:5;34227:28;34218:37;;34415:5;34401:11;34376:23;34372:41;34369:52;34362:5;34359:63;34349:73;;33990:450;;;;:::o;45354:158::-;;;;;:::o;10053:173::-;10109:16;10128:6;;;;;;;;;;;10109:25;;10154:8;10145:6;;:17;;;;;;;;;;;;;;;;;;10209:8;10178:40;;10199:8;10178:40;;;;;;;;;;;;10098:128;10053:173;:::o;53621:112::-;53698:27;53708:2;53712:8;53698:27;;;;;;;;;;;;:9;:27::i;:::-;53621:112;;:::o;45952:716::-;46115:4;46161:2;46136:45;;;46182:19;:17;:19::i;:::-;46203:4;46209:7;46218:5;46136:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46132:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46436:1;46419:6;:13;:18;46415:235;;;46465:40;;;;;;;;;;;;;;46415:235;46608:6;46602:13;46593:6;46589:2;46585:15;46578:38;46132:529;46305:54;;;46295:64;;;:6;:64;;;;46288:71;;;45952:716;;;;;;:::o;62303:94::-;62355:13;62384:7;62377:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62303:94;:::o;59996:1745::-;60061:17;60495:4;60488;60482:11;60478:22;60587:1;60581:4;60574:15;60662:4;60659:1;60655:12;60648:19;;60744:1;60739:3;60732:14;60848:3;61087:5;61069:428;61095:1;61069:428;;;61135:1;61130:3;61126:11;61119:18;;61306:2;61300:4;61296:13;61292:2;61288:22;61283:3;61275:36;61400:2;61394:4;61390:13;61382:21;;61467:4;61457:25;;61475:5;;61457:25;61069:428;;;61073:21;61536:3;61531;61527:13;61651:4;61646:3;61642:14;61635:21;;61716:6;61711:3;61704:19;60100:1634;;;59996:1745;;;:::o;58799:147::-;58936:6;58799:147;;;;;:::o;52848:689::-;52979:19;52985:2;52989:8;52979:5;:19::i;:::-;53058:1;53040:2;:14;;;:19;53036:483;;53080:11;53094:13;;53080:27;;53126:13;53148:8;53142:3;:14;53126:30;;53175:233;53206:62;53245:1;53249:2;53253:7;;;;;;53262:5;53206:30;:62::i;:::-;53201:167;;53304:40;;;;;;;;;;;;;;53201:167;53403:3;53395:5;:11;53175:233;;53490:3;53473:13;;:20;53469:34;;53495:8;;;53469:34;53061:458;;53036:483;52848:689;;;:::o;47130:2966::-;47203:20;47226:13;;47203:36;;47266:1;47254:8;:13;47250:44;;;47276:18;;;;;;;;;;;;;;47250:44;47307:61;47337:1;47341:2;47345:12;47359:8;47307:21;:61::i;:::-;47851:1;20851:2;47821:1;:26;;47820:32;47808:8;:45;47782:18;:22;47801:2;47782:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;48130:139;48167:2;48221:33;48244:1;48248:2;48252:1;48221:14;:33::i;:::-;48188:30;48209:8;48188:20;:30::i;:::-;:66;48130:18;:139::i;:::-;48096:17;:31;48114:12;48096:31;;;;;;;;;;;:173;;;;48286:16;48317:11;48346:8;48331:12;:23;48317:37;;48867:16;48863:2;48859:25;48847:37;;49239:12;49199:8;49158:1;49096:25;49037:1;48976;48949:335;49610:1;49596:12;49592:20;49550:346;49651:3;49642:7;49639:16;49550:346;;49869:7;49859:8;49856:1;49829:25;49826:1;49823;49818:59;49704:1;49695:7;49691:15;49680:26;;49550:346;;;49554:77;49941:1;49929:8;:13;49925:45;;;49951:19;;;;;;;;;;;;;;49925:45;50003:3;49987:13;:19;;;;47556:2462;;50028:60;50057:1;50061:2;50065:12;50079:8;50028:20;:60::i;:::-;47192:2904;47130:2966;;:::o;34542:324::-;34612:14;34845:1;34835:8;34832:15;34806:24;34802:46;34792:56;;34542:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:143::-;2129:5;2160:6;2154:13;2145:22;;2176:33;2203:5;2176:33;:::i;:::-;2072:143;;;;:::o;2221:329::-;2280:6;2329:2;2317:9;2308:7;2304:23;2300:32;2297:119;;;2335:79;;:::i;:::-;2297:119;2455:1;2480:53;2525:7;2516:6;2505:9;2501:22;2480:53;:::i;:::-;2470:63;;2426:117;2221:329;;;;:::o;2556:474::-;2624:6;2632;2681:2;2669:9;2660:7;2656:23;2652:32;2649:119;;;2687:79;;:::i;:::-;2649:119;2807:1;2832:53;2877:7;2868:6;2857:9;2853:22;2832:53;:::i;:::-;2822:63;;2778:117;2934:2;2960:53;3005:7;2996:6;2985:9;2981:22;2960:53;:::i;:::-;2950:63;;2905:118;2556:474;;;;;:::o;3036:619::-;3113:6;3121;3129;3178:2;3166:9;3157:7;3153:23;3149:32;3146:119;;;3184:79;;:::i;:::-;3146:119;3304:1;3329:53;3374:7;3365:6;3354:9;3350:22;3329:53;:::i;:::-;3319:63;;3275:117;3431:2;3457:53;3502:7;3493:6;3482:9;3478:22;3457:53;:::i;:::-;3447:63;;3402:118;3559:2;3585:53;3630:7;3621:6;3610:9;3606:22;3585:53;:::i;:::-;3575:63;;3530:118;3036:619;;;;;:::o;3661:943::-;3756:6;3764;3772;3780;3829:3;3817:9;3808:7;3804:23;3800:33;3797:120;;;3836:79;;:::i;:::-;3797:120;3956:1;3981:53;4026:7;4017:6;4006:9;4002:22;3981:53;:::i;:::-;3971:63;;3927:117;4083:2;4109:53;4154:7;4145:6;4134:9;4130:22;4109:53;:::i;:::-;4099:63;;4054:118;4211:2;4237:53;4282:7;4273:6;4262:9;4258:22;4237:53;:::i;:::-;4227:63;;4182:118;4367:2;4356:9;4352:18;4339:32;4398:18;4390:6;4387:30;4384:117;;;4420:79;;:::i;:::-;4384:117;4525:62;4579:7;4570:6;4559:9;4555:22;4525:62;:::i;:::-;4515:72;;4310:287;3661:943;;;;;;;:::o;4610:468::-;4675:6;4683;4732:2;4720:9;4711:7;4707:23;4703:32;4700:119;;;4738:79;;:::i;:::-;4700:119;4858:1;4883:53;4928:7;4919:6;4908:9;4904:22;4883:53;:::i;:::-;4873:63;;4829:117;4985:2;5011:50;5053:7;5044:6;5033:9;5029:22;5011:50;:::i;:::-;5001:60;;4956:115;4610:468;;;;;:::o;5084:474::-;5152:6;5160;5209:2;5197:9;5188:7;5184:23;5180:32;5177:119;;;5215:79;;:::i;:::-;5177:119;5335:1;5360:53;5405:7;5396:6;5385:9;5381:22;5360:53;:::i;:::-;5350:63;;5306:117;5462:2;5488:53;5533:7;5524:6;5513:9;5509:22;5488:53;:::i;:::-;5478:63;;5433:118;5084:474;;;;;:::o;5564:327::-;5622:6;5671:2;5659:9;5650:7;5646:23;5642:32;5639:119;;;5677:79;;:::i;:::-;5639:119;5797:1;5822:52;5866:7;5857:6;5846:9;5842:22;5822:52;:::i;:::-;5812:62;;5768:116;5564:327;;;;:::o;5897:349::-;5966:6;6015:2;6003:9;5994:7;5990:23;5986:32;5983:119;;;6021:79;;:::i;:::-;5983:119;6141:1;6166:63;6221:7;6212:6;6201:9;6197:22;6166:63;:::i;:::-;6156:73;;6112:127;5897:349;;;;:::o;6252:529::-;6323:6;6331;6380:2;6368:9;6359:7;6355:23;6351:32;6348:119;;;6386:79;;:::i;:::-;6348:119;6534:1;6523:9;6519:17;6506:31;6564:18;6556:6;6553:30;6550:117;;;6586:79;;:::i;:::-;6550:117;6699:65;6756:7;6747:6;6736:9;6732:22;6699:65;:::i;:::-;6681:83;;;;6477:297;6252:529;;;;;:::o;6787:329::-;6846:6;6895:2;6883:9;6874:7;6870:23;6866:32;6863:119;;;6901:79;;:::i;:::-;6863:119;7021:1;7046:53;7091:7;7082:6;7071:9;7067:22;7046:53;:::i;:::-;7036:63;;6992:117;6787:329;;;;:::o;7122:351::-;7192:6;7241:2;7229:9;7220:7;7216:23;7212:32;7209:119;;;7247:79;;:::i;:::-;7209:119;7367:1;7392:64;7448:7;7439:6;7428:9;7424:22;7392:64;:::i;:::-;7382:74;;7338:128;7122:351;;;;:::o;7479:118::-;7566:24;7584:5;7566:24;:::i;:::-;7561:3;7554:37;7479:118;;:::o;7603:109::-;7684:21;7699:5;7684:21;:::i;:::-;7679:3;7672:34;7603:109;;:::o;7718:360::-;7804:3;7832:38;7864:5;7832:38;:::i;:::-;7886:70;7949:6;7944:3;7886:70;:::i;:::-;7879:77;;7965:52;8010:6;8005:3;7998:4;7991:5;7987:16;7965:52;:::i;:::-;8042:29;8064:6;8042:29;:::i;:::-;8037:3;8033:39;8026:46;;7808:270;7718:360;;;;:::o;8084:364::-;8172:3;8200:39;8233:5;8200:39;:::i;:::-;8255:71;8319:6;8314:3;8255:71;:::i;:::-;8248:78;;8335:52;8380:6;8375:3;8368:4;8361:5;8357:16;8335:52;:::i;:::-;8412:29;8434:6;8412:29;:::i;:::-;8407:3;8403:39;8396:46;;8176:272;8084:364;;;;:::o;8454:377::-;8560:3;8588:39;8621:5;8588:39;:::i;:::-;8643:89;8725:6;8720:3;8643:89;:::i;:::-;8636:96;;8741:52;8786:6;8781:3;8774:4;8767:5;8763:16;8741:52;:::i;:::-;8818:6;8813:3;8809:16;8802:23;;8564:267;8454:377;;;;:::o;8837:366::-;8979:3;9000:67;9064:2;9059:3;9000:67;:::i;:::-;8993:74;;9076:93;9165:3;9076:93;:::i;:::-;9194:2;9189:3;9185:12;9178:19;;8837:366;;;:::o;9209:::-;9351:3;9372:67;9436:2;9431:3;9372:67;:::i;:::-;9365:74;;9448:93;9537:3;9448:93;:::i;:::-;9566:2;9561:3;9557:12;9550:19;;9209:366;;;:::o;9581:::-;9723:3;9744:67;9808:2;9803:3;9744:67;:::i;:::-;9737:74;;9820:93;9909:3;9820:93;:::i;:::-;9938:2;9933:3;9929:12;9922:19;;9581:366;;;:::o;9953:::-;10095:3;10116:67;10180:2;10175:3;10116:67;:::i;:::-;10109:74;;10192:93;10281:3;10192:93;:::i;:::-;10310:2;10305:3;10301:12;10294:19;;9953:366;;;:::o;10325:::-;10467:3;10488:67;10552:2;10547:3;10488:67;:::i;:::-;10481:74;;10564:93;10653:3;10564:93;:::i;:::-;10682:2;10677:3;10673:12;10666:19;;10325:366;;;:::o;10697:::-;10839:3;10860:67;10924:2;10919:3;10860:67;:::i;:::-;10853:74;;10936:93;11025:3;10936:93;:::i;:::-;11054:2;11049:3;11045:12;11038:19;;10697:366;;;:::o;11069:::-;11211:3;11232:67;11296:2;11291:3;11232:67;:::i;:::-;11225:74;;11308:93;11397:3;11308:93;:::i;:::-;11426:2;11421:3;11417:12;11410:19;;11069:366;;;:::o;11441:::-;11583:3;11604:67;11668:2;11663:3;11604:67;:::i;:::-;11597:74;;11680:93;11769:3;11680:93;:::i;:::-;11798:2;11793:3;11789:12;11782:19;;11441:366;;;:::o;11813:118::-;11900:24;11918:5;11900:24;:::i;:::-;11895:3;11888:37;11813:118;;:::o;11937:435::-;12117:3;12139:95;12230:3;12221:6;12139:95;:::i;:::-;12132:102;;12251:95;12342:3;12333:6;12251:95;:::i;:::-;12244:102;;12363:3;12356:10;;11937:435;;;;;:::o;12378:222::-;12471:4;12509:2;12498:9;12494:18;12486:26;;12522:71;12590:1;12579:9;12575:17;12566:6;12522:71;:::i;:::-;12378:222;;;;:::o;12606:640::-;12801:4;12839:3;12828:9;12824:19;12816:27;;12853:71;12921:1;12910:9;12906:17;12897:6;12853:71;:::i;:::-;12934:72;13002:2;12991:9;12987:18;12978:6;12934:72;:::i;:::-;13016;13084:2;13073:9;13069:18;13060:6;13016:72;:::i;:::-;13135:9;13129:4;13125:20;13120:2;13109:9;13105:18;13098:48;13163:76;13234:4;13225:6;13163:76;:::i;:::-;13155:84;;12606:640;;;;;;;:::o;13252:210::-;13339:4;13377:2;13366:9;13362:18;13354:26;;13390:65;13452:1;13441:9;13437:17;13428:6;13390:65;:::i;:::-;13252:210;;;;:::o;13468:313::-;13581:4;13619:2;13608:9;13604:18;13596:26;;13668:9;13662:4;13658:20;13654:1;13643:9;13639:17;13632:47;13696:78;13769:4;13760:6;13696:78;:::i;:::-;13688:86;;13468:313;;;;:::o;13787:419::-;13953:4;13991:2;13980:9;13976:18;13968:26;;14040:9;14034:4;14030:20;14026:1;14015:9;14011:17;14004:47;14068:131;14194:4;14068:131;:::i;:::-;14060:139;;13787:419;;;:::o;14212:::-;14378:4;14416:2;14405:9;14401:18;14393:26;;14465:9;14459:4;14455:20;14451:1;14440:9;14436:17;14429:47;14493:131;14619:4;14493:131;:::i;:::-;14485:139;;14212:419;;;:::o;14637:::-;14803:4;14841:2;14830:9;14826:18;14818:26;;14890:9;14884:4;14880:20;14876:1;14865:9;14861:17;14854:47;14918:131;15044:4;14918:131;:::i;:::-;14910:139;;14637:419;;;:::o;15062:::-;15228:4;15266:2;15255:9;15251:18;15243:26;;15315:9;15309:4;15305:20;15301:1;15290:9;15286:17;15279:47;15343:131;15469:4;15343:131;:::i;:::-;15335:139;;15062:419;;;:::o;15487:::-;15653:4;15691:2;15680:9;15676:18;15668:26;;15740:9;15734:4;15730:20;15726:1;15715:9;15711:17;15704:47;15768:131;15894:4;15768:131;:::i;:::-;15760:139;;15487:419;;;:::o;15912:::-;16078:4;16116:2;16105:9;16101:18;16093:26;;16165:9;16159:4;16155:20;16151:1;16140:9;16136:17;16129:47;16193:131;16319:4;16193:131;:::i;:::-;16185:139;;15912:419;;;:::o;16337:::-;16503:4;16541:2;16530:9;16526:18;16518:26;;16590:9;16584:4;16580:20;16576:1;16565:9;16561:17;16554:47;16618:131;16744:4;16618:131;:::i;:::-;16610:139;;16337:419;;;:::o;16762:::-;16928:4;16966:2;16955:9;16951:18;16943:26;;17015:9;17009:4;17005:20;17001:1;16990:9;16986:17;16979:47;17043:131;17169:4;17043:131;:::i;:::-;17035:139;;16762:419;;;:::o;17187:222::-;17280:4;17318:2;17307:9;17303:18;17295:26;;17331:71;17399:1;17388:9;17384:17;17375:6;17331:71;:::i;:::-;17187:222;;;;:::o;17415:129::-;17449:6;17476:20;;:::i;:::-;17466:30;;17505:33;17533:4;17525:6;17505:33;:::i;:::-;17415:129;;;:::o;17550:75::-;17583:6;17616:2;17610:9;17600:19;;17550:75;:::o;17631:307::-;17692:4;17782:18;17774:6;17771:30;17768:56;;;17804:18;;:::i;:::-;17768:56;17842:29;17864:6;17842:29;:::i;:::-;17834:37;;17926:4;17920;17916:15;17908:23;;17631:307;;;:::o;17944:98::-;17995:6;18029:5;18023:12;18013:22;;17944:98;;;:::o;18048:99::-;18100:6;18134:5;18128:12;18118:22;;18048:99;;;:::o;18153:168::-;18236:11;18270:6;18265:3;18258:19;18310:4;18305:3;18301:14;18286:29;;18153:168;;;;:::o;18327:169::-;18411:11;18445:6;18440:3;18433:19;18485:4;18480:3;18476:14;18461:29;;18327:169;;;;:::o;18502:148::-;18604:11;18641:3;18626:18;;18502:148;;;;:::o;18656:305::-;18696:3;18715:20;18733:1;18715:20;:::i;:::-;18710:25;;18749:20;18767:1;18749:20;:::i;:::-;18744:25;;18903:1;18835:66;18831:74;18828:1;18825:81;18822:107;;;18909:18;;:::i;:::-;18822:107;18953:1;18950;18946:9;18939:16;;18656:305;;;;:::o;18967:348::-;19007:7;19030:20;19048:1;19030:20;:::i;:::-;19025:25;;19064:20;19082:1;19064:20;:::i;:::-;19059:25;;19252:1;19184:66;19180:74;19177:1;19174:81;19169:1;19162:9;19155:17;19151:105;19148:131;;;19259:18;;:::i;:::-;19148:131;19307:1;19304;19300:9;19289:20;;18967:348;;;;:::o;19321:96::-;19358:7;19387:24;19405:5;19387:24;:::i;:::-;19376:35;;19321:96;;;:::o;19423:90::-;19457:7;19500:5;19493:13;19486:21;19475:32;;19423:90;;;:::o;19519:149::-;19555:7;19595:66;19588:5;19584:78;19573:89;;19519:149;;;:::o;19674:126::-;19711:7;19751:42;19744:5;19740:54;19729:65;;19674:126;;;:::o;19806:77::-;19843:7;19872:5;19861:16;;19806:77;;;:::o;19889:154::-;19973:6;19968:3;19963;19950:30;20035:1;20026:6;20021:3;20017:16;20010:27;19889:154;;;:::o;20049:307::-;20117:1;20127:113;20141:6;20138:1;20135:13;20127:113;;;20226:1;20221:3;20217:11;20211:18;20207:1;20202:3;20198:11;20191:39;20163:2;20160:1;20156:10;20151:15;;20127:113;;;20258:6;20255:1;20252:13;20249:101;;;20338:1;20329:6;20324:3;20320:16;20313:27;20249:101;20098:258;20049:307;;;:::o;20362:320::-;20406:6;20443:1;20437:4;20433:12;20423:22;;20490:1;20484:4;20480:12;20511:18;20501:81;;20567:4;20559:6;20555:17;20545:27;;20501:81;20629:2;20621:6;20618:14;20598:18;20595:38;20592:84;;;20648:18;;:::i;:::-;20592:84;20413:269;20362:320;;;:::o;20688:281::-;20771:27;20793:4;20771:27;:::i;:::-;20763:6;20759:40;20901:6;20889:10;20886:22;20865:18;20853:10;20850:34;20847:62;20844:88;;;20912:18;;:::i;:::-;20844:88;20952:10;20948:2;20941:22;20731:238;20688:281;;:::o;20975:180::-;21023:77;21020:1;21013:88;21120:4;21117:1;21110:15;21144:4;21141:1;21134:15;21161:180;21209:77;21206:1;21199:88;21306:4;21303:1;21296:15;21330:4;21327:1;21320:15;21347:180;21395:77;21392:1;21385:88;21492:4;21489:1;21482:15;21516:4;21513:1;21506:15;21533:117;21642:1;21639;21632:12;21656:117;21765:1;21762;21755:12;21779:117;21888:1;21885;21878:12;21902:117;22011:1;22008;22001:12;22025:117;22134:1;22131;22124:12;22148:117;22257:1;22254;22247:12;22271:102;22312:6;22363:2;22359:7;22354:2;22347:5;22343:14;22339:28;22329:38;;22271:102;;;:::o;22379:299::-;22519:34;22515:1;22507:6;22503:14;22496:58;22588:34;22583:2;22575:6;22571:15;22564:59;22657:13;22652:2;22644:6;22640:15;22633:38;22379:299;:::o;22684:225::-;22824:34;22820:1;22812:6;22808:14;22801:58;22893:8;22888:2;22880:6;22876:15;22869:33;22684:225;:::o;22915:165::-;23055:17;23051:1;23043:6;23039:14;23032:41;22915:165;:::o;23086:241::-;23226:34;23222:1;23214:6;23210:14;23203:58;23295:24;23290:2;23282:6;23278:15;23271:49;23086:241;:::o;23333:168::-;23473:20;23469:1;23461:6;23457:14;23450:44;23333:168;:::o;23507:235::-;23647:34;23643:1;23635:6;23631:14;23624:58;23716:18;23711:2;23703:6;23699:15;23692:43;23507:235;:::o;23748:182::-;23888:34;23884:1;23876:6;23872:14;23865:58;23748:182;:::o;23936:164::-;24076:16;24072:1;24064:6;24060:14;24053:40;23936:164;:::o;24106:122::-;24179:24;24197:5;24179:24;:::i;:::-;24172:5;24169:35;24159:63;;24218:1;24215;24208:12;24159:63;24106:122;:::o;24234:116::-;24304:21;24319:5;24304:21;:::i;:::-;24297:5;24294:32;24284:60;;24340:1;24337;24330:12;24284:60;24234:116;:::o;24356:120::-;24428:23;24445:5;24428:23;:::i;:::-;24421:5;24418:34;24408:62;;24466:1;24463;24456:12;24408:62;24356:120;:::o;24482:122::-;24555:24;24573:5;24555:24;:::i;:::-;24548:5;24545:35;24535:63;;24594:1;24591;24584:12;24535:63;24482:122;:::o

Swarm Source

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