ETH Price: $3,452.76 (-0.99%)
Gas: 3 Gwei

Token

Orangutan World (OW)
 

Overview

Max Total Supply

2,176 OW

Holders

2,129

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 OW
0x7b75b51f2101b9752c2e0c2effcb27f0e4f9313c
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:
OrangutanWorld

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-09-07
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

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

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

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

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

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

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

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

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

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

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

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ownerOf(tokenId);

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

// File: contracts/OrangutanWorld.sol



pragma solidity ^0.8.4;




contract OrangutanWorld is ERC721A, Ownable, ReentrancyGuard {
  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public baseUri = 'ipfs://QmPzfkdTPjZ5K1sqjTTD9mtagjzfBABcZtDStT4ggjh2RE';

  uint256 public cost = 0.002 ether;
  uint256 public maxSupply = 1200;
  uint256 public maxMintAmountPerTx = 5;
  uint8   public maxFreePerWallet = 1;
  mapping(address => uint256) public _mintedFreeAmount;

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

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol
  ) ERC721A(_tokenName, _tokenSymbol) {
    _safeMint(msg.sender, 20);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  modifier freeMintCountCompliance(uint256 _mintAmount) {
    require(_mintAmount == 1, 'Mint amount must be equal to 1');
    require(_mintedFreeAmount[msg.sender] < maxFreePerWallet, 'Max free supply exceeded!');
    _;
  }

  function freeMint(uint256 _mintAmount) public payable freeMintCountCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');
    _mintedFreeAmount[msg.sender] = maxFreePerWallet;
    _safeMint(msg.sender, _mintAmount);
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');

    _safeMint(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

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

    if (!revealed) {
      return baseUri;
    }

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

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

  function setBaseUri(string memory _uri) public onlyOwner {
    baseUri = _uri;
  }

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","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":"maxFreePerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b92919062000763565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200007992919062000763565b506040518060600160405280603581526020016200407c60359139600c9080519060200190620000ab92919062000763565b5066071afd498d0000600d556104b0600e556005600f556001601060006101000a81548160ff021916908360ff1602179055506001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055503480156200012157600080fd5b50604051620040b1380380620040b18339818101604052810190620001479190620008da565b818181600290805190602001906200016192919062000763565b5080600390805190602001906200017a92919062000763565b506200018b620001d660201b60201c565b6000819055505050620001b3620001a7620001db60201b60201c565b620001e360201b60201c565b6001600981905550620001ce336014620002a960201b60201c565b505062000c3a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002cb828260405180602001604052806000815250620002cf60201b60201c565b5050565b620002e183836200038060201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200037b57600080549050600083820390505b6200032a60008683806001019450866200056960201b60201c565b62000361576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106200030f5781600054146200037857600080fd5b50505b505050565b6000805490506000821415620003c2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003d76000848385620006db60201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200046683620004486000866000620006e160201b60201c565b62000459856200071160201b60201c565b176200072160201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200050957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050620004cc565b50600082141562000546576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506200056460008483856200074c60201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005976200075260201b60201c565b8786866040518563ffffffff1660e01b8152600401620005bb9493929190620009c2565b602060405180830381600087803b158015620005d657600080fd5b505af19250505080156200060a57506040513d601f19601f82011682018060405250810190620006079190620008a8565b60015b62000688573d80600081146200063d576040519150601f19603f3d011682016040523d82523d6000602084013e62000642565b606091505b5060008151141562000680576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e8620007008686846200075a60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b828054620007719062000b31565b90600052602060002090601f016020900481019282620007955760008555620007e1565b82601f10620007b057805160ff1916838001178555620007e1565b82800160010185558215620007e1579182015b82811115620007e0578251825591602001919060010190620007c3565b5b509050620007f09190620007f4565b5090565b5b808211156200080f576000816000905550600101620007f5565b5090565b60006200082a620008248462000a3f565b62000a16565b90508281526020810184848401111562000849576200084862000c00565b5b6200085684828562000afb565b509392505050565b6000815190506200086f8162000c20565b92915050565b600082601f8301126200088d576200088c62000bfb565b5b81516200089f84826020860162000813565b91505092915050565b600060208284031215620008c157620008c062000c0a565b5b6000620008d1848285016200085e565b91505092915050565b60008060408385031215620008f457620008f362000c0a565b5b600083015167ffffffffffffffff81111562000915576200091462000c05565b5b620009238582860162000875565b925050602083015167ffffffffffffffff81111562000947576200094662000c05565b5b620009558582860162000875565b9150509250929050565b6200096a8162000a91565b82525050565b60006200097d8262000a75565b62000989818562000a80565b93506200099b81856020860162000afb565b620009a68162000c0f565b840191505092915050565b620009bc8162000af1565b82525050565b6000608082019050620009d960008301876200095f565b620009e860208301866200095f565b620009f76040830185620009b1565b818103606083015262000a0b818462000970565b905095945050505050565b600062000a2262000a35565b905062000a30828262000b67565b919050565b6000604051905090565b600067ffffffffffffffff82111562000a5d5762000a5c62000bcc565b5b62000a688262000c0f565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000a9e8262000ad1565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b1b57808201518184015260208101905062000afe565b8381111562000b2b576000848401525b50505050565b6000600282049050600182168062000b4a57607f821691505b6020821081141562000b615762000b6062000b9d565b5b50919050565b62000b728262000c0f565b810181811067ffffffffffffffff8211171562000b945762000b9362000bcc565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000c2b8162000aa5565b811462000c3757600080fd5b50565b6134328062000c4a6000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063a22cb465116100ab578063e0a808531161006f578063e0a808531461077f578063e985e9c5146107a8578063efbd73f4146107e5578063f2fde38b1461080e578063f4db2acb146108375761021a565b8063a22cb4651461069a578063a7027357146106c3578063b88d4fde146106ee578063c87b56dd14610717578063d5abeb01146107545761021a565b806394354fd0116100f257806394354fd0146105d457806395d89b41146105ff5780639abc83201461062a578063a0712d6814610655578063a0bcfc7f146106715761021a565b8063715018a61461054d5780637c928fe9146105645780637ec4a659146105805780638da5cb5b146105a95761021a565b80633ccfd60b116101a65780635503a0e8116101755780635503a0e8146104525780635c975abb1461047d57806362b99ad4146104a85780636352211e146104d357806370a08231146105105761021a565b80633ccfd60b146103be57806342842e0e146103d557806344a0d68a146103fe57806351830227146104275761021a565b806313faede6116101ed57806313faede6146102ed57806316ba10e01461031857806316c38b3c1461034157806318160ddd1461036a57806323b872dd146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906127f6565b610874565b6040516102539190612c92565b60405180910390f35b34801561026857600080fd5b50610271610906565b60405161027e9190612cad565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612899565b610998565b6040516102bb9190612c2b565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612789565b610a17565b005b3480156102f957600080fd5b50610302610b5b565b60405161030f9190612e0f565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612850565b610b61565b005b34801561034d57600080fd5b50610368600480360381019061036391906127c9565b610b83565b005b34801561037657600080fd5b5061037f610ba8565b60405161038c9190612e0f565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190612673565b610bbf565b005b3480156103ca57600080fd5b506103d3610ee4565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190612673565b610fc2565b005b34801561040a57600080fd5b5061042560048036038101906104209190612899565b610fe2565b005b34801561043357600080fd5b5061043c610ff4565b6040516104499190612c92565b60405180910390f35b34801561045e57600080fd5b50610467611007565b6040516104749190612cad565b60405180910390f35b34801561048957600080fd5b50610492611095565b60405161049f9190612c92565b60405180910390f35b3480156104b457600080fd5b506104bd6110a8565b6040516104ca9190612cad565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f59190612899565b611136565b6040516105079190612c2b565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190612606565b611148565b6040516105449190612e0f565b60405180910390f35b34801561055957600080fd5b50610562611201565b005b61057e60048036038101906105799190612899565b611215565b005b34801561058c57600080fd5b506105a760048036038101906105a29190612850565b6113a0565b005b3480156105b557600080fd5b506105be6113c2565b6040516105cb9190612c2b565b60405180910390f35b3480156105e057600080fd5b506105e96113ec565b6040516105f69190612e0f565b60405180910390f35b34801561060b57600080fd5b506106146113f2565b6040516106219190612cad565b60405180910390f35b34801561063657600080fd5b5061063f611484565b60405161064c9190612cad565b60405180910390f35b61066f600480360381019061066a9190612899565b611512565b005b34801561067d57600080fd5b5061069860048036038101906106939190612850565b61166b565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190612749565b61168d565b005b3480156106cf57600080fd5b506106d8611805565b6040516106e59190612e2a565b60405180910390f35b3480156106fa57600080fd5b50610715600480360381019061071091906126c6565b611818565b005b34801561072357600080fd5b5061073e60048036038101906107399190612899565b61188b565b60405161074b9190612cad565b60405180910390f35b34801561076057600080fd5b506107696119dc565b6040516107769190612e0f565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a191906127c9565b6119e2565b005b3480156107b457600080fd5b506107cf60048036038101906107ca9190612633565b611a07565b6040516107dc9190612c92565b60405180910390f35b3480156107f157600080fd5b5061080c600480360381019061080791906128c6565b611a9b565b005b34801561081a57600080fd5b5061083560048036038101906108309190612606565b611b5b565b005b34801561084357600080fd5b5061085e60048036038101906108599190612606565b611bdf565b60405161086b9190612e0f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108cf57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ff5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610915906130a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610941906130a2565b801561098e5780601f106109635761010080835404028352916020019161098e565b820191906000526020600020905b81548152906001019060200180831161097157829003601f168201915b5050505050905090565b60006109a382611bf7565b6109d9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2282611136565b90508073ffffffffffffffffffffffffffffffffffffffff16610a43611c56565b73ffffffffffffffffffffffffffffffffffffffff1614610aa657610a6f81610a6a611c56565b611a07565b610aa5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610b69611c5e565b80600b9080519060200190610b7f92919061241a565b5050565b610b8b611c5e565b80601260006101000a81548160ff02191690831515021790555050565b6000610bb2611cdc565b6001546000540303905090565b6000610bca82611ce1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c31576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3d84611daf565b91509150610c538187610c4e611c56565b611dd6565b610c9f57610c6886610c63611c56565b611a07565b610c9e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d06576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d138686866001611e1a565b8015610d1e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dec85610dc8888887611e20565b7c020000000000000000000000000000000000000000000000000000000017611e48565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e74576000600185019050600060046000838152602001908152602001600020541415610e72576000548114610e71578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610edc8686866001611e73565b505050505050565b610eec611c5e565b60026009541415610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990612dcf565b60405180910390fd5b60026009819055506000610f446113c2565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f6790612c16565b60006040518083038185875af1925050503d8060008114610fa4576040519150601f19603f3d011682016040523d82523d6000602084013e610fa9565b606091505b5050905080610fb757600080fd5b506001600981905550565b610fdd83838360405180602001604052806000815250611818565b505050565b610fea611c5e565b80600d8190555050565b601260019054906101000a900460ff1681565b600b8054611014906130a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611040906130a2565b801561108d5780601f106110625761010080835404028352916020019161108d565b820191906000526020600020905b81548152906001019060200180831161107057829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600a80546110b5906130a2565b80601f01602080910402602001604051908101604052809291908181526020018280546110e1906130a2565b801561112e5780601f106111035761010080835404028352916020019161112e565b820191906000526020600020905b81548152906001019060200180831161111157829003601f168201915b505050505081565b600061114182611ce1565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611209611c5e565b6112136000611e79565b565b8060018114611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125090612d8f565b60405180910390fd5b601060009054906101000a900460ff1660ff16601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390612d6f565b60405180910390fd5b601260009054906101000a900460ff161561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390612d2f565b60405180910390fd5b601060009054906101000a900460ff1660ff16601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061139c3383611f3f565b5050565b6113a8611c5e565b80600a90805190602001906113be92919061241a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b606060038054611401906130a2565b80601f016020809104026020016040519081016040528092919081815260200182805461142d906130a2565b801561147a5780601f1061144f5761010080835404028352916020019161147a565b820191906000526020600020905b81548152906001019060200180831161145d57829003601f168201915b5050505050905090565b600c8054611491906130a2565b80601f01602080910402602001604051908101604052809291908181526020018280546114bd906130a2565b801561150a5780601f106114df5761010080835404028352916020019161150a565b820191906000526020600020905b8154815290600101906020018083116114ed57829003601f168201915b505050505081565b806000811180156115255750600f548111155b611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90612cef565b60405180910390fd5b600e5481611570610ba8565b61157a9190612f2f565b11156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290612daf565b60405180910390fd5b8180600d546115ca9190612f85565b34101561160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390612def565b60405180910390fd5b601260009054906101000a900460ff161561165c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165390612d2f565b60405180910390fd5b6116663384611f3f565b505050565b611673611c5e565b80600c908051906020019061168992919061241a565b5050565b611695611c56565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116fa576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611707611c56565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117b4611c56565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f99190612c92565b60405180910390a35050565b601060009054906101000a900460ff1681565b611823848484610bbf565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118855761184e84848484611f5d565b611884576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061189682611bf7565b6118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90612d4f565b60405180910390fd5b601260019054906101000a900460ff1661197b57600c80546118f6906130a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611922906130a2565b801561196f5780601f106119445761010080835404028352916020019161196f565b820191906000526020600020905b81548152906001019060200180831161195257829003601f168201915b505050505090506119d7565b60006119856120bd565b905060008151116119a557604051806020016040528060008152506119d3565b806119af8461214f565b600b6040516020016119c393929190612be5565b6040516020818303038152906040525b9150505b919050565b600e5481565b6119ea611c5e565b80601260016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611aae5750600f548111155b611aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae490612cef565b60405180910390fd5b600e5481611af9610ba8565b611b039190612f2f565b1115611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b90612daf565b60405180910390fd5b611b4c611c5e565b611b568284611f3f565b505050565b611b63611c5e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca90612ccf565b60405180910390fd5b611bdc81611e79565b50565b60116020528060005260406000206000915090505481565b600081611c02611cdc565b11158015611c11575060005482105b8015611c4f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611c6661219f565b73ffffffffffffffffffffffffffffffffffffffff16611c846113c2565b73ffffffffffffffffffffffffffffffffffffffff1614611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd190612d0f565b60405180910390fd5b565b600090565b60008082905080611cf0611cdc565b11611d7857600054811015611d775760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d75575b6000811415611d6b576004600083600190039350838152602001908152602001600020549050611d40565b8092505050611daa565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e378686846121a7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f598282604051806020016040528060008152506121b0565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f83611c56565b8786866040518563ffffffff1660e01b8152600401611fa59493929190612c46565b602060405180830381600087803b158015611fbf57600080fd5b505af1925050508015611ff057506040513d601f19601f82011682018060405250810190611fed9190612823565b60015b61206a573d8060008114612020576040519150601f19603f3d011682016040523d82523d6000602084013e612025565b606091505b50600081511415612062576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546120cc906130a2565b80601f01602080910402602001604051908101604052809291908181526020018280546120f8906130a2565b80156121455780601f1061211a57610100808354040283529160200191612145565b820191906000526020600020905b81548152906001019060200180831161212857829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561218b57600183039250600a81066030018353600a81049050806121865761218b565b612160565b508181036020830392508083525050919050565b600033905090565b60009392505050565b6121ba838361224d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461224857600080549050600083820390505b6121fa6000868380600101945086611f5d565b612230576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121e757816000541461224557600080fd5b50505b505050565b600080549050600082141561228e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61229b6000848385611e1a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612312836123036000866000611e20565b61230c8561240a565b17611e48565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123b357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612378565b5060008214156123ef576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124056000848385611e73565b505050565b60006001821460e11b9050919050565b828054612426906130a2565b90600052602060002090601f016020900481019282612448576000855561248f565b82601f1061246157805160ff191683800117855561248f565b8280016001018555821561248f579182015b8281111561248e578251825591602001919060010190612473565b5b50905061249c91906124a0565b5090565b5b808211156124b95760008160009055506001016124a1565b5090565b60006124d06124cb84612e6a565b612e45565b9050828152602081018484840111156124ec576124eb613197565b5b6124f7848285613060565b509392505050565b600061251261250d84612e9b565b612e45565b90508281526020810184848401111561252e5761252d613197565b5b612539848285613060565b509392505050565b600081359050612550816133a0565b92915050565b600081359050612565816133b7565b92915050565b60008135905061257a816133ce565b92915050565b60008151905061258f816133ce565b92915050565b600082601f8301126125aa576125a9613192565b5b81356125ba8482602086016124bd565b91505092915050565b600082601f8301126125d8576125d7613192565b5b81356125e88482602086016124ff565b91505092915050565b600081359050612600816133e5565b92915050565b60006020828403121561261c5761261b6131a1565b5b600061262a84828501612541565b91505092915050565b6000806040838503121561264a576126496131a1565b5b600061265885828601612541565b925050602061266985828601612541565b9150509250929050565b60008060006060848603121561268c5761268b6131a1565b5b600061269a86828701612541565b93505060206126ab86828701612541565b92505060406126bc868287016125f1565b9150509250925092565b600080600080608085870312156126e0576126df6131a1565b5b60006126ee87828801612541565b94505060206126ff87828801612541565b9350506040612710878288016125f1565b925050606085013567ffffffffffffffff8111156127315761273061319c565b5b61273d87828801612595565b91505092959194509250565b600080604083850312156127605761275f6131a1565b5b600061276e85828601612541565b925050602061277f85828601612556565b9150509250929050565b600080604083850312156127a05761279f6131a1565b5b60006127ae85828601612541565b92505060206127bf858286016125f1565b9150509250929050565b6000602082840312156127df576127de6131a1565b5b60006127ed84828501612556565b91505092915050565b60006020828403121561280c5761280b6131a1565b5b600061281a8482850161256b565b91505092915050565b600060208284031215612839576128386131a1565b5b600061284784828501612580565b91505092915050565b600060208284031215612866576128656131a1565b5b600082013567ffffffffffffffff8111156128845761288361319c565b5b612890848285016125c3565b91505092915050565b6000602082840312156128af576128ae6131a1565b5b60006128bd848285016125f1565b91505092915050565b600080604083850312156128dd576128dc6131a1565b5b60006128eb858286016125f1565b92505060206128fc85828601612541565b9150509250929050565b61290f81612fdf565b82525050565b61291e81612ff1565b82525050565b600061292f82612ee1565b6129398185612ef7565b935061294981856020860161306f565b612952816131a6565b840191505092915050565b600061296882612eec565b6129728185612f13565b935061298281856020860161306f565b61298b816131a6565b840191505092915050565b60006129a182612eec565b6129ab8185612f24565b93506129bb81856020860161306f565b80840191505092915050565b600081546129d4816130a2565b6129de8186612f24565b945060018216600081146129f95760018114612a0a57612a3d565b60ff19831686528186019350612a3d565b612a1385612ecc565b60005b83811015612a3557815481890152600182019150602081019050612a16565b838801955050505b50505092915050565b6000612a53602683612f13565b9150612a5e826131b7565b604082019050919050565b6000612a76601483612f13565b9150612a8182613206565b602082019050919050565b6000612a99602083612f13565b9150612aa48261322f565b602082019050919050565b6000612abc601783612f13565b9150612ac782613258565b602082019050919050565b6000612adf602f83612f13565b9150612aea82613281565b604082019050919050565b6000612b02601983612f13565b9150612b0d826132d0565b602082019050919050565b6000612b25601e83612f13565b9150612b30826132f9565b602082019050919050565b6000612b48600083612f08565b9150612b5382613322565b600082019050919050565b6000612b6b601483612f13565b9150612b7682613325565b602082019050919050565b6000612b8e601f83612f13565b9150612b998261334e565b602082019050919050565b6000612bb1601383612f13565b9150612bbc82613377565b602082019050919050565b612bd081613049565b82525050565b612bdf81613053565b82525050565b6000612bf18286612996565b9150612bfd8285612996565b9150612c0982846129c7565b9150819050949350505050565b6000612c2182612b3b565b9150819050919050565b6000602082019050612c406000830184612906565b92915050565b6000608082019050612c5b6000830187612906565b612c686020830186612906565b612c756040830185612bc7565b8181036060830152612c878184612924565b905095945050505050565b6000602082019050612ca76000830184612915565b92915050565b60006020820190508181036000830152612cc7818461295d565b905092915050565b60006020820190508181036000830152612ce881612a46565b9050919050565b60006020820190508181036000830152612d0881612a69565b9050919050565b60006020820190508181036000830152612d2881612a8c565b9050919050565b60006020820190508181036000830152612d4881612aaf565b9050919050565b60006020820190508181036000830152612d6881612ad2565b9050919050565b60006020820190508181036000830152612d8881612af5565b9050919050565b60006020820190508181036000830152612da881612b18565b9050919050565b60006020820190508181036000830152612dc881612b5e565b9050919050565b60006020820190508181036000830152612de881612b81565b9050919050565b60006020820190508181036000830152612e0881612ba4565b9050919050565b6000602082019050612e246000830184612bc7565b92915050565b6000602082019050612e3f6000830184612bd6565b92915050565b6000612e4f612e60565b9050612e5b82826130d4565b919050565b6000604051905090565b600067ffffffffffffffff821115612e8557612e84613163565b5b612e8e826131a6565b9050602081019050919050565b600067ffffffffffffffff821115612eb657612eb5613163565b5b612ebf826131a6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f3a82613049565b9150612f4583613049565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f7a57612f79613105565b5b828201905092915050565b6000612f9082613049565b9150612f9b83613049565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fd457612fd3613105565b5b828202905092915050565b6000612fea82613029565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561308d578082015181840152602081019050613072565b8381111561309c576000848401525b50505050565b600060028204905060018216806130ba57607f821691505b602082108114156130ce576130cd613134565b5b50919050565b6130dd826131a6565b810181811067ffffffffffffffff821117156130fc576130fb613163565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178206672656520737570706c792065786365656465642100000000000000600082015250565b7f4d696e7420616d6f756e74206d75737420626520657175616c20746f20310000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6133a981612fdf565b81146133b457600080fd5b50565b6133c081612ff1565b81146133cb57600080fd5b50565b6133d781612ffd565b81146133e257600080fd5b50565b6133ee81613049565b81146133f957600080fd5b5056fea2646970667358221220e5c5d32322b6467e1da1a7a5152ecece43a5e9236874e7e85ef949d9437e9d3e64736f6c63430008070033697066733a2f2f516d507a666b6454506a5a354b3173716a545444396d7461676a7a66424142635a74445374543467676a6832524500000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f4f72616e677574616e20576f726c64000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024f57000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063715018a611610123578063a22cb465116100ab578063e0a808531161006f578063e0a808531461077f578063e985e9c5146107a8578063efbd73f4146107e5578063f2fde38b1461080e578063f4db2acb146108375761021a565b8063a22cb4651461069a578063a7027357146106c3578063b88d4fde146106ee578063c87b56dd14610717578063d5abeb01146107545761021a565b806394354fd0116100f257806394354fd0146105d457806395d89b41146105ff5780639abc83201461062a578063a0712d6814610655578063a0bcfc7f146106715761021a565b8063715018a61461054d5780637c928fe9146105645780637ec4a659146105805780638da5cb5b146105a95761021a565b80633ccfd60b116101a65780635503a0e8116101755780635503a0e8146104525780635c975abb1461047d57806362b99ad4146104a85780636352211e146104d357806370a08231146105105761021a565b80633ccfd60b146103be57806342842e0e146103d557806344a0d68a146103fe57806351830227146104275761021a565b806313faede6116101ed57806313faede6146102ed57806316ba10e01461031857806316c38b3c1461034157806318160ddd1461036a57806323b872dd146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906127f6565b610874565b6040516102539190612c92565b60405180910390f35b34801561026857600080fd5b50610271610906565b60405161027e9190612cad565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612899565b610998565b6040516102bb9190612c2b565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612789565b610a17565b005b3480156102f957600080fd5b50610302610b5b565b60405161030f9190612e0f565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612850565b610b61565b005b34801561034d57600080fd5b50610368600480360381019061036391906127c9565b610b83565b005b34801561037657600080fd5b5061037f610ba8565b60405161038c9190612e0f565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190612673565b610bbf565b005b3480156103ca57600080fd5b506103d3610ee4565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190612673565b610fc2565b005b34801561040a57600080fd5b5061042560048036038101906104209190612899565b610fe2565b005b34801561043357600080fd5b5061043c610ff4565b6040516104499190612c92565b60405180910390f35b34801561045e57600080fd5b50610467611007565b6040516104749190612cad565b60405180910390f35b34801561048957600080fd5b50610492611095565b60405161049f9190612c92565b60405180910390f35b3480156104b457600080fd5b506104bd6110a8565b6040516104ca9190612cad565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f59190612899565b611136565b6040516105079190612c2b565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190612606565b611148565b6040516105449190612e0f565b60405180910390f35b34801561055957600080fd5b50610562611201565b005b61057e60048036038101906105799190612899565b611215565b005b34801561058c57600080fd5b506105a760048036038101906105a29190612850565b6113a0565b005b3480156105b557600080fd5b506105be6113c2565b6040516105cb9190612c2b565b60405180910390f35b3480156105e057600080fd5b506105e96113ec565b6040516105f69190612e0f565b60405180910390f35b34801561060b57600080fd5b506106146113f2565b6040516106219190612cad565b60405180910390f35b34801561063657600080fd5b5061063f611484565b60405161064c9190612cad565b60405180910390f35b61066f600480360381019061066a9190612899565b611512565b005b34801561067d57600080fd5b5061069860048036038101906106939190612850565b61166b565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190612749565b61168d565b005b3480156106cf57600080fd5b506106d8611805565b6040516106e59190612e2a565b60405180910390f35b3480156106fa57600080fd5b50610715600480360381019061071091906126c6565b611818565b005b34801561072357600080fd5b5061073e60048036038101906107399190612899565b61188b565b60405161074b9190612cad565b60405180910390f35b34801561076057600080fd5b506107696119dc565b6040516107769190612e0f565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a191906127c9565b6119e2565b005b3480156107b457600080fd5b506107cf60048036038101906107ca9190612633565b611a07565b6040516107dc9190612c92565b60405180910390f35b3480156107f157600080fd5b5061080c600480360381019061080791906128c6565b611a9b565b005b34801561081a57600080fd5b5061083560048036038101906108309190612606565b611b5b565b005b34801561084357600080fd5b5061085e60048036038101906108599190612606565b611bdf565b60405161086b9190612e0f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108cf57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ff5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610915906130a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610941906130a2565b801561098e5780601f106109635761010080835404028352916020019161098e565b820191906000526020600020905b81548152906001019060200180831161097157829003601f168201915b5050505050905090565b60006109a382611bf7565b6109d9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2282611136565b90508073ffffffffffffffffffffffffffffffffffffffff16610a43611c56565b73ffffffffffffffffffffffffffffffffffffffff1614610aa657610a6f81610a6a611c56565b611a07565b610aa5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610b69611c5e565b80600b9080519060200190610b7f92919061241a565b5050565b610b8b611c5e565b80601260006101000a81548160ff02191690831515021790555050565b6000610bb2611cdc565b6001546000540303905090565b6000610bca82611ce1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c31576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3d84611daf565b91509150610c538187610c4e611c56565b611dd6565b610c9f57610c6886610c63611c56565b611a07565b610c9e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d06576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d138686866001611e1a565b8015610d1e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dec85610dc8888887611e20565b7c020000000000000000000000000000000000000000000000000000000017611e48565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e74576000600185019050600060046000838152602001908152602001600020541415610e72576000548114610e71578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610edc8686866001611e73565b505050505050565b610eec611c5e565b60026009541415610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990612dcf565b60405180910390fd5b60026009819055506000610f446113c2565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f6790612c16565b60006040518083038185875af1925050503d8060008114610fa4576040519150601f19603f3d011682016040523d82523d6000602084013e610fa9565b606091505b5050905080610fb757600080fd5b506001600981905550565b610fdd83838360405180602001604052806000815250611818565b505050565b610fea611c5e565b80600d8190555050565b601260019054906101000a900460ff1681565b600b8054611014906130a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611040906130a2565b801561108d5780601f106110625761010080835404028352916020019161108d565b820191906000526020600020905b81548152906001019060200180831161107057829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600a80546110b5906130a2565b80601f01602080910402602001604051908101604052809291908181526020018280546110e1906130a2565b801561112e5780601f106111035761010080835404028352916020019161112e565b820191906000526020600020905b81548152906001019060200180831161111157829003601f168201915b505050505081565b600061114182611ce1565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611209611c5e565b6112136000611e79565b565b8060018114611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125090612d8f565b60405180910390fd5b601060009054906101000a900460ff1660ff16601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390612d6f565b60405180910390fd5b601260009054906101000a900460ff161561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390612d2f565b60405180910390fd5b601060009054906101000a900460ff1660ff16601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061139c3383611f3f565b5050565b6113a8611c5e565b80600a90805190602001906113be92919061241a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b606060038054611401906130a2565b80601f016020809104026020016040519081016040528092919081815260200182805461142d906130a2565b801561147a5780601f1061144f5761010080835404028352916020019161147a565b820191906000526020600020905b81548152906001019060200180831161145d57829003601f168201915b5050505050905090565b600c8054611491906130a2565b80601f01602080910402602001604051908101604052809291908181526020018280546114bd906130a2565b801561150a5780601f106114df5761010080835404028352916020019161150a565b820191906000526020600020905b8154815290600101906020018083116114ed57829003601f168201915b505050505081565b806000811180156115255750600f548111155b611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90612cef565b60405180910390fd5b600e5481611570610ba8565b61157a9190612f2f565b11156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290612daf565b60405180910390fd5b8180600d546115ca9190612f85565b34101561160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390612def565b60405180910390fd5b601260009054906101000a900460ff161561165c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165390612d2f565b60405180910390fd5b6116663384611f3f565b505050565b611673611c5e565b80600c908051906020019061168992919061241a565b5050565b611695611c56565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116fa576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611707611c56565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117b4611c56565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f99190612c92565b60405180910390a35050565b601060009054906101000a900460ff1681565b611823848484610bbf565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118855761184e84848484611f5d565b611884576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061189682611bf7565b6118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc90612d4f565b60405180910390fd5b601260019054906101000a900460ff1661197b57600c80546118f6906130a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611922906130a2565b801561196f5780601f106119445761010080835404028352916020019161196f565b820191906000526020600020905b81548152906001019060200180831161195257829003601f168201915b505050505090506119d7565b60006119856120bd565b905060008151116119a557604051806020016040528060008152506119d3565b806119af8461214f565b600b6040516020016119c393929190612be5565b6040516020818303038152906040525b9150505b919050565b600e5481565b6119ea611c5e565b80601260016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611aae5750600f548111155b611aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae490612cef565b60405180910390fd5b600e5481611af9610ba8565b611b039190612f2f565b1115611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b90612daf565b60405180910390fd5b611b4c611c5e565b611b568284611f3f565b505050565b611b63611c5e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca90612ccf565b60405180910390fd5b611bdc81611e79565b50565b60116020528060005260406000206000915090505481565b600081611c02611cdc565b11158015611c11575060005482105b8015611c4f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611c6661219f565b73ffffffffffffffffffffffffffffffffffffffff16611c846113c2565b73ffffffffffffffffffffffffffffffffffffffff1614611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd190612d0f565b60405180910390fd5b565b600090565b60008082905080611cf0611cdc565b11611d7857600054811015611d775760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d75575b6000811415611d6b576004600083600190039350838152602001908152602001600020549050611d40565b8092505050611daa565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e378686846121a7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f598282604051806020016040528060008152506121b0565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f83611c56565b8786866040518563ffffffff1660e01b8152600401611fa59493929190612c46565b602060405180830381600087803b158015611fbf57600080fd5b505af1925050508015611ff057506040513d601f19601f82011682018060405250810190611fed9190612823565b60015b61206a573d8060008114612020576040519150601f19603f3d011682016040523d82523d6000602084013e612025565b606091505b50600081511415612062576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546120cc906130a2565b80601f01602080910402602001604051908101604052809291908181526020018280546120f8906130a2565b80156121455780601f1061211a57610100808354040283529160200191612145565b820191906000526020600020905b81548152906001019060200180831161212857829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561218b57600183039250600a81066030018353600a81049050806121865761218b565b612160565b508181036020830392508083525050919050565b600033905090565b60009392505050565b6121ba838361224d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461224857600080549050600083820390505b6121fa6000868380600101945086611f5d565b612230576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121e757816000541461224557600080fd5b50505b505050565b600080549050600082141561228e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61229b6000848385611e1a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612312836123036000866000611e20565b61230c8561240a565b17611e48565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123b357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612378565b5060008214156123ef576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124056000848385611e73565b505050565b60006001821460e11b9050919050565b828054612426906130a2565b90600052602060002090601f016020900481019282612448576000855561248f565b82601f1061246157805160ff191683800117855561248f565b8280016001018555821561248f579182015b8281111561248e578251825591602001919060010190612473565b5b50905061249c91906124a0565b5090565b5b808211156124b95760008160009055506001016124a1565b5090565b60006124d06124cb84612e6a565b612e45565b9050828152602081018484840111156124ec576124eb613197565b5b6124f7848285613060565b509392505050565b600061251261250d84612e9b565b612e45565b90508281526020810184848401111561252e5761252d613197565b5b612539848285613060565b509392505050565b600081359050612550816133a0565b92915050565b600081359050612565816133b7565b92915050565b60008135905061257a816133ce565b92915050565b60008151905061258f816133ce565b92915050565b600082601f8301126125aa576125a9613192565b5b81356125ba8482602086016124bd565b91505092915050565b600082601f8301126125d8576125d7613192565b5b81356125e88482602086016124ff565b91505092915050565b600081359050612600816133e5565b92915050565b60006020828403121561261c5761261b6131a1565b5b600061262a84828501612541565b91505092915050565b6000806040838503121561264a576126496131a1565b5b600061265885828601612541565b925050602061266985828601612541565b9150509250929050565b60008060006060848603121561268c5761268b6131a1565b5b600061269a86828701612541565b93505060206126ab86828701612541565b92505060406126bc868287016125f1565b9150509250925092565b600080600080608085870312156126e0576126df6131a1565b5b60006126ee87828801612541565b94505060206126ff87828801612541565b9350506040612710878288016125f1565b925050606085013567ffffffffffffffff8111156127315761273061319c565b5b61273d87828801612595565b91505092959194509250565b600080604083850312156127605761275f6131a1565b5b600061276e85828601612541565b925050602061277f85828601612556565b9150509250929050565b600080604083850312156127a05761279f6131a1565b5b60006127ae85828601612541565b92505060206127bf858286016125f1565b9150509250929050565b6000602082840312156127df576127de6131a1565b5b60006127ed84828501612556565b91505092915050565b60006020828403121561280c5761280b6131a1565b5b600061281a8482850161256b565b91505092915050565b600060208284031215612839576128386131a1565b5b600061284784828501612580565b91505092915050565b600060208284031215612866576128656131a1565b5b600082013567ffffffffffffffff8111156128845761288361319c565b5b612890848285016125c3565b91505092915050565b6000602082840312156128af576128ae6131a1565b5b60006128bd848285016125f1565b91505092915050565b600080604083850312156128dd576128dc6131a1565b5b60006128eb858286016125f1565b92505060206128fc85828601612541565b9150509250929050565b61290f81612fdf565b82525050565b61291e81612ff1565b82525050565b600061292f82612ee1565b6129398185612ef7565b935061294981856020860161306f565b612952816131a6565b840191505092915050565b600061296882612eec565b6129728185612f13565b935061298281856020860161306f565b61298b816131a6565b840191505092915050565b60006129a182612eec565b6129ab8185612f24565b93506129bb81856020860161306f565b80840191505092915050565b600081546129d4816130a2565b6129de8186612f24565b945060018216600081146129f95760018114612a0a57612a3d565b60ff19831686528186019350612a3d565b612a1385612ecc565b60005b83811015612a3557815481890152600182019150602081019050612a16565b838801955050505b50505092915050565b6000612a53602683612f13565b9150612a5e826131b7565b604082019050919050565b6000612a76601483612f13565b9150612a8182613206565b602082019050919050565b6000612a99602083612f13565b9150612aa48261322f565b602082019050919050565b6000612abc601783612f13565b9150612ac782613258565b602082019050919050565b6000612adf602f83612f13565b9150612aea82613281565b604082019050919050565b6000612b02601983612f13565b9150612b0d826132d0565b602082019050919050565b6000612b25601e83612f13565b9150612b30826132f9565b602082019050919050565b6000612b48600083612f08565b9150612b5382613322565b600082019050919050565b6000612b6b601483612f13565b9150612b7682613325565b602082019050919050565b6000612b8e601f83612f13565b9150612b998261334e565b602082019050919050565b6000612bb1601383612f13565b9150612bbc82613377565b602082019050919050565b612bd081613049565b82525050565b612bdf81613053565b82525050565b6000612bf18286612996565b9150612bfd8285612996565b9150612c0982846129c7565b9150819050949350505050565b6000612c2182612b3b565b9150819050919050565b6000602082019050612c406000830184612906565b92915050565b6000608082019050612c5b6000830187612906565b612c686020830186612906565b612c756040830185612bc7565b8181036060830152612c878184612924565b905095945050505050565b6000602082019050612ca76000830184612915565b92915050565b60006020820190508181036000830152612cc7818461295d565b905092915050565b60006020820190508181036000830152612ce881612a46565b9050919050565b60006020820190508181036000830152612d0881612a69565b9050919050565b60006020820190508181036000830152612d2881612a8c565b9050919050565b60006020820190508181036000830152612d4881612aaf565b9050919050565b60006020820190508181036000830152612d6881612ad2565b9050919050565b60006020820190508181036000830152612d8881612af5565b9050919050565b60006020820190508181036000830152612da881612b18565b9050919050565b60006020820190508181036000830152612dc881612b5e565b9050919050565b60006020820190508181036000830152612de881612b81565b9050919050565b60006020820190508181036000830152612e0881612ba4565b9050919050565b6000602082019050612e246000830184612bc7565b92915050565b6000602082019050612e3f6000830184612bd6565b92915050565b6000612e4f612e60565b9050612e5b82826130d4565b919050565b6000604051905090565b600067ffffffffffffffff821115612e8557612e84613163565b5b612e8e826131a6565b9050602081019050919050565b600067ffffffffffffffff821115612eb657612eb5613163565b5b612ebf826131a6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f3a82613049565b9150612f4583613049565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f7a57612f79613105565b5b828201905092915050565b6000612f9082613049565b9150612f9b83613049565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fd457612fd3613105565b5b828202905092915050565b6000612fea82613029565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561308d578082015181840152602081019050613072565b8381111561309c576000848401525b50505050565b600060028204905060018216806130ba57607f821691505b602082108114156130ce576130cd613134565b5b50919050565b6130dd826131a6565b810181811067ffffffffffffffff821117156130fc576130fb613163565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178206672656520737570706c792065786365656465642100000000000000600082015250565b7f4d696e7420616d6f756e74206d75737420626520657175616c20746f20310000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6133a981612fdf565b81146133b457600080fd5b50565b6133c081612ff1565b81146133cb57600080fd5b50565b6133d781612ffd565b81146133e257600080fd5b50565b6133ee81613049565b81146133f957600080fd5b5056fea2646970667358221220e5c5d32322b6467e1da1a7a5152ecece43a5e9236874e7e85ef949d9437e9d3e64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f4f72616e677574616e20576f726c64000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024f57000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Orangutan World
Arg [1] : _tokenSymbol (string): OW

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [3] : 4f72616e677574616e20576f726c640000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 4f57000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

57289:3154:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24820:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25722:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32205:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31646:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57512:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59898:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60004:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21473:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35912:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60180:150;;;;;;;;;;;;;:::i;:::-;;38825:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59622:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57757:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57388:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57727:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57355:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27115:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22657:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5568:103;;;;;;;;;;;;;:::i;:::-;;58561:243;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59792:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4920:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57586:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25898:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57426:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58810:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59702:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32763:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57628:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39608:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59189:427;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57550:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60087:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33228:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59028:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5826:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57668:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24820:639;24905:4;25244:10;25229:25;;:11;:25;;;;:102;;;;25321:10;25306:25;;:11;:25;;;;25229:102;:179;;;;25398:10;25383:25;;:11;:25;;;;25229:179;25209:199;;24820:639;;;:::o;25722:100::-;25776:13;25809:5;25802:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25722:100;:::o;32205:218::-;32281:7;32306:16;32314:7;32306;:16::i;:::-;32301:64;;32331:34;;;;;;;;;;;;;;32301:64;32385:15;:24;32401:7;32385:24;;;;;;;;;;;:30;;;;;;;;;;;;32378:37;;32205:218;;;:::o;31646:400::-;31727:13;31743:16;31751:7;31743;:16::i;:::-;31727:32;;31799:5;31776:28;;:19;:17;:19::i;:::-;:28;;;31772:175;;31824:44;31841:5;31848:19;:17;:19::i;:::-;31824:16;:44::i;:::-;31819:128;;31896:35;;;;;;;;;;;;;;31819:128;31772:175;31992:2;31959:15;:24;31975:7;31959:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32030:7;32026:2;32010:28;;32019:5;32010:28;;;;;;;;;;;;31716:330;31646:400;;:::o;57512:33::-;;;;:::o;59898:100::-;4806:13;:11;:13::i;:::-;59982:10:::1;59970:9;:22;;;;;;;;;;;;:::i;:::-;;59898:100:::0;:::o;60004:77::-;4806:13;:11;:13::i;:::-;60069:6:::1;60060;;:15;;;;;;;;;;;;;;;;;;60004:77:::0;:::o;21473:323::-;21534:7;21762:15;:13;:15::i;:::-;21747:12;;21731:13;;:28;:46;21724:53;;21473:323;:::o;35912:2817::-;36046:27;36076;36095:7;36076:18;:27::i;:::-;36046:57;;36161:4;36120:45;;36136:19;36120:45;;;36116:86;;36174:28;;;;;;;;;;;;;;36116:86;36216:27;36245:23;36272:35;36299:7;36272:26;:35::i;:::-;36215:92;;;;36407:68;36432:15;36449:4;36455:19;:17;:19::i;:::-;36407:24;:68::i;:::-;36402:180;;36495:43;36512:4;36518:19;:17;:19::i;:::-;36495:16;:43::i;:::-;36490:92;;36547:35;;;;;;;;;;;;;;36490:92;36402:180;36613:1;36599:16;;:2;:16;;;36595:52;;;36624:23;;;;;;;;;;;;;;36595:52;36660:43;36682:4;36688:2;36692:7;36701:1;36660:21;:43::i;:::-;36796:15;36793:160;;;36936:1;36915:19;36908:30;36793:160;37333:18;:24;37352:4;37333:24;;;;;;;;;;;;;;;;37331:26;;;;;;;;;;;;37402:18;:22;37421:2;37402:22;;;;;;;;;;;;;;;;37400:24;;;;;;;;;;;37724:146;37761:2;37810:45;37825:4;37831:2;37835:19;37810:14;:45::i;:::-;17872:8;37782:73;37724:18;:146::i;:::-;37695:17;:26;37713:7;37695:26;;;;;;;;;;;:175;;;;38041:1;17872:8;37990:19;:47;:52;37986:627;;;38063:19;38095:1;38085:7;:11;38063:33;;38252:1;38218:17;:30;38236:11;38218:30;;;;;;;;;;;;:35;38214:384;;;38356:13;;38341:11;:28;38337:242;;38536:19;38503:17;:30;38521:11;38503:30;;;;;;;;;;;:52;;;;38337:242;38214:384;38044:569;37986:627;38660:7;38656:2;38641:27;;38650:4;38641:27;;;;;;;;;;;;38679:42;38700:4;38706:2;38710:7;38719:1;38679:20;:42::i;:::-;36035:2694;;;35912:2817;;;:::o;60180:150::-;4806:13;:11;:13::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;60238:7:::2;60259;:5;:7::i;:::-;60251:21;;60280;60251:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60237:69;;;60321:2;60313:11;;;::::0;::::2;;60230:100;1801:1:::1;2755:7;:22;;;;60180:150::o:0;38825:185::-;38963:39;38980:4;38986:2;38990:7;38963:39;;;;;;;;;;;;:16;:39::i;:::-;38825:185;;;:::o;59622:74::-;4806:13;:11;:13::i;:::-;59685:5:::1;59678:4;:12;;;;59622:74:::0;:::o;57757:28::-;;;;;;;;;;;;;:::o;57388:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57727:25::-;;;;;;;;;;;;;:::o;57355:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27115:152::-;27187:7;27230:27;27249:7;27230:18;:27::i;:::-;27207:52;;27115:152;;;:::o;22657:233::-;22729:7;22770:1;22753:19;;:5;:19;;;22749:60;;;22781:28;;;;;;;;;;;;;;22749:60;16816:13;22827:18;:25;22846:5;22827:25;;;;;;;;;;;;;;;;:55;22820:62;;22657:233;;;:::o;5568:103::-;4806:13;:11;:13::i;:::-;5633:30:::1;5660:1;5633:18;:30::i;:::-;5568:103::o:0;58561:243::-;58639:11;58412:1;58397:11;:16;58389:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;58495:16;;;;;;;;;;;58463:48;;:17;:29;58481:10;58463:29;;;;;;;;;;;;;;;;:48;58455:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;58668:6:::1;;;;;;;;;;;58667:7;58659:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;58741:16;;;;;;;;;;;58709:48;;:17;:29;58727:10;58709:29;;;;;;;;;;;;;;;:48;;;;58764:34;58774:10;58786:11;58764:9;:34::i;:::-;58561:243:::0;;:::o;59792:100::-;4806:13;:11;:13::i;:::-;59876:10:::1;59864:9;:22;;;;;;;;;;;;:::i;:::-;;59792:100:::0;:::o;4920:87::-;4966:7;4993:6;;;;;;;;;;;4986:13;;4920:87;:::o;57586:37::-;;;;:::o;25898:104::-;25954:13;25987:7;25980:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25898:104;:::o;57426:79::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58810:210::-;58875:11;58025:1;58011:11;:15;:52;;;;;58045:18;;58030:11;:33;;58011:52;58003:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58134:9;;58119:11;58103:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58095:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58908:11:::1;58273;58266:4;;:18;;;;:::i;:::-;58253:9;:31;;58245:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;58937:6:::2;;;;;;;;;;;58936:7;58928:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;58980:34;58990:10;59002:11;58980:9;:34::i;:::-;58175:1:::1;58810:210:::0;;:::o;59702:84::-;4806:13;:11;:13::i;:::-;59776:4:::1;59766:7;:14;;;;;;;;;;;;:::i;:::-;;59702:84:::0;:::o;32763:308::-;32874:19;:17;:19::i;:::-;32862:31;;:8;:31;;;32858:61;;;32902:17;;;;;;;;;;;;;;32858:61;32984:8;32932:18;:39;32951:19;:17;:19::i;:::-;32932:39;;;;;;;;;;;;;;;:49;32972:8;32932:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33044:8;33008:55;;33023:19;:17;:19::i;:::-;33008:55;;;33054:8;33008:55;;;;;;:::i;:::-;;;;;;;;32763:308;;:::o;57628:35::-;;;;;;;;;;;;;:::o;39608:399::-;39775:31;39788:4;39794:2;39798:7;39775:12;:31::i;:::-;39839:1;39821:2;:14;;;:19;39817:183;;39860:56;39891:4;39897:2;39901:7;39910:5;39860:30;:56::i;:::-;39855:145;;39944:40;;;;;;;;;;;;;;39855:145;39817:183;39608:399;;;;:::o;59189:427::-;59263:13;59293:17;59301:8;59293:7;:17::i;:::-;59285:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;59376:8;;;;;;;;;;;59371:46;;59402:7;59395:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59371:46;59425:28;59456:10;:8;:10::i;:::-;59425:41;;59511:1;59486:14;59480:28;:32;:130;;;;;;;;;;;;;;;;;59548:14;59564:19;59574:8;59564:9;:19::i;:::-;59585:9;59531:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59480:130;59473:137;;;59189:427;;;;:::o;57550:31::-;;;;:::o;60087:87::-;4806:13;:11;:13::i;:::-;60159:9:::1;60148:8;;:20;;;;;;;;;;;;;;;;;;60087:87:::0;:::o;33228:164::-;33325:4;33349:18;:25;33368:5;33349:25;;;;;;;;;;;;;;;:35;33375:8;33349:35;;;;;;;;;;;;;;;;;;;;;;;;;33342:42;;33228:164;;;;:::o;59028:155::-;59114:11;58025:1;58011:11;:15;:52;;;;;58045:18;;58030:11;:33;;58011:52;58003:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58134:9;;58119:11;58103:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;58095:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4806:13:::1;:11;:13::i;:::-;59144:33:::2;59154:9;59165:11;59144:9;:33::i;:::-;59028:155:::0;;;:::o;5826:201::-;4806:13;:11;:13::i;:::-;5935:1:::1;5915:22;;:8;:22;;;;5907:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5991:28;6010:8;5991:18;:28::i;:::-;5826:201:::0;:::o;57668:52::-;;;;;;;;;;;;;;;;;:::o;33650:282::-;33715:4;33771:7;33752:15;:13;:15::i;:::-;:26;;:66;;;;;33805:13;;33795:7;:23;33752:66;:153;;;;;33904:1;17592:8;33856:17;:26;33874:7;33856:26;;;;;;;;;;;;:44;:49;33752:153;33732:173;;33650:282;;;:::o;55416:105::-;55476:7;55503:10;55496:17;;55416:105;:::o;5085:132::-;5160:12;:10;:12::i;:::-;5149:23;;:7;:5;:7::i;:::-;:23;;;5141:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5085:132::o;20989:92::-;21045:7;20989:92;:::o;28270:1275::-;28337:7;28357:12;28372:7;28357:22;;28440:4;28421:15;:13;:15::i;:::-;:23;28417:1061;;28474:13;;28467:4;:20;28463:1015;;;28512:14;28529:17;:23;28547:4;28529:23;;;;;;;;;;;;28512:40;;28646:1;17592:8;28618:6;:24;:29;28614:845;;;29283:113;29300:1;29290:6;:11;29283:113;;;29343:17;:25;29361:6;;;;;;;29343:25;;;;;;;;;;;;29334:34;;29283:113;;;29429:6;29422:13;;;;;;28614:845;28489:989;28463:1015;28417:1061;29506:31;;;;;;;;;;;;;;28270:1275;;;;:::o;34813:479::-;34915:27;34944:23;34985:38;35026:15;:24;35042:7;35026:24;;;;;;;;;;;34985:65;;35197:18;35174:41;;35254:19;35248:26;35229:45;;35159:126;34813:479;;;:::o;34041:659::-;34190:11;34355:16;34348:5;34344:28;34335:37;;34515:16;34504:9;34500:32;34487:45;;34665:15;34654:9;34651:30;34643:5;34632:9;34629:20;34626:56;34616:66;;34041:659;;;;;:::o;40669:159::-;;;;;:::o;54725:311::-;54860:7;54880:16;17996:3;54906:19;:41;;54880:68;;17996:3;54974:31;54985:4;54991:2;54995:9;54974:10;:31::i;:::-;54966:40;;:62;;54959:69;;;54725:311;;;;;:::o;30093:450::-;30173:14;30341:16;30334:5;30330:28;30321:37;;30518:5;30504:11;30479:23;30475:41;30472:52;30465:5;30462:63;30452:73;;30093:450;;;;:::o;41493:158::-;;;;;:::o;6187:191::-;6261:16;6280:6;;;;;;;;;;;6261:25;;6306:8;6297:6;;:17;;;;;;;;;;;;;;;;;;6361:8;6330:40;;6351:8;6330:40;;;;;;;;;;;;6250:128;6187:191;:::o;49248:112::-;49325:27;49335:2;49339:8;49325:27;;;;;;;;;;;;:9;:27::i;:::-;49248:112;;:::o;42091:716::-;42254:4;42300:2;42275:45;;;42321:19;:17;:19::i;:::-;42342:4;42348:7;42357:5;42275:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42271:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42575:1;42558:6;:13;:18;42554:235;;;42604:40;;;;;;;;;;;;;;42554:235;42747:6;42741:13;42732:6;42728:2;42724:15;42717:38;42271:529;42444:54;;;42434:64;;;:6;:64;;;;42427:71;;;42091:716;;;;;;:::o;60336:104::-;60396:13;60425:9;60418:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60336:104;:::o;55623:1581::-;55688:17;56113:4;56106;56100:11;56096:22;56089:29;;56205:3;56199:4;56192:17;56311:3;56550:5;56532:428;56558:1;56532:428;;;56598:1;56593:3;56589:11;56582:18;;56769:2;56763:4;56759:13;56755:2;56751:22;56746:3;56738:36;56863:2;56857:4;56853:13;56845:21;;56930:4;56920:25;;56938:5;;56920:25;56532:428;;;56536:21;56999:3;56994;56990:13;57114:4;57109:3;57105:14;57098:21;;57179:6;57174:3;57167:19;55727:1470;;55623:1581;;;:::o;3471:98::-;3524:7;3551:10;3544:17;;3471:98;:::o;54426:147::-;54563:6;54426:147;;;;;:::o;48475:689::-;48606:19;48612:2;48616:8;48606:5;:19::i;:::-;48685:1;48667:2;:14;;;:19;48663:483;;48707:11;48721:13;;48707:27;;48753:13;48775:8;48769:3;:14;48753:30;;48802:233;48833:62;48872:1;48876:2;48880:7;;;;;;48889:5;48833:30;:62::i;:::-;48828:167;;48931:40;;;;;;;;;;;;;;48828:167;49030:3;49022:5;:11;48802:233;;49117:3;49100:13;;:20;49096:34;;49122:8;;;49096:34;48688:458;;48663:483;48475:689;;;:::o;43269:2454::-;43342:20;43365:13;;43342:36;;43405:1;43393:8;:13;43389:44;;;43415:18;;;;;;;;;;;;;;43389:44;43446:61;43476:1;43480:2;43484:12;43498:8;43446:21;:61::i;:::-;43990:1;16954:2;43960:1;:26;;43959:32;43947:8;:45;43921:18;:22;43940:2;43921:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44269:139;44306:2;44360:33;44383:1;44387:2;44391:1;44360:14;:33::i;:::-;44327:30;44348:8;44327:20;:30::i;:::-;:66;44269:18;:139::i;:::-;44235:17;:31;44253:12;44235:31;;;;;;;;;;;:173;;;;44425:16;44456:11;44485:8;44470:12;:23;44456:37;;44740:16;44736:2;44732:25;44720:37;;45112:12;45072:8;45031:1;44969:25;44910:1;44849;44822:335;45237:1;45223:12;45219:20;45177:346;45278:3;45269:7;45266:16;45177:346;;45496:7;45486:8;45483:1;45456:25;45453:1;45450;45445:59;45331:1;45322:7;45318:15;45307:26;;45177:346;;;45181:77;45568:1;45556:8;:13;45552:45;;;45578:19;;;;;;;;;;;;;;45552:45;45630:3;45614:13;:19;;;;43695:1950;;45655:60;45684:1;45688:2;45692:12;45706:8;45655:20;:60::i;:::-;43331:2392;43269:2454;;:::o;30645:324::-;30715:14;30948:1;30938:8;30935:15;30909:24;30905:46;30895:56;;30645: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:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9349:845::-;9452:3;9489:5;9483:12;9518:36;9544:9;9518:36;:::i;:::-;9570:89;9652:6;9647:3;9570:89;:::i;:::-;9563:96;;9690:1;9679:9;9675:17;9706:1;9701:137;;;;9852:1;9847:341;;;;9668:520;;9701:137;9785:4;9781:9;9770;9766:25;9761:3;9754:38;9821:6;9816:3;9812:16;9805:23;;9701:137;;9847:341;9914:38;9946:5;9914:38;:::i;:::-;9974:1;9988:154;10002:6;9999:1;9996:13;9988:154;;;10076:7;10070:14;10066:1;10061:3;10057:11;10050:35;10126:1;10117:7;10113:15;10102:26;;10024:4;10021:1;10017:12;10012:17;;9988:154;;;10171:6;10166:3;10162:16;10155:23;;9854:334;;9668:520;;9456:738;;9349:845;;;;:::o;10200:366::-;10342:3;10363:67;10427:2;10422:3;10363:67;:::i;:::-;10356:74;;10439:93;10528:3;10439:93;:::i;:::-;10557:2;10552:3;10548:12;10541:19;;10200:366;;;:::o;10572:::-;10714:3;10735:67;10799:2;10794:3;10735:67;:::i;:::-;10728:74;;10811:93;10900:3;10811:93;:::i;:::-;10929:2;10924:3;10920:12;10913:19;;10572:366;;;:::o;10944:::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:::-;11458:3;11479:67;11543:2;11538:3;11479:67;:::i;:::-;11472:74;;11555:93;11644:3;11555:93;:::i;:::-;11673:2;11668:3;11664:12;11657:19;;11316:366;;;:::o;11688:::-;11830:3;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11927:93;12016:3;11927:93;:::i;:::-;12045:2;12040:3;12036:12;12029:19;;11688:366;;;:::o;12060:::-;12202:3;12223:67;12287:2;12282:3;12223:67;:::i;:::-;12216:74;;12299:93;12388:3;12299:93;:::i;:::-;12417:2;12412:3;12408:12;12401:19;;12060:366;;;:::o;12432:::-;12574:3;12595:67;12659:2;12654:3;12595:67;:::i;:::-;12588:74;;12671:93;12760:3;12671:93;:::i;:::-;12789:2;12784:3;12780:12;12773:19;;12432:366;;;:::o;12804:398::-;12963:3;12984:83;13065:1;13060:3;12984:83;:::i;:::-;12977:90;;13076:93;13165:3;13076:93;:::i;:::-;13194:1;13189:3;13185:11;13178:18;;12804:398;;;:::o;13208:366::-;13350:3;13371:67;13435:2;13430:3;13371:67;:::i;:::-;13364:74;;13447:93;13536:3;13447:93;:::i;:::-;13565:2;13560:3;13556:12;13549:19;;13208:366;;;:::o;13580:::-;13722:3;13743:67;13807:2;13802:3;13743:67;:::i;:::-;13736:74;;13819:93;13908:3;13819:93;:::i;:::-;13937:2;13932:3;13928:12;13921:19;;13580:366;;;:::o;13952:::-;14094:3;14115:67;14179:2;14174:3;14115:67;:::i;:::-;14108:74;;14191:93;14280:3;14191:93;:::i;:::-;14309:2;14304:3;14300:12;14293:19;;13952:366;;;:::o;14324:118::-;14411:24;14429:5;14411:24;:::i;:::-;14406:3;14399:37;14324:118;;:::o;14448:112::-;14531:22;14547:5;14531:22;:::i;:::-;14526:3;14519:35;14448:112;;:::o;14566:589::-;14791:3;14813:95;14904:3;14895:6;14813:95;:::i;:::-;14806:102;;14925:95;15016:3;15007:6;14925:95;:::i;:::-;14918:102;;15037:92;15125:3;15116:6;15037:92;:::i;:::-;15030:99;;15146:3;15139:10;;14566:589;;;;;;:::o;15161:379::-;15345:3;15367:147;15510:3;15367:147;:::i;:::-;15360:154;;15531:3;15524:10;;15161:379;;;:::o;15546:222::-;15639:4;15677:2;15666:9;15662:18;15654:26;;15690:71;15758:1;15747:9;15743:17;15734:6;15690:71;:::i;:::-;15546:222;;;;:::o;15774:640::-;15969:4;16007:3;15996:9;15992:19;15984:27;;16021:71;16089:1;16078:9;16074:17;16065:6;16021:71;:::i;:::-;16102:72;16170:2;16159:9;16155:18;16146:6;16102:72;:::i;:::-;16184;16252:2;16241:9;16237:18;16228:6;16184:72;:::i;:::-;16303:9;16297:4;16293:20;16288:2;16277:9;16273:18;16266:48;16331:76;16402:4;16393:6;16331:76;:::i;:::-;16323:84;;15774:640;;;;;;;:::o;16420:210::-;16507:4;16545:2;16534:9;16530:18;16522:26;;16558:65;16620:1;16609:9;16605:17;16596:6;16558:65;:::i;:::-;16420:210;;;;:::o;16636:313::-;16749:4;16787:2;16776:9;16772:18;16764:26;;16836:9;16830:4;16826:20;16822:1;16811:9;16807:17;16800:47;16864:78;16937:4;16928:6;16864:78;:::i;:::-;16856:86;;16636:313;;;;:::o;16955:419::-;17121:4;17159:2;17148:9;17144:18;17136:26;;17208:9;17202:4;17198:20;17194:1;17183:9;17179:17;17172:47;17236:131;17362:4;17236:131;:::i;:::-;17228:139;;16955:419;;;:::o;17380:::-;17546:4;17584:2;17573:9;17569:18;17561:26;;17633:9;17627:4;17623:20;17619:1;17608:9;17604:17;17597:47;17661:131;17787:4;17661:131;:::i;:::-;17653:139;;17380:419;;;:::o;17805:::-;17971:4;18009:2;17998:9;17994:18;17986:26;;18058:9;18052:4;18048:20;18044:1;18033:9;18029:17;18022:47;18086:131;18212:4;18086:131;:::i;:::-;18078:139;;17805:419;;;:::o;18230:::-;18396:4;18434:2;18423:9;18419:18;18411:26;;18483:9;18477:4;18473:20;18469:1;18458:9;18454:17;18447:47;18511:131;18637:4;18511:131;:::i;:::-;18503:139;;18230:419;;;:::o;18655:::-;18821:4;18859:2;18848:9;18844:18;18836:26;;18908:9;18902:4;18898:20;18894:1;18883:9;18879:17;18872:47;18936:131;19062:4;18936:131;:::i;:::-;18928:139;;18655:419;;;:::o;19080:::-;19246:4;19284:2;19273:9;19269:18;19261:26;;19333:9;19327:4;19323:20;19319:1;19308:9;19304:17;19297:47;19361:131;19487:4;19361:131;:::i;:::-;19353:139;;19080:419;;;:::o;19505:::-;19671:4;19709:2;19698:9;19694:18;19686:26;;19758:9;19752:4;19748:20;19744:1;19733:9;19729:17;19722:47;19786:131;19912:4;19786:131;:::i;:::-;19778:139;;19505:419;;;:::o;19930:::-;20096:4;20134:2;20123:9;20119:18;20111:26;;20183:9;20177:4;20173:20;20169:1;20158:9;20154:17;20147:47;20211:131;20337:4;20211:131;:::i;:::-;20203:139;;19930:419;;;:::o;20355:::-;20521:4;20559:2;20548:9;20544:18;20536:26;;20608:9;20602:4;20598:20;20594:1;20583:9;20579:17;20572:47;20636:131;20762:4;20636:131;:::i;:::-;20628:139;;20355:419;;;:::o;20780:::-;20946:4;20984:2;20973:9;20969:18;20961:26;;21033:9;21027:4;21023:20;21019:1;21008:9;21004:17;20997:47;21061:131;21187:4;21061:131;:::i;:::-;21053:139;;20780:419;;;:::o;21205:222::-;21298:4;21336:2;21325:9;21321:18;21313:26;;21349:71;21417:1;21406:9;21402:17;21393:6;21349:71;:::i;:::-;21205:222;;;;:::o;21433:214::-;21522:4;21560:2;21549:9;21545:18;21537:26;;21573:67;21637:1;21626:9;21622:17;21613:6;21573:67;:::i;:::-;21433:214;;;;:::o;21653:129::-;21687:6;21714:20;;:::i;:::-;21704:30;;21743:33;21771:4;21763:6;21743:33;:::i;:::-;21653:129;;;:::o;21788:75::-;21821:6;21854:2;21848:9;21838:19;;21788:75;:::o;21869:307::-;21930:4;22020:18;22012:6;22009:30;22006:56;;;22042:18;;:::i;:::-;22006:56;22080:29;22102:6;22080:29;:::i;:::-;22072:37;;22164:4;22158;22154:15;22146:23;;21869:307;;;:::o;22182:308::-;22244:4;22334:18;22326:6;22323:30;22320:56;;;22356:18;;:::i;:::-;22320:56;22394:29;22416:6;22394:29;:::i;:::-;22386:37;;22478:4;22472;22468:15;22460:23;;22182:308;;;:::o;22496:141::-;22545:4;22568:3;22560:11;;22591:3;22588:1;22581:14;22625:4;22622:1;22612:18;22604:26;;22496:141;;;:::o;22643:98::-;22694:6;22728:5;22722:12;22712:22;;22643:98;;;:::o;22747:99::-;22799:6;22833:5;22827:12;22817:22;;22747:99;;;:::o;22852:168::-;22935:11;22969:6;22964:3;22957:19;23009:4;23004:3;23000:14;22985:29;;22852:168;;;;:::o;23026:147::-;23127:11;23164:3;23149:18;;23026:147;;;;:::o;23179:169::-;23263:11;23297:6;23292:3;23285:19;23337:4;23332:3;23328:14;23313:29;;23179:169;;;;:::o;23354:148::-;23456:11;23493:3;23478:18;;23354:148;;;;:::o;23508:305::-;23548:3;23567:20;23585:1;23567:20;:::i;:::-;23562:25;;23601:20;23619:1;23601:20;:::i;:::-;23596:25;;23755:1;23687:66;23683:74;23680:1;23677:81;23674:107;;;23761:18;;:::i;:::-;23674:107;23805:1;23802;23798:9;23791:16;;23508:305;;;;:::o;23819:348::-;23859:7;23882:20;23900:1;23882:20;:::i;:::-;23877:25;;23916:20;23934:1;23916:20;:::i;:::-;23911:25;;24104:1;24036:66;24032:74;24029:1;24026:81;24021:1;24014:9;24007:17;24003:105;24000:131;;;24111:18;;:::i;:::-;24000:131;24159:1;24156;24152:9;24141:20;;23819:348;;;;:::o;24173:96::-;24210:7;24239:24;24257:5;24239:24;:::i;:::-;24228:35;;24173:96;;;:::o;24275:90::-;24309:7;24352:5;24345:13;24338:21;24327:32;;24275:90;;;:::o;24371:149::-;24407:7;24447:66;24440:5;24436:78;24425:89;;24371:149;;;:::o;24526:126::-;24563:7;24603:42;24596:5;24592:54;24581:65;;24526:126;;;:::o;24658:77::-;24695:7;24724:5;24713:16;;24658:77;;;:::o;24741:86::-;24776:7;24816:4;24809:5;24805:16;24794:27;;24741:86;;;:::o;24833:154::-;24917:6;24912:3;24907;24894:30;24979:1;24970:6;24965:3;24961:16;24954:27;24833:154;;;:::o;24993:307::-;25061:1;25071:113;25085:6;25082:1;25079:13;25071:113;;;25170:1;25165:3;25161:11;25155:18;25151:1;25146:3;25142:11;25135:39;25107:2;25104:1;25100:10;25095:15;;25071:113;;;25202:6;25199:1;25196:13;25193:101;;;25282:1;25273:6;25268:3;25264:16;25257:27;25193:101;25042:258;24993:307;;;:::o;25306:320::-;25350:6;25387:1;25381:4;25377:12;25367:22;;25434:1;25428:4;25424:12;25455:18;25445:81;;25511:4;25503:6;25499:17;25489:27;;25445:81;25573:2;25565:6;25562:14;25542:18;25539:38;25536:84;;;25592:18;;:::i;:::-;25536:84;25357:269;25306:320;;;:::o;25632:281::-;25715:27;25737:4;25715:27;:::i;:::-;25707:6;25703:40;25845:6;25833:10;25830:22;25809:18;25797:10;25794:34;25791:62;25788:88;;;25856:18;;:::i;:::-;25788:88;25896:10;25892:2;25885:22;25675:238;25632:281;;:::o;25919:180::-;25967:77;25964:1;25957:88;26064:4;26061:1;26054:15;26088:4;26085:1;26078:15;26105:180;26153:77;26150:1;26143:88;26250:4;26247:1;26240:15;26274:4;26271:1;26264:15;26291:180;26339:77;26336:1;26329:88;26436:4;26433:1;26426:15;26460:4;26457:1;26450:15;26477:117;26586:1;26583;26576:12;26600:117;26709:1;26706;26699:12;26723:117;26832:1;26829;26822:12;26846:117;26955:1;26952;26945:12;26969:102;27010:6;27061:2;27057:7;27052:2;27045:5;27041:14;27037:28;27027:38;;26969:102;;;:::o;27077:225::-;27217:34;27213:1;27205:6;27201:14;27194:58;27286:8;27281:2;27273:6;27269:15;27262:33;27077:225;:::o;27308:170::-;27448:22;27444:1;27436:6;27432:14;27425:46;27308:170;:::o;27484:182::-;27624:34;27620:1;27612:6;27608:14;27601:58;27484:182;:::o;27672:173::-;27812:25;27808:1;27800:6;27796:14;27789:49;27672:173;:::o;27851:234::-;27991:34;27987:1;27979:6;27975:14;27968:58;28060:17;28055:2;28047:6;28043:15;28036:42;27851:234;:::o;28091:175::-;28231:27;28227:1;28219:6;28215:14;28208:51;28091:175;:::o;28272:180::-;28412:32;28408:1;28400:6;28396:14;28389:56;28272:180;:::o;28458:114::-;;:::o;28578:170::-;28718:22;28714:1;28706:6;28702:14;28695:46;28578:170;:::o;28754:181::-;28894:33;28890:1;28882:6;28878:14;28871:57;28754:181;:::o;28941:169::-;29081:21;29077:1;29069:6;29065:14;29058:45;28941:169;:::o;29116:122::-;29189:24;29207:5;29189:24;:::i;:::-;29182:5;29179:35;29169:63;;29228:1;29225;29218:12;29169:63;29116:122;:::o;29244:116::-;29314:21;29329:5;29314:21;:::i;:::-;29307:5;29304:32;29294:60;;29350:1;29347;29340:12;29294:60;29244:116;:::o;29366:120::-;29438:23;29455:5;29438:23;:::i;:::-;29431:5;29428:34;29418:62;;29476:1;29473;29466:12;29418:62;29366:120;:::o;29492:122::-;29565:24;29583:5;29565:24;:::i;:::-;29558:5;29555:35;29545:63;;29604:1;29601;29594:12;29545:63;29492:122;:::o

Swarm Source

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