ETH Price: $3,482.78 (+2.19%)
Gas: 6 Gwei

Token

Sunrise Token (SUNC)
 

Overview

Max Total Supply

8,000,000,000 SUNC

Holders

1,784

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

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

pragma solidity ^0.8.0;


/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
   /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

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


pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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


pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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


// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overloaded;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Snapshot.sol

pragma solidity ^0.8.0;

/**
 * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and
 * total supply at the time are recorded for later access.
 *
 * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting.
 * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different
 * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be
 * used to create an efficient ERC20 forking mechanism.
 *
 * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a
 * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot
 * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id
 * and the account address.
 *
 * ==== Gas Costs
 *
 * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log
 * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much
 * smaller since identical balances in subsequent snapshots are stored as a single entry.
 *
 * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is
 * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent
 * transfers will have normal cost until the next snapshot, and so on.
 */
abstract contract ERC20Snapshot is ERC20 {
    // Inspired by Jordi Baylina's MiniMeToken to record historical balances:
    // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol

    using Arrays for uint256[];
    using Counters for Counters.Counter;

    // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a
    // Snapshot struct, but that would impede usage of functions that work on an array.
    struct Snapshots {
        uint256[] ids;
        uint256[] values;
    }

    mapping (address => Snapshots) private _accountBalanceSnapshots;
    Snapshots private _totalSupplySnapshots;

    // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
    Counters.Counter private _currentSnapshotId;

    /**
     * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
     */
    event Snapshot(uint256 id);

    /**
     * @dev Creates a new snapshot and returns its snapshot id.
     *
     * Emits a {Snapshot} event that contains the same id.
     *
     * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
     * set of accounts, for example using {AccessControl}, or it may be open to the public.
     *
     * [WARNING]
     * ====
     * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
     * you must consider that it can potentially be used by attackers in two ways.
     *
     * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
     * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
     * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
     * section above.
     *
     * We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
     * ====
     */
    function _snapshot() internal virtual returns (uint256) {
        _currentSnapshotId.increment();

        uint256 currentId = _currentSnapshotId.current();
        emit Snapshot(currentId);
        return currentId;
    }

    /**
     * @dev Retrieves the balance of `account` at the time `snapshotId` was created.
     */
    function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);

        return snapshotted ? value : balanceOf(account);
    }

    /**
     * @dev Retrieves the total supply at the time `snapshotId` was created.
     */
    function totalSupplyAt(uint256 snapshotId) public view virtual returns(uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);

        return snapshotted ? value : totalSupply();
    }


    // Update balance and/or total supply snapshots before the values are modified. This is implemented
    // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
      super._beforeTokenTransfer(from, to, amount);

      if (from == address(0)) {
        // mint
        _updateAccountSnapshot(to);
        _updateTotalSupplySnapshot();
      } else if (to == address(0)) {
        // burn
        _updateAccountSnapshot(from);
        _updateTotalSupplySnapshot();
      } else {
        // transfer
        _updateAccountSnapshot(from);
        _updateAccountSnapshot(to);
      }
    }

    function _valueAt(uint256 snapshotId, Snapshots storage snapshots)
        private view returns (bool, uint256)
    {
        require(snapshotId > 0, "ERC20Snapshot: id is 0");
        // solhint-disable-next-line max-line-length
        require(snapshotId <= _currentSnapshotId.current(), "ERC20Snapshot: nonexistent id");

        // When a valid snapshot is queried, there are three possibilities:
        //  a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
        //  created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
        //  to this id is the current one.
        //  b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
        //  requested id, and its value is the one to return.
        //  c) More snapshots were created after the requested one, and the queried value was later modified. There will be
        //  no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
        //  larger than the requested one.
        //
        // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
        // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
        // exactly this.

        uint256 index = snapshots.ids.findUpperBound(snapshotId);

        if (index == snapshots.ids.length) {
            return (false, 0);
        } else {
            return (true, snapshots.values[index]);
        }
    }

    function _updateAccountSnapshot(address account) private {
        _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account));
    }

    function _updateTotalSupplySnapshot() private {
        _updateSnapshot(_totalSupplySnapshots, totalSupply());
    }

    function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
        uint256 currentId = _currentSnapshotId.current();
        if (_lastSnapshotId(snapshots.ids) < currentId) {
            snapshots.ids.push(currentId);
            snapshots.values.push(currentValue);
        }
    }

    function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
        if (ids.length == 0) {
            return 0;
        } else {
            return ids[ids.length - 1];
        }
    }
}

// File: contracts/SuncToken.sol

pragma solidity ^0.8.0;




contract SuncToken is ERC20Snapshot, Ownable {

    mapping(address => bool) snapshotters;

    modifier SnapshotterOnly() {
        require(snapshotters[_msgSender()], "SUNC: permission denied");
        _;
    }

    event GrantSnapshot(address indexed account);
    event RevokeSnapshot(address indexed account);

    /**
     * @dev Sets initial values
     */
    constructor() ERC20("Sunrise Token", "SUNC")  {
        _mint(address(0xE17aD981f504916d32A383003dB2F1BE23C886f4),  1600000000 * 1e18);
        _mint(address(0x51c20fcd6b096a567B25e83943B609CB753E5BEF),   400000000 * 1e18);
        _mint(address(0x8bAC489fef5151Cc4B919ECb4B2100a25bB87322),  1600000000 * 1e18);
        _mint(address(0xa83f344a1787B7FCd56C05acE0087dE527E6eAB1),  1000000000 * 1e18);
        _mint(address(0xF49C6C83539E40860A764256a3270735FD95A06f),  1000000000 * 1e18);
        _mint(address(0xb4FC51C10AAaA876bBe81148bff6E06Bf3F5B97c),  2400000000 * 1e18);
    }

    function snapshot() external SnapshotterOnly returns(uint) {
        return _snapshot();
    }

    function canSnapshot(address account) view external returns(bool) {
        return snapshotters[account];
    }

    function grantSnapshot(address account) external onlyOwner {
        snapshotters[account] = true;
        emit GrantSnapshot(account);
    }

    function revokeSnapshot(address account) external onlyOwner {
        snapshotters[account] = false;
        emit RevokeSnapshot(account);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"GrantSnapshot","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":"account","type":"address"}],"name":"RevokeSnapshot","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"canSnapshot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"grantSnapshot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"revokeSnapshot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","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":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f53756e7269736520546f6b656e000000000000000000000000000000000000008152506040518060400160405280600481526020017f53554e4300000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620006f4565b508060049080519060200190620000af929190620006f4565b5050506000620000c46200029560201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200019573e17ad981f504916d32a383003db2f1be23c886f46b052b7d2dcc80cd2e400000006200029d60201b60201c565b620001c77351c20fcd6b096a567b25e83943b609cb753e5bef6b014adf4b7320334b900000006200029d60201b60201c565b620001f9738bac489fef5151cc4b919ecb4b2100a25bb873226b052b7d2dcc80cd2e400000006200029d60201b60201c565b6200022b73a83f344a1787b7fcd56c05ace0087de527e6eab16b033b2e3c9fd0803ce80000006200029d60201b60201c565b6200025d73f49c6c83539e40860a764256a3270735fd95a06f6b033b2e3c9fd0803ce80000006200029d60201b60201c565b6200028f73b4fc51c10aaaa876bbe81148bff6e06bf3f5b97c6b07c13bc4b2c133c5600000006200029d60201b60201c565b6200098b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000310576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030790620007dc565b60405180910390fd5b62000324600083836200040260201b60201c565b80600260008282546200033891906200082c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200038f91906200082c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003f69190620007fe565b60405180910390a35050565b6200041a838383620004fd60201b62000fe61760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620004775762000461826200050260201b60201c565b620004716200056560201b60201c565b620004f8565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620004d457620004be836200050260201b60201c565b620004ce6200056560201b60201c565b620004f7565b620004e5836200050260201b60201c565b620004f6826200050260201b60201c565b5b5b505050565b505050565b62000562600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002062000556836200058960201b60201c565b620005d160201b60201c565b50565b6200058760066200057b6200066460201b60201c565b620005d160201b60201c565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000620005ea60086200066e60201b62000feb1760201c565b90508062000601846000016200067c60201b60201c565b10156200065f5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b6000600254905090565b600081600001549050919050565b60008082805490501415620006955760009050620006ef565b8160018380549050620006a9919062000889565b81548110620006e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b8280546200070290620008ce565b90600052602060002090601f01602090048101928262000726576000855562000772565b82601f106200074157805160ff191683800117855562000772565b8280016001018555821562000772579182015b828111156200077157825182559160200191906001019062000754565b5b50905062000781919062000785565b5090565b5b80821115620007a057600081600090555060010162000786565b5090565b6000620007b3601f836200081b565b9150620007c08262000962565b602082019050919050565b620007d681620008c4565b82525050565b60006020820190508181036000830152620007f781620007a4565b9050919050565b6000602082019050620008156000830184620007cb565b92915050565b600082825260208201905092915050565b60006200083982620008c4565b91506200084683620008c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200087e576200087d62000904565b5b828201905092915050565b60006200089682620008c4565b9150620008a383620008c4565b925082821015620008b957620008b862000904565b5b828203905092915050565b6000819050919050565b60006002820490506001821680620008e757607f821691505b60208210811415620008fe57620008fd62000933565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6124bf806200099b6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063a457c2d711610071578063a457c2d71461035b578063a9059cbb1461038b578063dd62ed3e146103bb578063f2fde38b146103eb578063f8114937146104075761012c565b80638da5cb5b146102a157806395d89b41146102bf5780639711715a146102dd578063981b24d0146102fb5780639af683261461032b5761012c565b806339509351116100f457806339509351146101eb578063404a195c1461021b5780634ee2cd7e1461023757806370a0823114610267578063715018a6146102975761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b610139610423565b6040516101469190611d07565b60405180910390f35b61016960048036038101906101649190611a53565b6104b5565b6040516101769190611cec565b60405180910390f35b6101876104d3565b6040516101949190611ea9565b60405180910390f35b6101b760048036038101906101b29190611a04565b6104dd565b6040516101c49190611cec565b60405180910390f35b6101d56105de565b6040516101e29190611ec4565b60405180910390f35b61020560048036038101906102009190611a53565b6105e7565b6040516102129190611cec565b60405180910390f35b6102356004803603810190610230919061199f565b610693565b005b610251600480360381019061024c9190611a53565b6107ad565b60405161025e9190611ea9565b60405180910390f35b610281600480360381019061027c919061199f565b61081d565b60405161028e9190611ea9565b60405180910390f35b61029f610865565b005b6102a96109a2565b6040516102b69190611cd1565b60405180910390f35b6102c76109cc565b6040516102d49190611d07565b60405180910390f35b6102e5610a5e565b6040516102f29190611ea9565b60405180910390f35b61031560048036038101906103109190611a8f565b610b00565b6040516103229190611ea9565b60405180910390f35b6103456004803603810190610340919061199f565b610b31565b6040516103529190611cec565b60405180910390f35b61037560048036038101906103709190611a53565b610b87565b6040516103829190611cec565b60405180910390f35b6103a560048036038101906103a09190611a53565b610c7b565b6040516103b29190611cec565b60405180910390f35b6103d560048036038101906103d091906119c8565b610c99565b6040516103e29190611ea9565b60405180910390f35b6104056004803603810190610400919061199f565b610d20565b005b610421600480360381019061041c919061199f565b610ecc565b005b6060600380546104329061203e565b80601f016020809104026020016040519081016040528092919081815260200182805461045e9061203e565b80156104ab5780601f10610480576101008083540402835291602001916104ab565b820191906000526020600020905b81548152906001019060200180831161048e57829003601f168201915b5050505050905090565b60006104c96104c2610ff9565b8484611001565b6001905092915050565b6000600254905090565b60006104ea8484846111cc565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610535610ff9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ac90611dc9565b60405180910390fd5b6105d2856105c1610ff9565b85846105cd9190611f82565b611001565b60019150509392505050565b60006012905090565b60006106896105f4610ff9565b848460016000610602610ff9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106849190611efb565b611001565b6001905092915050565b61069b610ff9565b73ffffffffffffffffffffffffffffffffffffffff166106b96109a2565b73ffffffffffffffffffffffffffffffffffffffff161461070f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070690611de9565b60405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f7c207ff2189685b05df103e0e4a96c61ba8a28d4356e625f3b4acb7c01b7969860405160405180910390a250565b60008060006107fa84600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061144b565b91509150816108115761080c8561081d565b610813565b805b9250505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61086d610ff9565b73ffffffffffffffffffffffffffffffffffffffff1661088b6109a2565b73ffffffffffffffffffffffffffffffffffffffff16146108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d890611de9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109db9061203e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a079061203e565b8015610a545780601f10610a2957610100808354040283529160200191610a54565b820191906000526020600020905b815481529060010190602001808311610a3757829003601f168201915b5050505050905090565b6000600a6000610a6c610ff9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea90611e69565b60405180910390fd5b610afb611569565b905090565b6000806000610b1084600661144b565b9150915081610b2657610b216104d3565b610b28565b805b92505050919050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060016000610b96610ff9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90611e89565b60405180910390fd5b610c70610c5e610ff9565b858584610c6b9190611f82565b611001565b600191505092915050565b6000610c8f610c88610ff9565b84846111cc565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d28610ff9565b73ffffffffffffffffffffffffffffffffffffffff16610d466109a2565b73ffffffffffffffffffffffffffffffffffffffff1614610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9390611de9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390611d69565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ed4610ff9565b73ffffffffffffffffffffffffffffffffffffffff16610ef26109a2565b73ffffffffffffffffffffffffffffffffffffffff1614610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90611de9565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fba2657b171d29405fda532aee83e937a6b0890d272bcddca2d89d7f50314e69a60405160405180910390a250565b505050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890611e29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d890611d89565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111bf9190611ea9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390611e09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390611d49565b60405180910390fd5b6112b78383836115c1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490611da9565b60405180910390fd5b81816113499190611f82565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113d99190611efb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161143d9190611ea9565b60405180910390a350505050565b60008060008411611491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148890611e49565b60405180910390fd5b61149b6008610feb565b8411156114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d490611d29565b60405180910390fd5b60006114f5858560000161167b90919063ffffffff16565b90508360000180549050811415611513576000809250925050611562565b6001846001018281548110611551577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b600061157560086117a1565b60006115816008610feb565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb67816040516115b29190611ea9565b60405180910390a18091505090565b6115cc838383610fe6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116175761160a826117b7565b61161261180a565b611676565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561166257611655836117b7565b61165d61180a565b611675565b61166b836117b7565b611674826117b7565b5b5b505050565b60008083805490501415611692576000905061179b565b600080848054905090505b8082101561171c5760006116b1838361181e565b9050848682815481106116ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154111561170657809150611716565b6001816117139190611efb565b92505b5061169d565b60008211801561177a575083856001846117369190611f82565b8154811061176d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154145b156117955760018261178c9190611f82565b9250505061179b565b81925050505b92915050565b6001816000016000828254019250508190555050565b611807600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206118028361081d565b611885565b50565b61181c60066118176104d3565b611885565b565b60006002808361182e9190612070565b60028561183b9190612070565b6118459190611efb565b61184f9190611f51565b60028361185c9190611f51565b6002856118699190611f51565b6118739190611efb565b61187d9190611efb565b905092915050565b60006118916008610feb565b9050806118a084600001611902565b10156118fd5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600080828054905014156119195760009050611970565b816001838054905061192b9190611f82565b81548110611962577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b6000813590506119848161245b565b92915050565b60008135905061199981612472565b92915050565b6000602082840312156119b157600080fd5b60006119bf84828501611975565b91505092915050565b600080604083850312156119db57600080fd5b60006119e985828601611975565b92505060206119fa85828601611975565b9150509250929050565b600080600060608486031215611a1957600080fd5b6000611a2786828701611975565b9350506020611a3886828701611975565b9250506040611a498682870161198a565b9150509250925092565b60008060408385031215611a6657600080fd5b6000611a7485828601611975565b9250506020611a858582860161198a565b9150509250929050565b600060208284031215611aa157600080fd5b6000611aaf8482850161198a565b91505092915050565b611ac181611fb6565b82525050565b611ad081611fc8565b82525050565b6000611ae182611edf565b611aeb8185611eea565b9350611afb81856020860161200b565b611b048161212e565b840191505092915050565b6000611b1c601d83611eea565b9150611b278261213f565b602082019050919050565b6000611b3f602383611eea565b9150611b4a82612168565b604082019050919050565b6000611b62602683611eea565b9150611b6d826121b7565b604082019050919050565b6000611b85602283611eea565b9150611b9082612206565b604082019050919050565b6000611ba8602683611eea565b9150611bb382612255565b604082019050919050565b6000611bcb602883611eea565b9150611bd6826122a4565b604082019050919050565b6000611bee602083611eea565b9150611bf9826122f3565b602082019050919050565b6000611c11602583611eea565b9150611c1c8261231c565b604082019050919050565b6000611c34602483611eea565b9150611c3f8261236b565b604082019050919050565b6000611c57601683611eea565b9150611c62826123ba565b602082019050919050565b6000611c7a601783611eea565b9150611c85826123e3565b602082019050919050565b6000611c9d602583611eea565b9150611ca88261240c565b604082019050919050565b611cbc81611ff4565b82525050565b611ccb81611ffe565b82525050565b6000602082019050611ce66000830184611ab8565b92915050565b6000602082019050611d016000830184611ac7565b92915050565b60006020820190508181036000830152611d218184611ad6565b905092915050565b60006020820190508181036000830152611d4281611b0f565b9050919050565b60006020820190508181036000830152611d6281611b32565b9050919050565b60006020820190508181036000830152611d8281611b55565b9050919050565b60006020820190508181036000830152611da281611b78565b9050919050565b60006020820190508181036000830152611dc281611b9b565b9050919050565b60006020820190508181036000830152611de281611bbe565b9050919050565b60006020820190508181036000830152611e0281611be1565b9050919050565b60006020820190508181036000830152611e2281611c04565b9050919050565b60006020820190508181036000830152611e4281611c27565b9050919050565b60006020820190508181036000830152611e6281611c4a565b9050919050565b60006020820190508181036000830152611e8281611c6d565b9050919050565b60006020820190508181036000830152611ea281611c90565b9050919050565b6000602082019050611ebe6000830184611cb3565b92915050565b6000602082019050611ed96000830184611cc2565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611f0682611ff4565b9150611f1183611ff4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f4657611f456120a1565b5b828201905092915050565b6000611f5c82611ff4565b9150611f6783611ff4565b925082611f7757611f766120d0565b5b828204905092915050565b6000611f8d82611ff4565b9150611f9883611ff4565b925082821015611fab57611faa6120a1565b5b828203905092915050565b6000611fc182611fd4565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561202957808201518184015260208101905061200e565b83811115612038576000848401525b50505050565b6000600282049050600182168061205657607f821691505b6020821081141561206a576120696120ff565b5b50919050565b600061207b82611ff4565b915061208683611ff4565b925082612096576120956120d0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f53554e433a207065726d697373696f6e2064656e696564000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61246481611fb6565b811461246f57600080fd5b50565b61247b81611ff4565b811461248657600080fd5b5056fea26469706673582212201bd4a83a77ee82dad3b695543d2e165372042448f96d9004c9d4959efe43ac5764736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063a457c2d711610071578063a457c2d71461035b578063a9059cbb1461038b578063dd62ed3e146103bb578063f2fde38b146103eb578063f8114937146104075761012c565b80638da5cb5b146102a157806395d89b41146102bf5780639711715a146102dd578063981b24d0146102fb5780639af683261461032b5761012c565b806339509351116100f457806339509351146101eb578063404a195c1461021b5780634ee2cd7e1461023757806370a0823114610267578063715018a6146102975761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b610139610423565b6040516101469190611d07565b60405180910390f35b61016960048036038101906101649190611a53565b6104b5565b6040516101769190611cec565b60405180910390f35b6101876104d3565b6040516101949190611ea9565b60405180910390f35b6101b760048036038101906101b29190611a04565b6104dd565b6040516101c49190611cec565b60405180910390f35b6101d56105de565b6040516101e29190611ec4565b60405180910390f35b61020560048036038101906102009190611a53565b6105e7565b6040516102129190611cec565b60405180910390f35b6102356004803603810190610230919061199f565b610693565b005b610251600480360381019061024c9190611a53565b6107ad565b60405161025e9190611ea9565b60405180910390f35b610281600480360381019061027c919061199f565b61081d565b60405161028e9190611ea9565b60405180910390f35b61029f610865565b005b6102a96109a2565b6040516102b69190611cd1565b60405180910390f35b6102c76109cc565b6040516102d49190611d07565b60405180910390f35b6102e5610a5e565b6040516102f29190611ea9565b60405180910390f35b61031560048036038101906103109190611a8f565b610b00565b6040516103229190611ea9565b60405180910390f35b6103456004803603810190610340919061199f565b610b31565b6040516103529190611cec565b60405180910390f35b61037560048036038101906103709190611a53565b610b87565b6040516103829190611cec565b60405180910390f35b6103a560048036038101906103a09190611a53565b610c7b565b6040516103b29190611cec565b60405180910390f35b6103d560048036038101906103d091906119c8565b610c99565b6040516103e29190611ea9565b60405180910390f35b6104056004803603810190610400919061199f565b610d20565b005b610421600480360381019061041c919061199f565b610ecc565b005b6060600380546104329061203e565b80601f016020809104026020016040519081016040528092919081815260200182805461045e9061203e565b80156104ab5780601f10610480576101008083540402835291602001916104ab565b820191906000526020600020905b81548152906001019060200180831161048e57829003601f168201915b5050505050905090565b60006104c96104c2610ff9565b8484611001565b6001905092915050565b6000600254905090565b60006104ea8484846111cc565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610535610ff9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ac90611dc9565b60405180910390fd5b6105d2856105c1610ff9565b85846105cd9190611f82565b611001565b60019150509392505050565b60006012905090565b60006106896105f4610ff9565b848460016000610602610ff9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106849190611efb565b611001565b6001905092915050565b61069b610ff9565b73ffffffffffffffffffffffffffffffffffffffff166106b96109a2565b73ffffffffffffffffffffffffffffffffffffffff161461070f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070690611de9565b60405180910390fd5b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f7c207ff2189685b05df103e0e4a96c61ba8a28d4356e625f3b4acb7c01b7969860405160405180910390a250565b60008060006107fa84600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061144b565b91509150816108115761080c8561081d565b610813565b805b9250505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61086d610ff9565b73ffffffffffffffffffffffffffffffffffffffff1661088b6109a2565b73ffffffffffffffffffffffffffffffffffffffff16146108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d890611de9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109db9061203e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a079061203e565b8015610a545780601f10610a2957610100808354040283529160200191610a54565b820191906000526020600020905b815481529060010190602001808311610a3757829003601f168201915b5050505050905090565b6000600a6000610a6c610ff9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea90611e69565b60405180910390fd5b610afb611569565b905090565b6000806000610b1084600661144b565b9150915081610b2657610b216104d3565b610b28565b805b92505050919050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060016000610b96610ff9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90611e89565b60405180910390fd5b610c70610c5e610ff9565b858584610c6b9190611f82565b611001565b600191505092915050565b6000610c8f610c88610ff9565b84846111cc565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d28610ff9565b73ffffffffffffffffffffffffffffffffffffffff16610d466109a2565b73ffffffffffffffffffffffffffffffffffffffff1614610d9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9390611de9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390611d69565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ed4610ff9565b73ffffffffffffffffffffffffffffffffffffffff16610ef26109a2565b73ffffffffffffffffffffffffffffffffffffffff1614610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90611de9565b60405180910390fd5b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fba2657b171d29405fda532aee83e937a6b0890d272bcddca2d89d7f50314e69a60405160405180910390a250565b505050565b600081600001549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890611e29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d890611d89565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111bf9190611ea9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390611e09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390611d49565b60405180910390fd5b6112b78383836115c1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490611da9565b60405180910390fd5b81816113499190611f82565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113d99190611efb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161143d9190611ea9565b60405180910390a350505050565b60008060008411611491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148890611e49565b60405180910390fd5b61149b6008610feb565b8411156114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d490611d29565b60405180910390fd5b60006114f5858560000161167b90919063ffffffff16565b90508360000180549050811415611513576000809250925050611562565b6001846001018281548110611551577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015492509250505b9250929050565b600061157560086117a1565b60006115816008610feb565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb67816040516115b29190611ea9565b60405180910390a18091505090565b6115cc838383610fe6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116175761160a826117b7565b61161261180a565b611676565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561166257611655836117b7565b61165d61180a565b611675565b61166b836117b7565b611674826117b7565b5b5b505050565b60008083805490501415611692576000905061179b565b600080848054905090505b8082101561171c5760006116b1838361181e565b9050848682815481106116ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154111561170657809150611716565b6001816117139190611efb565b92505b5061169d565b60008211801561177a575083856001846117369190611f82565b8154811061176d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154145b156117955760018261178c9190611f82565b9250505061179b565b81925050505b92915050565b6001816000016000828254019250508190555050565b611807600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206118028361081d565b611885565b50565b61181c60066118176104d3565b611885565b565b60006002808361182e9190612070565b60028561183b9190612070565b6118459190611efb565b61184f9190611f51565b60028361185c9190611f51565b6002856118699190611f51565b6118739190611efb565b61187d9190611efb565b905092915050565b60006118916008610feb565b9050806118a084600001611902565b10156118fd5782600001819080600181540180825580915050600190039060005260206000200160009091909190915055826001018290806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b600080828054905014156119195760009050611970565b816001838054905061192b9190611f82565b81548110611962577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490505b919050565b6000813590506119848161245b565b92915050565b60008135905061199981612472565b92915050565b6000602082840312156119b157600080fd5b60006119bf84828501611975565b91505092915050565b600080604083850312156119db57600080fd5b60006119e985828601611975565b92505060206119fa85828601611975565b9150509250929050565b600080600060608486031215611a1957600080fd5b6000611a2786828701611975565b9350506020611a3886828701611975565b9250506040611a498682870161198a565b9150509250925092565b60008060408385031215611a6657600080fd5b6000611a7485828601611975565b9250506020611a858582860161198a565b9150509250929050565b600060208284031215611aa157600080fd5b6000611aaf8482850161198a565b91505092915050565b611ac181611fb6565b82525050565b611ad081611fc8565b82525050565b6000611ae182611edf565b611aeb8185611eea565b9350611afb81856020860161200b565b611b048161212e565b840191505092915050565b6000611b1c601d83611eea565b9150611b278261213f565b602082019050919050565b6000611b3f602383611eea565b9150611b4a82612168565b604082019050919050565b6000611b62602683611eea565b9150611b6d826121b7565b604082019050919050565b6000611b85602283611eea565b9150611b9082612206565b604082019050919050565b6000611ba8602683611eea565b9150611bb382612255565b604082019050919050565b6000611bcb602883611eea565b9150611bd6826122a4565b604082019050919050565b6000611bee602083611eea565b9150611bf9826122f3565b602082019050919050565b6000611c11602583611eea565b9150611c1c8261231c565b604082019050919050565b6000611c34602483611eea565b9150611c3f8261236b565b604082019050919050565b6000611c57601683611eea565b9150611c62826123ba565b602082019050919050565b6000611c7a601783611eea565b9150611c85826123e3565b602082019050919050565b6000611c9d602583611eea565b9150611ca88261240c565b604082019050919050565b611cbc81611ff4565b82525050565b611ccb81611ffe565b82525050565b6000602082019050611ce66000830184611ab8565b92915050565b6000602082019050611d016000830184611ac7565b92915050565b60006020820190508181036000830152611d218184611ad6565b905092915050565b60006020820190508181036000830152611d4281611b0f565b9050919050565b60006020820190508181036000830152611d6281611b32565b9050919050565b60006020820190508181036000830152611d8281611b55565b9050919050565b60006020820190508181036000830152611da281611b78565b9050919050565b60006020820190508181036000830152611dc281611b9b565b9050919050565b60006020820190508181036000830152611de281611bbe565b9050919050565b60006020820190508181036000830152611e0281611be1565b9050919050565b60006020820190508181036000830152611e2281611c04565b9050919050565b60006020820190508181036000830152611e4281611c27565b9050919050565b60006020820190508181036000830152611e6281611c4a565b9050919050565b60006020820190508181036000830152611e8281611c6d565b9050919050565b60006020820190508181036000830152611ea281611c90565b9050919050565b6000602082019050611ebe6000830184611cb3565b92915050565b6000602082019050611ed96000830184611cc2565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611f0682611ff4565b9150611f1183611ff4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f4657611f456120a1565b5b828201905092915050565b6000611f5c82611ff4565b9150611f6783611ff4565b925082611f7757611f766120d0565b5b828204905092915050565b6000611f8d82611ff4565b9150611f9883611ff4565b925082821015611fab57611faa6120a1565b5b828203905092915050565b6000611fc182611fd4565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561202957808201518184015260208101905061200e565b83811115612038576000848401525b50505050565b6000600282049050600182168061205657607f821691505b6020821081141561206a576120696120ff565b5b50919050565b600061207b82611ff4565b915061208683611ff4565b925082612096576120956120d0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433230536e617073686f743a206e6f6e6578697374656e74206964000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230536e617073686f743a206964206973203000000000000000000000600082015250565b7f53554e433a207065726d697373696f6e2064656e696564000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61246481611fb6565b811461246f57600080fd5b50565b61247b81611ff4565b811461248657600080fd5b5056fea26469706673582212201bd4a83a77ee82dad3b695543d2e165372042448f96d9004c9d4959efe43ac5764736f6c63430008040033

Deployed Bytecode Sourcemap

28789:1507:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11835:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13975:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12928:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14626:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12779:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15457:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30146:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24826:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13099:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6431:148;;;:::i;:::-;;5780:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12045:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29769:96;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25196:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29873:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16175:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13439:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13677:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6734:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29994:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11835:91;11880:13;11913:5;11906:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11835:91;:::o;13975:169::-;14058:4;14075:39;14084:12;:10;:12::i;:::-;14098:7;14107:6;14075:8;:39::i;:::-;14132:4;14125:11;;13975:169;;;;:::o;12928:108::-;12989:7;13016:12;;13009:19;;12928:108;:::o;14626:422::-;14732:4;14749:36;14759:6;14767:9;14778:6;14749:9;:36::i;:::-;14798:24;14825:11;:19;14837:6;14825:19;;;;;;;;;;;;;;;:33;14845:12;:10;:12::i;:::-;14825:33;;;;;;;;;;;;;;;;14798:60;;14897:6;14877:16;:26;;14869:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;14959:57;14968:6;14976:12;:10;:12::i;:::-;15009:6;14990:16;:25;;;;:::i;:::-;14959:8;:57::i;:::-;15036:4;15029:11;;;14626:422;;;;;:::o;12779:84::-;12828:5;12853:2;12846:9;;12779:84;:::o;15457:215::-;15545:4;15562:80;15571:12;:10;:12::i;:::-;15585:7;15631:10;15594:11;:25;15606:12;:10;:12::i;:::-;15594:25;;;;;;;;;;;;;;;:34;15620:7;15594:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;15562:8;:80::i;:::-;15660:4;15653:11;;15457:215;;;;:::o;30146:147::-;6011:12;:10;:12::i;:::-;6000:23;;:7;:5;:7::i;:::-;:23;;;5992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30241:5:::1;30217:12;:21;30230:7;30217:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30277:7;30262:23;;;;;;;;;;;;30146:147:::0;:::o;24826:266::-;24913:7;24934:16;24952:13;24969:55;24978:10;24990:24;:33;25015:7;24990:33;;;;;;;;;;;;;;;24969:8;:55::i;:::-;24933:91;;;;25044:11;:40;;25066:18;25076:7;25066:9;:18::i;:::-;25044:40;;;25058:5;25044:40;25037:47;;;;24826:266;;;;:::o;13099:127::-;13173:7;13200:9;:18;13210:7;13200:18;;;;;;;;;;;;;;;;13193:25;;13099:127;;;:::o;6431:148::-;6011:12;:10;:12::i;:::-;6000:23;;:7;:5;:7::i;:::-;:23;;;5992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6538:1:::1;6501:40;;6522:6;;;;;;;;;;;6501:40;;;;;;;;;;;;6569:1;6552:6;;:19;;;;;;;;;;;;;;;;;;6431:148::o:0;5780:87::-;5826:7;5853:6;;;;;;;;;;;5846:13;;5780:87;:::o;12045:95::-;12092:13;12125:7;12118:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12045:95;:::o;29769:96::-;29822:4;28935:12;:26;28948:12;:10;:12::i;:::-;28935:26;;;;;;;;;;;;;;;;;;;;;;;;;28927:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29846:11:::1;:9;:11::i;:::-;29839:18;;29769:96:::0;:::o;25196:233::-;25267:7;25288:16;25306:13;25323:43;25332:10;25344:21;25323:8;:43::i;:::-;25287:79;;;;25386:11;:35;;25408:13;:11;:13::i;:::-;25386:35;;;25400:5;25386:35;25379:42;;;;25196:233;;;:::o;29873:113::-;29933:4;29957:12;:21;29970:7;29957:21;;;;;;;;;;;;;;;;;;;;;;;;;29950:28;;29873:113;;;:::o;16175:377::-;16268:4;16285:24;16312:11;:25;16324:12;:10;:12::i;:::-;16312:25;;;;;;;;;;;;;;;:34;16338:7;16312:34;;;;;;;;;;;;;;;;16285:61;;16385:15;16365:16;:35;;16357:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16453:67;16462:12;:10;:12::i;:::-;16476:7;16504:15;16485:16;:34;;;;:::i;:::-;16453:8;:67::i;:::-;16540:4;16533:11;;;16175:377;;;;:::o;13439:175::-;13525:4;13542:42;13552:12;:10;:12::i;:::-;13566:9;13577:6;13542:9;:42::i;:::-;13602:4;13595:11;;13439:175;;;;:::o;13677:151::-;13766:7;13793:11;:18;13805:5;13793:18;;;;;;;;;;;;;;;:27;13812:7;13793:27;;;;;;;;;;;;;;;;13786:34;;13677:151;;;;:::o;6734:244::-;6011:12;:10;:12::i;:::-;6000:23;;:7;:5;:7::i;:::-;:23;;;5992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6843:1:::1;6823:22;;:8;:22;;;;6815:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6933:8;6904:38;;6925:6;;;;;;;;;;;6904:38;;;;;;;;;;;;6962:8;6953:6;;:17;;;;;;;;;;;;;;;;;;6734:244:::0;:::o;29994:144::-;6011:12;:10;:12::i;:::-;6000:23;;:7;:5;:7::i;:::-;:23;;;5992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30088:4:::1;30064:12;:21;30077:7;30064:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;30122:7;30108:22;;;;;;;;;;;;29994:144:::0;:::o;20480:92::-;;;;:::o;848:114::-;913:7;940;:14;;;933:21;;848:114;;;:::o;4340:98::-;4393:7;4420:10;4413:17;;4340:98;:::o;19531:346::-;19650:1;19633:19;;:5;:19;;;;19625:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19731:1;19712:21;;:7;:21;;;;19704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19815:6;19785:11;:18;19797:5;19785:18;;;;;;;;;;;;;;;:27;19804:7;19785:27;;;;;;;;;;;;;;;:36;;;;19853:7;19837:32;;19846:5;19837:32;;;19862:6;19837:32;;;;;;:::i;:::-;;;;;;;;19531:346;;;:::o;17042:604::-;17166:1;17148:20;;:6;:20;;;;17140:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;17250:1;17229:23;;:9;:23;;;;17221:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17305:47;17326:6;17334:9;17345:6;17305:20;:47::i;:::-;17365:21;17389:9;:17;17399:6;17389:17;;;;;;;;;;;;;;;;17365:41;;17442:6;17425:13;:23;;17417:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;17538:6;17522:13;:22;;;;:::i;:::-;17502:9;:17;17512:6;17502:17;;;;;;;;;;;;;;;:42;;;;17579:6;17555:9;:20;17565:9;17555:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17620:9;17603:35;;17612:6;17603:35;;;17631:6;17603:35;;;;;;:::i;:::-;;;;;;;;17042:604;;;;:::o;26198:1692::-;26296:4;26302:7;26348:1;26335:10;:14;26327:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;26463:28;:18;:26;:28::i;:::-;26449:10;:42;;26441:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;27664:13;27680:40;27709:10;27680:9;:13;;:28;;:40;;;;:::i;:::-;27664:56;;27746:9;:13;;:20;;;;27737:5;:29;27733:150;;;27791:5;27798:1;27783:17;;;;;;;27733:150;27841:4;27847:9;:16;;27864:5;27847:23;;;;;;;;;;;;;;;;;;;;;;;;27833:38;;;;;26198:1692;;;;;;:::o;24486:228::-;24533:7;24553:30;:18;:28;:30::i;:::-;24596:17;24616:28;:18;:26;:28::i;:::-;24596:48;;24660:19;24669:9;24660:19;;;;;;:::i;:::-;;;;;;;;24697:9;24690:16;;;24486:228;:::o;25648:542::-;25755:44;25782:4;25788:2;25792:6;25755:26;:44::i;:::-;25830:1;25814:18;;:4;:18;;;25810:373;;;25862:26;25885:2;25862:22;:26::i;:::-;25899:28;:26;:28::i;:::-;25810:373;;;25961:1;25947:16;;:2;:16;;;25943:240;;;25993:28;26016:4;25993:22;:28::i;:::-;26032;:26;:28::i;:::-;25943:240;;;26108:28;26131:4;26108:22;:28::i;:::-;26147:26;26170:2;26147:22;:26::i;:::-;25943:240;25810:373;25648:542;;;:::o;2793:918::-;2882:7;2922:1;2906:5;:12;;;;:17;2902:58;;;2947:1;2940:8;;;;2902:58;2972:11;2998:12;3013:5;:12;;;;2998:27;;3038:424;3051:4;3045:3;:10;3038:424;;;3072:11;3086:23;3099:3;3104:4;3086:12;:23::i;:::-;3072:37;;3343:7;3330:5;3336:3;3330:10;;;;;;;;;;;;;;;;;;;;;;;;:20;3326:125;;;3378:3;3371:10;;3326:125;;;3434:1;3428:3;:7;;;;:::i;:::-;3422:13;;3326:125;3038:424;;;;3588:1;3582:3;:7;:36;;;;;3611:7;3593:5;3605:1;3599:3;:7;;;;:::i;:::-;3593:14;;;;;;;;;;;;;;;;;;;;;;;;:25;3582:36;3578:126;;;3648:1;3642:3;:7;;;;:::i;:::-;3635:14;;;;;;3578:126;3689:3;3682:10;;;;2793:918;;;;;:::o;970:127::-;1077:1;1059:7;:14;;;:19;;;;;;;;;;;970:127;:::o;27898:146::-;27966:70;27982:24;:33;28007:7;27982:33;;;;;;;;;;;;;;;28017:18;28027:7;28017:9;:18::i;:::-;27966:15;:70::i;:::-;27898:146;:::o;28052:118::-;28109:53;28125:21;28148:13;:11;:13::i;:::-;28109:15;:53::i;:::-;28052:118::o;2002:193::-;2064:7;2185:1;2180;2176;:5;;;;:::i;:::-;2172:1;2168;:5;;;;:::i;:::-;:13;;;;:::i;:::-;2167:19;;;;:::i;:::-;2161:1;2157;:5;;;;:::i;:::-;2151:1;2147;:5;;;;:::i;:::-;2146:17;;;;:::i;:::-;:41;;;;:::i;:::-;2139:48;;2002:193;;;;:::o;28178:315::-;28273:17;28293:28;:18;:26;:28::i;:::-;28273:48;;28369:9;28336:30;28352:9;:13;;28336:15;:30::i;:::-;:42;28332:154;;;28395:9;:13;;28414:9;28395:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28439:9;:16;;28461:12;28439:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28332:154;28178:315;;;:::o;28501:212::-;28571:7;28609:1;28595:3;:10;;;;:15;28591:115;;;28634:1;28627:8;;;;28591:115;28675:3;28692:1;28679:3;:10;;;;:14;;;;:::i;:::-;28675:19;;;;;;;;;;;;;;;;;;;;;;;;28668:26;;28501:212;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;2008:6;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:366::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6320:220;;;:::o;6546:366::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6692:220;;;:::o;6918:366::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;7064:220;;;:::o;7290:118::-;7377:24;7395:5;7377:24;:::i;:::-;7372:3;7365:37;7355:53;;:::o;7414:112::-;7497:22;7513:5;7497:22;:::i;:::-;7492:3;7485:35;7475:51;;:::o;7532:222::-;7625:4;7663:2;7652:9;7648:18;7640:26;;7676:71;7744:1;7733:9;7729:17;7720:6;7676:71;:::i;:::-;7630:124;;;;:::o;7760:210::-;7847:4;7885:2;7874:9;7870:18;7862:26;;7898:65;7960:1;7949:9;7945:17;7936:6;7898:65;:::i;:::-;7852:118;;;;:::o;7976:313::-;8089:4;8127:2;8116:9;8112:18;8104:26;;8176:9;8170:4;8166:20;8162:1;8151:9;8147:17;8140:47;8204:78;8277:4;8268:6;8204:78;:::i;:::-;8196:86;;8094:195;;;;:::o;8295:419::-;8461:4;8499:2;8488:9;8484:18;8476:26;;8548:9;8542:4;8538:20;8534:1;8523:9;8519:17;8512:47;8576:131;8702:4;8576:131;:::i;:::-;8568:139;;8466:248;;;:::o;8720:419::-;8886:4;8924:2;8913:9;8909:18;8901:26;;8973:9;8967:4;8963:20;8959:1;8948:9;8944:17;8937:47;9001:131;9127:4;9001:131;:::i;:::-;8993:139;;8891:248;;;:::o;9145:419::-;9311:4;9349:2;9338:9;9334:18;9326:26;;9398:9;9392:4;9388:20;9384:1;9373:9;9369:17;9362:47;9426:131;9552:4;9426:131;:::i;:::-;9418:139;;9316:248;;;:::o;9570:419::-;9736:4;9774:2;9763:9;9759:18;9751:26;;9823:9;9817:4;9813:20;9809:1;9798:9;9794:17;9787:47;9851:131;9977:4;9851:131;:::i;:::-;9843:139;;9741:248;;;:::o;9995:419::-;10161:4;10199:2;10188:9;10184:18;10176:26;;10248:9;10242:4;10238:20;10234:1;10223:9;10219:17;10212:47;10276:131;10402:4;10276:131;:::i;:::-;10268:139;;10166:248;;;:::o;10420:419::-;10586:4;10624:2;10613:9;10609:18;10601:26;;10673:9;10667:4;10663:20;10659:1;10648:9;10644:17;10637:47;10701:131;10827:4;10701:131;:::i;:::-;10693:139;;10591:248;;;:::o;10845:419::-;11011:4;11049:2;11038:9;11034:18;11026:26;;11098:9;11092:4;11088:20;11084:1;11073:9;11069:17;11062:47;11126:131;11252:4;11126:131;:::i;:::-;11118:139;;11016:248;;;:::o;11270:419::-;11436:4;11474:2;11463:9;11459:18;11451:26;;11523:9;11517:4;11513:20;11509:1;11498:9;11494:17;11487:47;11551:131;11677:4;11551:131;:::i;:::-;11543:139;;11441:248;;;:::o;11695:419::-;11861:4;11899:2;11888:9;11884:18;11876:26;;11948:9;11942:4;11938:20;11934:1;11923:9;11919:17;11912:47;11976:131;12102:4;11976:131;:::i;:::-;11968:139;;11866:248;;;:::o;12120:419::-;12286:4;12324:2;12313:9;12309:18;12301:26;;12373:9;12367:4;12363:20;12359:1;12348:9;12344:17;12337:47;12401:131;12527:4;12401:131;:::i;:::-;12393:139;;12291:248;;;:::o;12545:419::-;12711:4;12749:2;12738:9;12734:18;12726:26;;12798:9;12792:4;12788:20;12784:1;12773:9;12769:17;12762:47;12826:131;12952:4;12826:131;:::i;:::-;12818:139;;12716:248;;;:::o;12970:419::-;13136:4;13174:2;13163:9;13159:18;13151:26;;13223:9;13217:4;13213:20;13209:1;13198:9;13194:17;13187:47;13251:131;13377:4;13251:131;:::i;:::-;13243:139;;13141:248;;;:::o;13395:222::-;13488:4;13526:2;13515:9;13511:18;13503:26;;13539:71;13607:1;13596:9;13592:17;13583:6;13539:71;:::i;:::-;13493:124;;;;:::o;13623:214::-;13712:4;13750:2;13739:9;13735:18;13727:26;;13763:67;13827:1;13816:9;13812:17;13803:6;13763:67;:::i;:::-;13717:120;;;;:::o;13843:99::-;13895:6;13929:5;13923:12;13913:22;;13902:40;;;:::o;13948:169::-;14032:11;14066:6;14061:3;14054:19;14106:4;14101:3;14097:14;14082:29;;14044:73;;;;:::o;14123:305::-;14163:3;14182:20;14200:1;14182:20;:::i;:::-;14177:25;;14216:20;14234:1;14216:20;:::i;:::-;14211:25;;14370:1;14302:66;14298:74;14295:1;14292:81;14289:2;;;14376:18;;:::i;:::-;14289:2;14420:1;14417;14413:9;14406:16;;14167:261;;;;:::o;14434:185::-;14474:1;14491:20;14509:1;14491:20;:::i;:::-;14486:25;;14525:20;14543:1;14525:20;:::i;:::-;14520:25;;14564:1;14554:2;;14569:18;;:::i;:::-;14554:2;14611:1;14608;14604:9;14599:14;;14476:143;;;;:::o;14625:191::-;14665:4;14685:20;14703:1;14685:20;:::i;:::-;14680:25;;14719:20;14737:1;14719:20;:::i;:::-;14714:25;;14758:1;14755;14752:8;14749:2;;;14763:18;;:::i;:::-;14749:2;14808:1;14805;14801:9;14793:17;;14670:146;;;;:::o;14822:96::-;14859:7;14888:24;14906:5;14888:24;:::i;:::-;14877:35;;14867:51;;;:::o;14924:90::-;14958:7;15001:5;14994:13;14987:21;14976:32;;14966:48;;;:::o;15020:126::-;15057:7;15097:42;15090:5;15086:54;15075:65;;15065:81;;;:::o;15152:77::-;15189:7;15218:5;15207:16;;15197:32;;;:::o;15235:86::-;15270:7;15310:4;15303:5;15299:16;15288:27;;15278:43;;;:::o;15327:307::-;15395:1;15405:113;15419:6;15416:1;15413:13;15405:113;;;15504:1;15499:3;15495:11;15489:18;15485:1;15480:3;15476:11;15469:39;15441:2;15438:1;15434:10;15429:15;;15405:113;;;15536:6;15533:1;15530:13;15527:2;;;15616:1;15607:6;15602:3;15598:16;15591:27;15527:2;15376:258;;;;:::o;15640:320::-;15684:6;15721:1;15715:4;15711:12;15701:22;;15768:1;15762:4;15758:12;15789:18;15779:2;;15845:4;15837:6;15833:17;15823:27;;15779:2;15907;15899:6;15896:14;15876:18;15873:38;15870:2;;;15926:18;;:::i;:::-;15870:2;15691:269;;;;:::o;15966:176::-;15998:1;16015:20;16033:1;16015:20;:::i;:::-;16010:25;;16049:20;16067:1;16049:20;:::i;:::-;16044:25;;16088:1;16078:2;;16093:18;;:::i;:::-;16078:2;16134:1;16131;16127:9;16122:14;;16000:142;;;;:::o;16148:180::-;16196:77;16193:1;16186:88;16293:4;16290:1;16283:15;16317:4;16314:1;16307:15;16334:180;16382:77;16379:1;16372:88;16479:4;16476:1;16469:15;16503:4;16500:1;16493:15;16520:180;16568:77;16565:1;16558:88;16665:4;16662:1;16655:15;16689:4;16686:1;16679:15;16706:102;16747:6;16798:2;16794:7;16789:2;16782:5;16778:14;16774:28;16764:38;;16754:54;;;:::o;16814:179::-;16954:31;16950:1;16942:6;16938:14;16931:55;16920:73;:::o;16999:222::-;17139:34;17135:1;17127:6;17123:14;17116:58;17208:5;17203:2;17195:6;17191:15;17184:30;17105:116;:::o;17227:225::-;17367:34;17363:1;17355:6;17351:14;17344:58;17436:8;17431:2;17423:6;17419:15;17412:33;17333:119;:::o;17458:221::-;17598:34;17594:1;17586:6;17582:14;17575:58;17667:4;17662:2;17654:6;17650:15;17643:29;17564:115;:::o;17685:225::-;17825:34;17821:1;17813:6;17809:14;17802:58;17894:8;17889:2;17881:6;17877:15;17870:33;17791:119;:::o;17916:227::-;18056:34;18052:1;18044:6;18040:14;18033:58;18125:10;18120:2;18112:6;18108:15;18101:35;18022:121;:::o;18149:182::-;18289:34;18285:1;18277:6;18273:14;18266:58;18255:76;:::o;18337:224::-;18477:34;18473:1;18465:6;18461:14;18454:58;18546:7;18541:2;18533:6;18529:15;18522:32;18443:118;:::o;18567:223::-;18707:34;18703:1;18695:6;18691:14;18684:58;18776:6;18771:2;18763:6;18759:15;18752:31;18673:117;:::o;18796:172::-;18936:24;18932:1;18924:6;18920:14;18913:48;18902:66;:::o;18974:173::-;19114:25;19110:1;19102:6;19098:14;19091:49;19080:67;:::o;19153:224::-;19293:34;19289:1;19281:6;19277:14;19270:58;19362:7;19357:2;19349:6;19345:15;19338:32;19259:118;:::o;19383:122::-;19456:24;19474:5;19456:24;:::i;:::-;19449:5;19446:35;19436:2;;19495:1;19492;19485:12;19436:2;19426:79;:::o;19511:122::-;19584:24;19602:5;19584:24;:::i;:::-;19577:5;19574:35;19564:2;;19623:1;19620;19613:12;19564:2;19554:79;:::o

Swarm Source

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