Overview
Max Total Supply
110,000,000 Sunder
Holders
380 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.550979366930780678 SunderValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Sunder
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-08 */ /** *Submitted for verification at Etherscan.io on 2021-06-03 */ // File: @openzeppelin/contracts/utils/EnumerableSet.sol pragma solidity ^0.6.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.6.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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { 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.6.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. */ 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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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.6.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/math/SafeMath.sol pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.6.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 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @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/ERC20Burnable.sol pragma solidity ^0.6.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } // File: contracts/governance.sol pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; abstract contract DeligateERC20 is ERC20Burnable { /// @notice A record of each accounts delegate mapping (address => address) internal _delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } /// @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice A record of states for signing / validating signatures mapping (address => uint) public nonces; // support delegates mint function _mint(address account, uint256 amount) internal override virtual { super._mint(account, amount); // add delegates to the minter _moveDelegates(address(0), _delegates[account], amount); } function _transfer(address sender, address recipient, uint256 amount) internal override virtual { super._transfer(sender, recipient, amount); _moveDelegates(_delegates[sender], _delegates[recipient], amount); } // support delegates burn function burn(uint256 amount) public override virtual { super.burn(amount); // del delegates to backhole _moveDelegates(_delegates[_msgSender()], address(0), amount); } function burnFrom(address account, uint256 amount) public override virtual { super.burnFrom(account, amount); // del delegates to the backhole _moveDelegates(_delegates[account], address(0), amount); } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig( address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s ) external { bytes32 domainSeparator = keccak256( abi.encode( DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this) ) ); bytes32 structHash = keccak256( abi.encode( DELEGATION_TYPEHASH, delegatee, nonce, expiry ) ); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", domainSeparator, structHash ) ); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "Governance::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "Governance::delegateBySig: invalid nonce"); require(now <= expiry, "Governance::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint256) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint blockNumber) external view returns (uint256) { require(blockNumber < block.number, "Governance::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates[delegator]; uint256 delegatorBalance = balanceOf(delegator); // balance of underlying balances (not scaled); _delegates[delegator] = delegatee; _moveDelegates(currentDelegate, delegatee, delegatorBalance); emit DelegateChanged(delegator, currentDelegate, delegatee); } function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { // decrease old representative uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld.sub(amount); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld.add(amount); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32(block.number, "Governance::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function getChainId() internal pure returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); } /** * @author Sunder.Team * * @dev Contract for Sunder token with burn support */ pragma solidity ^0.6.0; // Sunder erc20 Token Contract. contract Sunder is DeligateERC20, Ownable { uint256 private constant maxSupply = 200 * 1e6 * 1e18; // the total supply uint256 private idoSupply = 5 * 1e6 * 1e18; // pre-mine for ido address private idoAdmin = msg.sender; uint256 private preMineSupply = 85 * 1e6 * 1e18; // pre-mine for locking address private preMineAdmin = 0xf8e835232daE0295Ac12FD326EA75b22a6F732E7; // for minters using EnumerableSet for EnumerableSet.AddressSet; EnumerableSet.AddressSet private _minters; constructor() public ERC20("Sunder Goverance Token", "Sunder") { _mint(idoAdmin, idoSupply); _mint(preMineAdmin, preMineSupply); } // mint with max supply function mint(address _to, uint256 _amount) public onlyMinter returns (bool) { if(_amount.add(totalSupply()) > maxSupply) { return false; } _mint(_to, _amount); return true; } function addMinter(address _addMinter) public onlyOwner returns (bool) { require(_addMinter != address(0), "Alert: _addMinter is the zero address"); return EnumerableSet.add(_minters, _addMinter); } function delMinter(address _delMinter) public onlyOwner returns (bool) { require(_delMinter != address(0), "Alert: _delMinter is the zero address"); return EnumerableSet.remove(_minters, _delMinter); } function getMinterLength() public view returns (uint256) { return EnumerableSet.length(_minters); } function isMinter(address account) public view returns (bool) { return EnumerableSet.contains(_minters, account); } modifier onlyMinter() { require(isMinter(msg.sender), "Alert: caller is not the minter"); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addMinter","type":"address"}],"name":"addMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"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":"_delMinter","type":"address"}],"name":"delMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":[],"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":"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"}]
Contract Creation Code
60806040526a0422ca8b0a00a425000000600b55600c80546001600160a01b031990811633179091556a464f733baa0ae675000000600d55600e805490911673f8e835232dae0295ac12fd326ea75b22a6f732e71790553480156200006357600080fd5b50604080518082018252601681527f53756e64657220476f766572616e636520546f6b656e0000000000000000000060208083019182528351808501909452600684526529bab73232b960d11b908401528151919291620000c7916003916200066f565b508051620000dd9060049060208401906200066f565b50506005805460ff19166012179055506000620000f962000183565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c54600b5462000162916001600160a01b03169062000187565b600e54600d546200017d916001600160a01b03169062000187565b620007e6565b3390565b6200019e8282620001c960201b62000eb21760201c565b6001600160a01b03808316600090815260066020526040812054620001c5921683620002b5565b5050565b6001600160a01b038216620001fb5760405162461bcd60e51b8152600401620001f29062000798565b60405180910390fd5b620002096000838362000422565b62000225816002546200042760201b62000f721790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200025891839062000f7262000427821b17901c565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002a9908590620007cf565b60405180910390a35050565b816001600160a01b0316836001600160a01b031614158015620002d85750600081115b1562000422576001600160a01b0383161562000380576001600160a01b03831660009081526008602052604081205463ffffffff1690816200031c5760006200034e565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006200036c84836200045660201b62000f971790919060201c565b90506200037c86848484620004a0565b5050505b6001600160a01b0382161562000422576001600160a01b03821660009081526008602052604081205463ffffffff169081620003be576000620003f0565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006200040e84836200042760201b62000f721790919060201c565b90506200041e85848484620004a0565b5050505b505050565b6000828201838110156200044f5760405162461bcd60e51b8152600401620001f29062000761565b9392505050565b60006200044f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506200060d60201b60201c565b6000620004c7436040518060600160405280603a8152602001620028ae603a91396200063c565b905060008463ffffffff161180156200051157506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b1562000550576001600160a01b038516600090815260076020908152604080832063ffffffff60001989011684529091529020600101829055620005c1565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051620005fe929190620007d8565b60405180910390a25050505050565b60008184841115620006345760405162461bcd60e51b8152600401620001f291906200070b565b505050900390565b6000816401000000008410620006675760405162461bcd60e51b8152600401620001f291906200070b565b509192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006b257805160ff1916838001178555620006e2565b82800160010185558215620006e2579182015b82811115620006e2578251825591602001919060010190620006c5565b50620006f0929150620006f4565b5090565b5b80821115620006f05760008155600101620006f5565b6000602080835283518082850152825b8181101562000739578581018301518582016040015282016200071b565b818111156200074b5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b918252602082015260400190565b6120b880620007f66000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063782d6fe111610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146103ce578063e7a324dc146103e1578063f1127ed8146103e9578063f2fde38b1461040a576101da565b8063a9059cbb14610382578063aa271e1a14610395578063b4b5ea57146103a8578063c3cda520146103bb576101da565b80638da5cb5b116100de5780638da5cb5b1461033f57806395d89b4114610354578063983b2d561461035c578063a457c2d71461036f576101da565b8063782d6fe11461030657806379cc6790146103195780637ecebe001461032c576101da565b8063313ce5671161017c5780635c19a95c1161014b5780635c19a95c146102b85780636fcfff45146102cb57806370a08231146102eb578063715018a6146102fe576101da565b8063313ce56714610268578063395093511461027d57806340c10f191461029057806342966c68146102a3576101da565b806318160ddd116101b857806318160ddd1461023257806320606b701461023a57806323338b881461024257806323b872dd14610255576101da565b80630323aac7146101df57806306fdde03146101fd578063095ea7b314610212575b600080fd5b6101e761041d565b6040516101f49190611a4f565b60405180910390f35b61020561042e565b6040516101f49190611abe565b610225610220366004611935565b6104c4565b6040516101f49190611a44565b6101e76104e2565b6101e76104e8565b6102256102503660046118a6565b61050c565b6102256102633660046118f5565b61057d565b610270610604565b6040516101f49190611f6c565b61022561028b366004611935565b61060d565b61022561029e366004611935565b61065b565b6102b66102b13660046119fd565b6106b8565b005b6102b66102c63660046118a6565b6106fb565b6102de6102d93660046118a6565b610705565b6040516101f49190611f45565b6101e76102f93660046118a6565b61071d565b6102b6610738565b6101e7610314366004611935565b6107b7565b6102b6610327366004611935565b6109a0565b6101e761033a3660046118a6565b6109d4565b6103476109e6565b6040516101f49190611a30565b6102056109f5565b61022561036a3660046118a6565b610a56565b61022561037d366004611935565b610abe565b610225610390366004611935565b610b26565b6102256103a33660046118a6565b610b3a565b6101e76103b63660046118a6565b610b47565b6102b66103c936600461195f565b610bab565b6101e76103dc3660046118c1565b610d7f565b6101e7610daa565b6103fc6103f73660046119be565b610dce565b6040516101f4929190611f56565b6102b66104183660046118a6565b610dfb565b6000610429600f610fd9565b905090565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b60006104d86104d1610fe4565b8484610fe8565b5060015b92915050565b60025490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610516610fe4565b600a546001600160a01b0390811691161461054c5760405162461bcd60e51b815260040161054390611d21565b60405180910390fd5b6001600160a01b0382166105725760405162461bcd60e51b815260040161054390611c60565b6104dc600f8361109c565b600061058a8484846110b1565b6105fa84610596610fe4565b6105f585604051806060016040528060288152602001612012602891396001600160a01b038a166000908152600160205260408120906105d4610fe4565b6001600160a01b0316815260208101919091526040016000205491906110f3565b610fe8565b5060019392505050565b60055460ff1690565b60006104d861061a610fe4565b846105f5856001600061062b610fe4565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f72565b600061066633610b3a565b6106825760405162461bcd60e51b815260040161054390611cea565b6aa56fa5b99019a5c80000006106a06106996104e2565b8490610f72565b11156106ae575060006104dc565b6104d8838361111f565b6106c18161114e565b6106f8600660006106d0610fe4565b6001600160a01b0390811682526020820192909252604001600090812054909116908361115f565b50565b6106f8338261129c565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b610740610fe4565b600a546001600160a01b0390811691161461076d5760405162461bcd60e51b815260040161054390611d21565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60004382106107d85760405162461bcd60e51b815260040161054390611b11565b6001600160a01b03831660009081526008602052604090205463ffffffff16806108065760009150506104dc565b6001600160a01b038416600090815260076020908152604080832063ffffffff600019860181168552925290912054168310610875576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff168352929052206001015490506104dc565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff168310156108b05760009150506104dc565b600060001982015b8163ffffffff168163ffffffff16111561096957600282820363ffffffff160481036108e2611878565b506001600160a01b038716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610944576020015194506104dc9350505050565b805163ffffffff1687111561095b57819350610962565b6001820392505b50506108b8565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b6109aa828261134e565b6001600160a01b038083166000908152600660205260408120546109d09216908361115f565b5050565b60096020526000908152604090205481565b600a546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b6000610a60610fe4565b600a546001600160a01b03908116911614610a8d5760405162461bcd60e51b815260040161054390611d21565b6001600160a01b038216610ab35760405162461bcd60e51b815260040161054390611ca5565b6104dc600f8361139e565b60006104d8610acb610fe4565b846105f58560405180606001604052806025815260200161205e6025913960016000610af5610fe4565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906110f3565b60006104d8610b33610fe4565b84846110b1565b60006104dc600f836113b3565b6001600160a01b03811660009081526008602052604081205463ffffffff1680610b72576000610ba4565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610bd661042e565b80519060200120610be56113c8565b30604051602001610bf99493929190611a7c565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf888888604051602001610c4a9493929190611a58565b60405160208183030381529060405280519060200120905060008282604051602001610c77929190611a15565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610cb49493929190611aa0565b6020604051602081039080840390855afa158015610cd6573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d095760405162461bcd60e51b815260040161054390611e20565b6001600160a01b03811660009081526009602052604090208054600181019091558914610d485760405162461bcd60e51b815260040161054390611e6c565b87421115610d685760405162461bcd60e51b815260040161054390611eeb565b610d72818b61129c565b505050505b505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b610e03610fe4565b600a546001600160a01b03908116911614610e305760405162461bcd60e51b815260040161054390611d21565b6001600160a01b038116610e565760405162461bcd60e51b815260040161054390611ba1565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216610ed85760405162461bcd60e51b815260040161054390611eb4565b610ee4600083836110ee565b600254610ef19082610f72565b6002556001600160a01b038216600090815260208190526040902054610f179082610f72565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f66908590611a4f565b60405180910390a35050565b600082820183811015610ba45760405162461bcd60e51b815260040161054390611c29565b6000610ba483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110f3565b60006104dc826113cc565b3390565b6001600160a01b03831661100e5760405162461bcd60e51b815260040161054390611ddc565b6001600160a01b0382166110345760405162461bcd60e51b815260040161054390611be7565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061108f908590611a4f565b60405180910390a3505050565b6000610ba4836001600160a01b0384166113d0565b6110bc838383611496565b6001600160a01b038084166000908152600660205260408082205485841683529120546110ee9291821691168361115f565b505050565b600081848411156111175760405162461bcd60e51b81526004016105439190611abe565b505050900390565b6111298282610eb2565b6001600160a01b038083166000908152600660205260408120546109d092168361115f565b6106f8611159610fe4565b826115ab565b816001600160a01b0316836001600160a01b0316141580156111815750600081115b156110ee576001600160a01b03831615611213576001600160a01b03831660009081526008602052604081205463ffffffff1690816111c15760006111f3565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006112018285610f97565b905061120f86848484611681565b5050505b6001600160a01b038216156110ee576001600160a01b03821660009081526008602052604081205463ffffffff16908161124e576000611280565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b9050600061128e8285610f72565b9050610d7785848484611681565b6001600160a01b03808316600090815260066020526040812054909116906112c38461071d565b6001600160a01b03858116600090815260066020526040902080546001600160a01b03191691861691909117905590506112fe82848361115f565b826001600160a01b0316826001600160a01b0316856001600160a01b03167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a450505050565b60006113808260405180606001604052806024815260200161203a60249139611379866103dc610fe4565b91906110f3565b90506113948361138e610fe4565b83610fe8565b6110ee83836115ab565b6000610ba4836001600160a01b0384166117e6565b6000610ba4836001600160a01b038416611830565b4690565b5490565b6000818152600183016020526040812054801561148c578354600019808301919081019060009087908390811061140357fe5b906000526020600020015490508087600001848154811061142057fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061145057fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506104dc565b60009150506104dc565b6001600160a01b0383166114bc5760405162461bcd60e51b815260040161054390611d97565b6001600160a01b0382166114e25760405162461bcd60e51b815260040161054390611b5e565b6114ed8383836110ee565b61152a81604051806060016040528060268152602001611fb2602691396001600160a01b03861660009081526020819052604090205491906110f3565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546115599082610f72565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061108f908590611a4f565b6001600160a01b0382166115d15760405162461bcd60e51b815260040161054390611d56565b6115dd826000836110ee565b61161a81604051806060016040528060228152602001611f90602291396001600160a01b03851660009081526020819052604090205491906110f3565b6001600160a01b0383166000908152602081905260409020556002546116409082610f97565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f66908590611a4f565b60006116a5436040518060600160405280603a8152602001611fd8603a9139611848565b905060008463ffffffff161180156116ee57506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561172b576001600160a01b038516600090815260076020908152604080832063ffffffff6000198901168452909152902060010182905561179c565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72484846040516117d7929190611f37565b60405180910390a25050505050565b60006117f28383611830565b611828575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556104dc565b5060006104dc565b60009081526001919091016020526040902054151590565b60008164010000000084106118705760405162461bcd60e51b81526004016105439190611abe565b509192915050565b604080518082019091526000808252602082015290565b80356001600160a01b03811681146104dc57600080fd5b6000602082840312156118b7578081fd5b610ba4838361188f565b600080604083850312156118d3578081fd5b6118dd848461188f565b91506118ec846020850161188f565b90509250929050565b600080600060608486031215611909578081fd5b833561191481611f7a565b9250602084013561192481611f7a565b929592945050506040919091013590565b60008060408385031215611947578182fd5b611951848461188f565b946020939093013593505050565b60008060008060008060c08789031215611977578182fd5b611981888861188f565b95506020870135945060408701359350606087013560ff811681146119a4578283fd5b9598949750929560808101359460a0909101359350915050565b600080604083850312156119d0578182fd5b6119da848461188f565b9150602083013563ffffffff811681146119f2578182fd5b809150509250929050565b600060208284031215611a0e578081fd5b5035919050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611aea57858101830151858201604001528201611ace565b81811115611afb5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252602d908201527f476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207960408201526c195d0819195d195c9b5a5b9959609a1b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526025908201527f416c6572743a205f64656c4d696e74657220697320746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526025908201527f416c6572743a205f6164644d696e74657220697320746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601f908201527f416c6572743a2063616c6c6572206973206e6f7420746865206d696e74657200604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252602c908201527f476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c60408201526b6964207369676e617475726560a01b606082015260800190565b60208082526028908201527f476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6040820152676964206e6f6e636560c01b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252602c908201527f476f7665726e616e63653a3a64656c656761746542795369673a207369676e6160408201526b1d1d5c9948195e1c1a5c995960a21b606082015260800190565b918252602082015260400190565b63ffffffff91909116815260200190565b63ffffffff929092168252602082015260400190565b60ff91909116815260200190565b6001600160a01b03811681146106f857600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200253eaac4fb4027a8baeea687cf4d9a59b16f3e0ef465c54a24badc50ef7d5bc64736f6c634300060c0033476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063782d6fe111610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146103ce578063e7a324dc146103e1578063f1127ed8146103e9578063f2fde38b1461040a576101da565b8063a9059cbb14610382578063aa271e1a14610395578063b4b5ea57146103a8578063c3cda520146103bb576101da565b80638da5cb5b116100de5780638da5cb5b1461033f57806395d89b4114610354578063983b2d561461035c578063a457c2d71461036f576101da565b8063782d6fe11461030657806379cc6790146103195780637ecebe001461032c576101da565b8063313ce5671161017c5780635c19a95c1161014b5780635c19a95c146102b85780636fcfff45146102cb57806370a08231146102eb578063715018a6146102fe576101da565b8063313ce56714610268578063395093511461027d57806340c10f191461029057806342966c68146102a3576101da565b806318160ddd116101b857806318160ddd1461023257806320606b701461023a57806323338b881461024257806323b872dd14610255576101da565b80630323aac7146101df57806306fdde03146101fd578063095ea7b314610212575b600080fd5b6101e761041d565b6040516101f49190611a4f565b60405180910390f35b61020561042e565b6040516101f49190611abe565b610225610220366004611935565b6104c4565b6040516101f49190611a44565b6101e76104e2565b6101e76104e8565b6102256102503660046118a6565b61050c565b6102256102633660046118f5565b61057d565b610270610604565b6040516101f49190611f6c565b61022561028b366004611935565b61060d565b61022561029e366004611935565b61065b565b6102b66102b13660046119fd565b6106b8565b005b6102b66102c63660046118a6565b6106fb565b6102de6102d93660046118a6565b610705565b6040516101f49190611f45565b6101e76102f93660046118a6565b61071d565b6102b6610738565b6101e7610314366004611935565b6107b7565b6102b6610327366004611935565b6109a0565b6101e761033a3660046118a6565b6109d4565b6103476109e6565b6040516101f49190611a30565b6102056109f5565b61022561036a3660046118a6565b610a56565b61022561037d366004611935565b610abe565b610225610390366004611935565b610b26565b6102256103a33660046118a6565b610b3a565b6101e76103b63660046118a6565b610b47565b6102b66103c936600461195f565b610bab565b6101e76103dc3660046118c1565b610d7f565b6101e7610daa565b6103fc6103f73660046119be565b610dce565b6040516101f4929190611f56565b6102b66104183660046118a6565b610dfb565b6000610429600f610fd9565b905090565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b60006104d86104d1610fe4565b8484610fe8565b5060015b92915050565b60025490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610516610fe4565b600a546001600160a01b0390811691161461054c5760405162461bcd60e51b815260040161054390611d21565b60405180910390fd5b6001600160a01b0382166105725760405162461bcd60e51b815260040161054390611c60565b6104dc600f8361109c565b600061058a8484846110b1565b6105fa84610596610fe4565b6105f585604051806060016040528060288152602001612012602891396001600160a01b038a166000908152600160205260408120906105d4610fe4565b6001600160a01b0316815260208101919091526040016000205491906110f3565b610fe8565b5060019392505050565b60055460ff1690565b60006104d861061a610fe4565b846105f5856001600061062b610fe4565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f72565b600061066633610b3a565b6106825760405162461bcd60e51b815260040161054390611cea565b6aa56fa5b99019a5c80000006106a06106996104e2565b8490610f72565b11156106ae575060006104dc565b6104d8838361111f565b6106c18161114e565b6106f8600660006106d0610fe4565b6001600160a01b0390811682526020820192909252604001600090812054909116908361115f565b50565b6106f8338261129c565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b610740610fe4565b600a546001600160a01b0390811691161461076d5760405162461bcd60e51b815260040161054390611d21565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60004382106107d85760405162461bcd60e51b815260040161054390611b11565b6001600160a01b03831660009081526008602052604090205463ffffffff16806108065760009150506104dc565b6001600160a01b038416600090815260076020908152604080832063ffffffff600019860181168552925290912054168310610875576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff168352929052206001015490506104dc565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff168310156108b05760009150506104dc565b600060001982015b8163ffffffff168163ffffffff16111561096957600282820363ffffffff160481036108e2611878565b506001600160a01b038716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610944576020015194506104dc9350505050565b805163ffffffff1687111561095b57819350610962565b6001820392505b50506108b8565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b6109aa828261134e565b6001600160a01b038083166000908152600660205260408120546109d09216908361115f565b5050565b60096020526000908152604090205481565b600a546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b6000610a60610fe4565b600a546001600160a01b03908116911614610a8d5760405162461bcd60e51b815260040161054390611d21565b6001600160a01b038216610ab35760405162461bcd60e51b815260040161054390611ca5565b6104dc600f8361139e565b60006104d8610acb610fe4565b846105f58560405180606001604052806025815260200161205e6025913960016000610af5610fe4565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906110f3565b60006104d8610b33610fe4565b84846110b1565b60006104dc600f836113b3565b6001600160a01b03811660009081526008602052604081205463ffffffff1680610b72576000610ba4565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610bd661042e565b80519060200120610be56113c8565b30604051602001610bf99493929190611a7c565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf888888604051602001610c4a9493929190611a58565b60405160208183030381529060405280519060200120905060008282604051602001610c77929190611a15565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610cb49493929190611aa0565b6020604051602081039080840390855afa158015610cd6573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d095760405162461bcd60e51b815260040161054390611e20565b6001600160a01b03811660009081526009602052604090208054600181019091558914610d485760405162461bcd60e51b815260040161054390611e6c565b87421115610d685760405162461bcd60e51b815260040161054390611eeb565b610d72818b61129c565b505050505b505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b610e03610fe4565b600a546001600160a01b03908116911614610e305760405162461bcd60e51b815260040161054390611d21565b6001600160a01b038116610e565760405162461bcd60e51b815260040161054390611ba1565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216610ed85760405162461bcd60e51b815260040161054390611eb4565b610ee4600083836110ee565b600254610ef19082610f72565b6002556001600160a01b038216600090815260208190526040902054610f179082610f72565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f66908590611a4f565b60405180910390a35050565b600082820183811015610ba45760405162461bcd60e51b815260040161054390611c29565b6000610ba483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110f3565b60006104dc826113cc565b3390565b6001600160a01b03831661100e5760405162461bcd60e51b815260040161054390611ddc565b6001600160a01b0382166110345760405162461bcd60e51b815260040161054390611be7565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061108f908590611a4f565b60405180910390a3505050565b6000610ba4836001600160a01b0384166113d0565b6110bc838383611496565b6001600160a01b038084166000908152600660205260408082205485841683529120546110ee9291821691168361115f565b505050565b600081848411156111175760405162461bcd60e51b81526004016105439190611abe565b505050900390565b6111298282610eb2565b6001600160a01b038083166000908152600660205260408120546109d092168361115f565b6106f8611159610fe4565b826115ab565b816001600160a01b0316836001600160a01b0316141580156111815750600081115b156110ee576001600160a01b03831615611213576001600160a01b03831660009081526008602052604081205463ffffffff1690816111c15760006111f3565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006112018285610f97565b905061120f86848484611681565b5050505b6001600160a01b038216156110ee576001600160a01b03821660009081526008602052604081205463ffffffff16908161124e576000611280565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b9050600061128e8285610f72565b9050610d7785848484611681565b6001600160a01b03808316600090815260066020526040812054909116906112c38461071d565b6001600160a01b03858116600090815260066020526040902080546001600160a01b03191691861691909117905590506112fe82848361115f565b826001600160a01b0316826001600160a01b0316856001600160a01b03167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a450505050565b60006113808260405180606001604052806024815260200161203a60249139611379866103dc610fe4565b91906110f3565b90506113948361138e610fe4565b83610fe8565b6110ee83836115ab565b6000610ba4836001600160a01b0384166117e6565b6000610ba4836001600160a01b038416611830565b4690565b5490565b6000818152600183016020526040812054801561148c578354600019808301919081019060009087908390811061140357fe5b906000526020600020015490508087600001848154811061142057fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061145057fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506104dc565b60009150506104dc565b6001600160a01b0383166114bc5760405162461bcd60e51b815260040161054390611d97565b6001600160a01b0382166114e25760405162461bcd60e51b815260040161054390611b5e565b6114ed8383836110ee565b61152a81604051806060016040528060268152602001611fb2602691396001600160a01b03861660009081526020819052604090205491906110f3565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546115599082610f72565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061108f908590611a4f565b6001600160a01b0382166115d15760405162461bcd60e51b815260040161054390611d56565b6115dd826000836110ee565b61161a81604051806060016040528060228152602001611f90602291396001600160a01b03851660009081526020819052604090205491906110f3565b6001600160a01b0383166000908152602081905260409020556002546116409082610f97565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f66908590611a4f565b60006116a5436040518060600160405280603a8152602001611fd8603a9139611848565b905060008463ffffffff161180156116ee57506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561172b576001600160a01b038516600090815260076020908152604080832063ffffffff6000198901168452909152902060010182905561179c565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72484846040516117d7929190611f37565b60405180910390a25050505050565b60006117f28383611830565b611828575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556104dc565b5060006104dc565b60009081526001919091016020526040902054151590565b60008164010000000084106118705760405162461bcd60e51b81526004016105439190611abe565b509192915050565b604080518082019091526000808252602082015290565b80356001600160a01b03811681146104dc57600080fd5b6000602082840312156118b7578081fd5b610ba4838361188f565b600080604083850312156118d3578081fd5b6118dd848461188f565b91506118ec846020850161188f565b90509250929050565b600080600060608486031215611909578081fd5b833561191481611f7a565b9250602084013561192481611f7a565b929592945050506040919091013590565b60008060408385031215611947578182fd5b611951848461188f565b946020939093013593505050565b60008060008060008060c08789031215611977578182fd5b611981888861188f565b95506020870135945060408701359350606087013560ff811681146119a4578283fd5b9598949750929560808101359460a0909101359350915050565b600080604083850312156119d0578182fd5b6119da848461188f565b9150602083013563ffffffff811681146119f2578182fd5b809150509250929050565b600060208284031215611a0e578081fd5b5035919050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611aea57858101830151858201604001528201611ace565b81811115611afb5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252602d908201527f476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207960408201526c195d0819195d195c9b5a5b9959609a1b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526025908201527f416c6572743a205f64656c4d696e74657220697320746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526025908201527f416c6572743a205f6164644d696e74657220697320746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601f908201527f416c6572743a2063616c6c6572206973206e6f7420746865206d696e74657200604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252602c908201527f476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c60408201526b6964207369676e617475726560a01b606082015260800190565b60208082526028908201527f476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6040820152676964206e6f6e636560c01b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252602c908201527f476f7665726e616e63653a3a64656c656761746542795369673a207369676e6160408201526b1d1d5c9948195e1c1a5c995960a21b606082015260800190565b918252602082015260400190565b63ffffffff91909116815260200190565b63ffffffff929092168252602082015260400190565b60ff91909116815260200190565b6001600160a01b03811681146106f857600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200253eaac4fb4027a8baeea687cf4d9a59b16f3e0ef465c54a24badc50ef7d5bc64736f6c634300060c0033
Deployed Bytecode Sourcemap
47300:1867:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48789:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28024:83;;;:::i;:::-;;;;;;;:::i;30130:169::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;29099:100::-;;;:::i;38798:122::-;;;:::i;48547:234::-;;;;;;:::i;:::-;;:::i;30773:321::-;;;;;;:::i;:::-;;:::i;28951:83::-;;;:::i;:::-;;;;;;;:::i;31503:218::-;;;;;;:::i;:::-;;:::i;48067:231::-;;;;;;:::i;:::-;;:::i;39810:202::-;;;;;;:::i;:::-;;:::i;:::-;;40404:104;;;;;;:::i;:::-;;:::i;38676:49::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;29262:119::-;;;;;;:::i;:::-;;:::i;10848:148::-;;;:::i;43025:1259::-;;;;;;:::i;:::-;;:::i;40020:235::-;;;;;;:::i;:::-;;:::i;39212:39::-;;;;;;:::i;:::-;;:::i;10206:79::-;;;:::i;:::-;;;;;;;:::i;28226:87::-;;;:::i;48308:231::-;;;;;;:::i;:::-;;:::i;32224:269::-;;;;;;:::i;:::-;;:::i;29594:175::-;;;;;;:::i;:::-;;:::i;48910:129::-;;;;;;:::i;:::-;;:::i;42339:255::-;;;;;;:::i;:::-;;:::i;40942:1196::-;;;;;;:::i;:::-;;:::i;29832:151::-;;;;;;:::i;:::-;;:::i;39014:117::-;;;:::i;38537:70::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;11151:244::-;;;;;;:::i;:::-;;:::i;48789:113::-;48837:7;48864:30;48885:8;48864:20;:30::i;:::-;48857:37;;48789:113;:::o;28024:83::-;28094:5;28087:12;;;;;;;;-1:-1:-1;;28087:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28061:13;;28087:12;;28094:5;;28087:12;;28094:5;28087:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28024:83;:::o;30130:169::-;30213:4;30230:39;30239:12;:10;:12::i;:::-;30253:7;30262:6;30230:8;:39::i;:::-;-1:-1:-1;30287:4:0;30130:169;;;;;:::o;29099:100::-;29179:12;;29099:100;:::o;38798:122::-;38840:80;38798:122;:::o;48547:234::-;48612:4;10428:12;:10;:12::i;:::-;10418:6;;-1:-1:-1;;;;;10418:6:0;;;:22;;;10410:67;;;;-1:-1:-1;;;10410:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;48637:24:0;::::1;48629:74;;;;-1:-1:-1::0;;;48629:74:0::1;;;;;;;:::i;:::-;48731:42;48752:8;48762:10;48731:20;:42::i;30773:321::-:0;30879:4;30896:36;30906:6;30914:9;30925:6;30896:9;:36::i;:::-;30943:121;30952:6;30960:12;:10;:12::i;:::-;30974:89;31012:6;30974:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30974:19:0;;;;;;:11;:19;;;;;;30994:12;:10;:12::i;:::-;-1:-1:-1;;;;;30974:33:0;;;;;;;;;;;;-1:-1:-1;30974:33:0;;;:89;:37;:89::i;:::-;30943:8;:121::i;:::-;-1:-1:-1;31082:4:0;30773:321;;;;;:::o;28951:83::-;29017:9;;;;28951:83;:::o;31503:218::-;31591:4;31608:83;31617:12;:10;:12::i;:::-;31631:7;31640:50;31679:10;31640:11;:25;31652:12;:10;:12::i;:::-;-1:-1:-1;;;;;31640:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31640:25:0;;;:34;;;;;;;;;;;:38;:50::i;48067:231::-;48138:4;49088:20;49097:10;49088:8;:20::i;:::-;49080:64;;;;-1:-1:-1;;;49080:64:0;;;;;;;:::i;:::-;47391:16:::1;48158:26;48170:13;:11;:13::i;:::-;48158:7:::0;;:11:::1;:26::i;:::-;:38;48155:82;;;-1:-1:-1::0;48220:5:0::1;48213:12;;48155:82;48249:19;48255:3;48260:7;48249:5;:19::i;39810:202::-:0;39875:18;39886:6;39875:10;:18::i;:::-;39944:60;39959:10;:24;39970:12;:10;:12::i;:::-;-1:-1:-1;;;;;39959:24:0;;;;;;;;;;;;;;-1:-1:-1;39959:24:0;;;;;;;;39997:6;39944:14;:60::i;:::-;39810:202;:::o;40404:104::-;40468:32;40478:10;40490:9;40468;:32::i;38676:49::-;;;;;;;;;;;;;;;:::o;29262:119::-;-1:-1:-1;;;;;29355:18:0;29328:7;29355:18;;;;;;;;;;;;29262:119::o;10848:148::-;10428:12;:10;:12::i;:::-;10418:6;;-1:-1:-1;;;;;10418:6:0;;;:22;;;10410:67;;;;-1:-1:-1;;;10410:67:0;;;;;;;:::i;:::-;10939:6:::1;::::0;10918:40:::1;::::0;10955:1:::1;::::0;-1:-1:-1;;;;;10939:6:0::1;::::0;10918:40:::1;::::0;10955:1;;10918:40:::1;10969:6;:19:::0;;-1:-1:-1;;;;;;10969:19:0::1;::::0;;10848:148::o;43025:1259::-;43133:7;43180:12;43166:11;:26;43158:84;;;;-1:-1:-1;;;43158:84:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43277:23:0;;43255:19;43277:23;;;:14;:23;;;;;;;;43315:17;43311:58;;43356:1;43349:8;;;;;43311:58;-1:-1:-1;;;;;43429:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;43450:16:0;;43429:38;;;;;;;;;:48;;:63;-1:-1:-1;43425:147:0;;-1:-1:-1;;;;;43516:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;43537:16:0;;;;43516:38;;;;;;;;43552:1;43516:44;;;-1:-1:-1;43509:51:0;;43425:147;-1:-1:-1;;;;;43633:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;43629:88:0;;;43704:1;43697:8;;;;;43629:88;43729:12;-1:-1:-1;;43771:16:0;;43798:428;43813:5;43805:13;;:5;:13;;;43798:428;;;43877:1;43860:13;;;43859:19;;;43851:27;;43920:20;;:::i;:::-;-1:-1:-1;;;;;;43943:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;43920:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43990:27;;43986:229;;;44045:8;;;;-1:-1:-1;44038:15:0;;-1:-1:-1;;;;44038:15:0;43986:229;44079:12;;:26;;;-1:-1:-1;44075:140:0;;;44134:6;44126:14;;44075:140;;;44198:1;44189:6;:10;44181:18;;44075:140;43798:428;;;;;-1:-1:-1;;;;;;44243:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;43025:1259:0;;;;:::o;40020:235::-;40106:31;40121:7;40130:6;40106:14;:31::i;:::-;-1:-1:-1;;;;;40207:19:0;;;;;;;:10;:19;;;;;;40192:55;;40207:19;;40240:6;40192:14;:55::i;:::-;40020:235;;:::o;39212:39::-;;;;;;;;;;;;;:::o;10206:79::-;10271:6;;-1:-1:-1;;;;;10271:6:0;10206:79;:::o;28226:87::-;28298:7;28291:14;;;;;;;;-1:-1:-1;;28291:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28265:13;;28291:14;;28298:7;;28291:14;;28298:7;28291:14;;;;;;;;;;;;;;;;;;;;;;;;48308:231;48373:4;10428:12;:10;:12::i;:::-;10418:6;;-1:-1:-1;;;;;10418:6:0;;;:22;;;10410:67;;;;-1:-1:-1;;;10410:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48398:24:0;::::1;48390:74;;;;-1:-1:-1::0;;;48390:74:0::1;;;;;;;:::i;:::-;48492:39;48510:8;48520:10;48492:17;:39::i;32224:269::-:0;32317:4;32334:129;32343:12;:10;:12::i;:::-;32357:7;32366:96;32405:15;32366:96;;;;;;;;;;;;;;;;;:11;:25;32378:12;:10;:12::i;:::-;-1:-1:-1;;;;;32366:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32366:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;29594:175::-;29680:4;29697:42;29707:12;:10;:12::i;:::-;29721:9;29732:6;29697:9;:42::i;48910:129::-;48966:4;48990:41;49013:8;49023:7;48990:22;:41::i;42339:255::-;-1:-1:-1;;;;;42478:23:0;;42431:7;42478:23;;;:14;:23;;;;;;;;42519:16;:67;;42585:1;42519:67;;;-1:-1:-1;;;;;42538:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;42559:16:0;;42538:38;;;;;;;;42574:1;42538:44;;42519:67;42512:74;42339:255;-1:-1:-1;;;42339:255:0:o;40942:1196::-;41135:23;38840:80;41264:6;:4;:6::i;:::-;41248:24;;;;;;41291:12;:10;:12::i;:::-;41330:4;41185:165;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41161:200;;;;;;41135:226;;41374:18;39060:71;41486:9;41514:5;41538:6;41419:140;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41395:175;;;;;;41374:196;;41583:14;41688:15;41722:10;41624:123;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41600:158;;;;;;41583:175;;41771:17;41791:26;41801:6;41809:1;41812;41815;41791:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;41791:26:0;;-1:-1:-1;;41791:26:0;;;-1:-1:-1;;;;;;;41836:23:0;;41828:80;;;;-1:-1:-1;;;41828:80:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41936:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;41927:28;;41919:81;;;;-1:-1:-1;;;41919:81:0;;;;;;;:::i;:::-;42026:6;42019:3;:13;;42011:70;;;;-1:-1:-1;;;42011:70:0;;;;;;;:::i;:::-;42099:31;42109:9;42120;42099;:31::i;:::-;42092:38;;;;40942:1196;;;;;;;:::o;29832:151::-;-1:-1:-1;;;;;29948:18:0;;;29921:7;29948:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29832:151::o;39014:117::-;39060:71;39014:117;:::o;38537:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11151:244::-;10428:12;:10;:12::i;:::-;10418:6;;-1:-1:-1;;;;;10418:6:0;;;:22;;;10410:67;;;;-1:-1:-1;;;10410:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11240:22:0;::::1;11232:73;;;;-1:-1:-1::0;;;11232:73:0::1;;;;;;;:::i;:::-;11342:6;::::0;11321:38:::1;::::0;-1:-1:-1;;;;;11321:38:0;;::::1;::::0;11342:6:::1;::::0;11321:38:::1;::::0;11342:6:::1;::::0;11321:38:::1;11370:6;:17:::0;;-1:-1:-1;;;;;;11370:17:0::1;-1:-1:-1::0;;;;;11370:17:0;;;::::1;::::0;;;::::1;::::0;;11151:244::o;33803:378::-;-1:-1:-1;;;;;33887:21:0;;33879:65;;;;-1:-1:-1;;;33879:65:0;;;;;;;:::i;:::-;33957:49;33986:1;33990:7;33999:6;33957:20;:49::i;:::-;34034:12;;:24;;34051:6;34034:16;:24::i;:::-;34019:12;:39;-1:-1:-1;;;;;34090:18:0;;:9;:18;;;;;;;;;;;:30;;34113:6;34090:22;:30::i;:::-;-1:-1:-1;;;;;34069:18:0;;:9;:18;;;;;;;;;;;:51;;;;34136:37;;34069:18;;:9;34136:37;;;;34166:6;;34136:37;:::i;:::-;;;;;;;;33803:378;;:::o;15130:181::-;15188:7;15220:5;;;15244:6;;;;15236:46;;;;-1:-1:-1;;;15236:46:0;;;;;;;:::i;15594:136::-;15652:7;15679:43;15683:1;15686;15679:43;;;;;;;;;;;;;;;;;:3;:43::i;5908:117::-;5971:7;5998:19;6006:3;5998:7;:19::i;8758:106::-;8846:10;8758:106;:::o;35371:346::-;-1:-1:-1;;;;;35473:19:0;;35465:68;;;;-1:-1:-1;;;35465:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35552:21:0;;35544:68;;;;-1:-1:-1;;;35544:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35625:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;35677:32;;;;;35655:6;;35677:32;:::i;:::-;;;;;;;;35371:346;;;:::o;5429:149::-;5502:4;5526:44;5534:3;-1:-1:-1;;;;;5554:14:0;;5526:7;:44::i;39532:233::-;39639:42;39655:6;39663:9;39674:6;39639:15;:42::i;:::-;-1:-1:-1;;;;;39707:18:0;;;;;;;:10;:18;;;;;;;39727:21;;;;;;;;39692:65;;39707:18;;;;39727:21;39750:6;39692:14;:65::i;:::-;39532:233;;;:::o;16033:192::-;16119:7;16155:12;16147:6;;;;16139:29;;;;-1:-1:-1;;;16139:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;16191:5:0;;;16033:192::o;39293:229::-;39378:28;39390:7;39399:6;39378:11;:28::i;:::-;-1:-1:-1;;;;;39486:19:0;;;39482:1;39486:19;;;:10;:19;;;;;;39459:55;;39486:19;39507:6;39459:14;:55::i;37321:91::-;37377:27;37383:12;:10;:12::i;:::-;37397:6;37377:5;:27::i;44741:947::-;44847:6;-1:-1:-1;;;;;44837:16:0;:6;-1:-1:-1;;;;;44837:16:0;;;:30;;;;;44866:1;44857:6;:10;44837:30;44833:848;;;-1:-1:-1;;;;;44888:20:0;;;44884:385;;-1:-1:-1;;;;;44996:22:0;;44977:16;44996:22;;;:14;:22;;;;;;;;;45057:13;:60;;45116:1;45057:60;;;-1:-1:-1;;;;;45073:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;45093:13:0;;45073:34;;;;;;;;45105:1;45073:40;;45057:60;45037:80;-1:-1:-1;45136:17:0;45156:21;45037:80;45170:6;45156:13;:21::i;:::-;45136:41;;45196:57;45213:6;45221:9;45232;45243;45196:16;:57::i;:::-;44884:385;;;;-1:-1:-1;;;;;45289:20:0;;;45285:385;;-1:-1:-1;;;;;45397:22:0;;45378:16;45397:22;;;:14;:22;;;;;;;;;45458:13;:60;;45517:1;45458:60;;;-1:-1:-1;;;;;45474:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;45494:13:0;;45474:34;;;;;;;;45506:1;45474:40;;45458:60;45438:80;-1:-1:-1;45537:17:0;45557:21;45438:80;45571:6;45557:13;:21::i;:::-;45537:41;;45597:57;45614:6;45622:9;45633;45644;45597:16;:57::i;44292:441::-;-1:-1:-1;;;;;44409:21:0;;;44383:23;44409:21;;;:10;:21;;;;;;;;;;44468:20;44420:9;44468;:20::i;:::-;-1:-1:-1;;;;;44547:21:0;;;;;;;:10;:21;;;;;:33;;-1:-1:-1;;;;;;44547:33:0;;;;;;;;;;44441:47;-1:-1:-1;44593:60:0;44608:15;44547:33;44441:47;44593:14;:60::i;:::-;44715:9;-1:-1:-1;;;;;44671:54:0;44698:15;-1:-1:-1;;;;;44671:54:0;44687:9;-1:-1:-1;;;;;44671:54:0;;;;;;;;;;;44292:441;;;;:::o;37731:295::-;37808:26;37837:84;37874:6;37837:84;;;;;;;;;;;;;;;;;:32;37847:7;37856:12;:10;:12::i;37837:32::-;:36;:84;:36;:84::i;:::-;37808:113;;37934:51;37943:7;37952:12;:10;:12::i;:::-;37966:18;37934:8;:51::i;:::-;37996:22;38002:7;38011:6;37996:5;:22::i;5110:143::-;5180:4;5204:41;5209:3;-1:-1:-1;;;;;5229:14:0;;5204:4;:41::i;5664:158::-;5744:4;5768:46;5778:3;-1:-1:-1;;;;;5798:14:0;;5768:9;:46::i;46583:155::-;46693:9;46583:155;:::o;4199:109::-;4282:18;;4199:109::o;2354:1544::-;2420:4;2559:19;;;:12;;;:19;;;;;;2595:15;;2591:1300;;3030:18;;-1:-1:-1;;2981:14:0;;;;3030:22;;;;2957:21;;3030:3;;:22;;3317;;;;;;;;;;;;;;3297:42;;3463:9;3434:3;:11;;3446:13;3434:26;;;;;;;;;;;;;;;;;;;:38;;;;3540:23;;;3582:1;3540:12;;;:23;;;;;;3566:17;;;3540:43;;3692:17;;3540:3;;3692:17;;;;;;;;;;;;;;;;;;;;;;3787:3;:12;;:19;3800:5;3787:19;;;;;;;;;;;3780:26;;;3830:4;3823:11;;;;;;;;2591:1300;3874:5;3867:12;;;;;32983:539;-1:-1:-1;;;;;33089:20:0;;33081:70;;;;-1:-1:-1;;;33081:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33170:23:0;;33162:71;;;;-1:-1:-1;;;33162:71:0;;;;;;;:::i;:::-;33246:47;33267:6;33275:9;33286:6;33246:20;:47::i;:::-;33326:71;33348:6;33326:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33326:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;33306:17:0;;;:9;:17;;;;;;;;;;;:91;;;;33431:20;;;;;;;:32;;33456:6;33431:24;:32::i;:::-;-1:-1:-1;;;;;33408:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;33479:35;;;;;;;;;;33507:6;;33479:35;:::i;34513:418::-;-1:-1:-1;;;;;34597:21:0;;34589:67;;;;-1:-1:-1;;;34589:67:0;;;;;;;:::i;:::-;34669:49;34690:7;34707:1;34711:6;34669:20;:49::i;:::-;34752:68;34775:6;34752:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34752:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;34731:18:0;;:9;:18;;;;;;;;;;:89;34846:12;;:24;;34863:6;34846:16;:24::i;:::-;34831:12;:39;34886:37;;34912:1;;-1:-1:-1;;;;;34886:37:0;;;;;;;34916:6;;34886:37;:::i;45696:710::-;45875:18;45896:82;45903:12;45896:82;;;;;;;;;;;;;;;;;:6;:82::i;:::-;45875:103;;46010:1;45995:12;:16;;;:85;;;;-1:-1:-1;;;;;;46015:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;46038:16:0;;46015:40;;;;;;;;;:50;:65;;;:50;;:65;45995:85;45991:339;;;-1:-1:-1;;;;;46097:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;46120:16:0;;46097:40;;;;;;;;46135:1;46097:46;:57;;;45991:339;;;46226:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46187:22:0;;-1:-1:-1;46187:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;46187:72:0;;;;;;;;;;;;;46274:25;;;:14;:25;;;;;;:44;;46302:16;;;46274:44;;;;;;;;;;45991:339;46368:9;-1:-1:-1;;;;;46347:51:0;;46379:8;46389;46347:51;;;;;;;:::i;:::-;;;;;;;;45696:710;;;;;:::o;1764:414::-;1827:4;1849:21;1859:3;1864:5;1849:9;:21::i;:::-;1844:327;;-1:-1:-1;1887:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;2070:18;;2048:19;;;:12;;;:19;;;;;;:40;;;;2103:11;;1844:327;-1:-1:-1;2154:5:0;2147:12;;3984:129;4057:4;4081:19;;;:12;;;;;:19;;;;;;:24;;;3984:129::o;46414:161::-;46489:6;46527:12;46520:5;46516:9;;46508:32;;;;-1:-1:-1;;;46508:32:0;;;;;;;;:::i;:::-;-1:-1:-1;46565:1:0;;46414:161;-1:-1:-1;;46414:161:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o;5:130::-;72:20;;-1:-1;;;;;23502:54;;24352:35;;24342:2;;24401:1;;24391:12;684:241;;788:2;776:9;767:7;763:23;759:32;756:2;;;-1:-1;;794:12;756:2;856:53;901:7;877:22;856:53;:::i;932:366::-;;;1053:2;1041:9;1032:7;1028:23;1024:32;1021:2;;;-1:-1;;1059:12;1021:2;1121:53;1166:7;1142:22;1121:53;:::i;:::-;1111:63;;1229:53;1274:7;1211:2;1254:9;1250:22;1229:53;:::i;:::-;1219:63;;1015:283;;;;;:::o;1305:491::-;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;-1:-1;;1449:12;1411:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1501:63;-1:-1;1601:2;1640:22;;72:20;97:33;72:20;97:33;:::i;:::-;1405:391;;1609:63;;-1:-1;;;1709:2;1748:22;;;;346:20;;1405:391::o;1803:366::-;;;1924:2;1912:9;1903:7;1899:23;1895:32;1892:2;;;-1:-1;;1930:12;1892:2;1992:53;2037:7;2013:22;1992:53;:::i;:::-;1982:63;2082:2;2121:22;;;;346:20;;-1:-1;;;1886:283::o;2176:865::-;;;;;;;2363:3;2351:9;2342:7;2338:23;2334:33;2331:2;;;-1:-1;;2370:12;2331:2;2432:53;2477:7;2453:22;2432:53;:::i;:::-;2422:63;;2522:2;2565:9;2561:22;346:20;2530:63;;2630:2;2673:9;2669:22;346:20;2638:63;;2738:2;2779:9;2775:22;616:20;23813:4;24870:5;23802:16;24847:5;24844:33;24834:2;;-1:-1;;24881:12;24834:2;2325:716;;;;-1:-1;2325:716;;2844:3;2884:22;;209:20;;2953:3;2993:22;;;209:20;;-1:-1;2325:716;-1:-1;;2325:716::o;3048:364::-;;;3168:2;3156:9;3147:7;3143:23;3139:32;3136:2;;;-1:-1;;3174:12;3136:2;3236:53;3281:7;3257:22;3236:53;:::i;:::-;3226:63;;3326:2;3368:9;3364:22;482:20;23719:10;24750:5;23708:22;24726:5;24723:34;24713:2;;-1:-1;;24761:12;24713:2;3334:62;;;;3130:282;;;;;:::o;3419:241::-;;3523:2;3511:9;3502:7;3498:23;3494:32;3491:2;;;-1:-1;;3529:12;3491:2;-1:-1;346:20;;3485:175;-1:-1;3485:175::o;11258:659::-;-1:-1;;;6343:87;;6328:1;6449:11;;3969:37;;;;11769:12;;;3969:37;11880:12;;;11503:414::o;11924:222::-;-1:-1;;;;;23502:54;;;;3738:37;;12051:2;12036:18;;12022:124::o;12153:210::-;23335:13;;23328:21;3852:34;;12274:2;12259:18;;12245:118::o;12370:222::-;3969:37;;;12497:2;12482:18;;12468:124::o;12599:556::-;3969:37;;;-1:-1;;;;;23502:54;;;;12975:2;12960:18;;3738:37;13058:2;13043:18;;3969:37;13141:2;13126:18;;3969:37;12810:3;12795:19;;12781:374::o;13162:556::-;3969:37;;;13538:2;13523:18;;3969:37;;;;13621:2;13606:18;;3969:37;-1:-1;;;;;23502:54;13704:2;13689:18;;3738:37;13373:3;13358:19;;13344:374::o;13725:548::-;3969:37;;;23813:4;23802:16;;;;14093:2;14078:18;;11211:35;14176:2;14161:18;;3969:37;14259:2;14244:18;;3969:37;13932:3;13917:19;;13903:370::o;14280:310::-;;14427:2;;14448:17;14441:47;4322:5;22804:12;22961:6;14427:2;14416:9;14412:18;22949:19;-1:-1;23903:101;23917:6;23914:1;23911:13;23903:101;;;23984:11;;;;;23978:18;23965:11;;;22989:14;23965:11;23958:39;23932:10;;23903:101;;;24019:6;24016:1;24013:13;24010:2;;;-1:-1;22989:14;24075:6;14416:9;24066:16;;24059:27;24010:2;-1:-1;24272:7;24256:14;-1:-1;;24252:28;4480:39;;;;22989:14;4480:39;;14398:192;-1:-1;;;14398:192::o;14597:416::-;14797:2;14811:47;;;4756:2;14782:18;;;22949:19;4792:34;22989:14;;;4772:55;-1:-1;;;4847:12;;;4840:37;4896:12;;;14768:245::o;15020:416::-;15220:2;15234:47;;;5147:2;15205:18;;;22949:19;5183:34;22989:14;;;5163:55;-1:-1;;;5238:12;;;5231:27;5277:12;;;15191:245::o;15443:416::-;15643:2;15657:47;;;5528:2;15628:18;;;22949:19;5564:34;22989:14;;;5544:55;-1:-1;;;5619:12;;;5612:30;5661:12;;;15614:245::o;15866:416::-;16066:2;16080:47;;;5912:2;16051:18;;;22949:19;5948:34;22989:14;;;5928:55;-1:-1;;;6003:12;;;5996:26;6041:12;;;16037:245::o;16289:416::-;16489:2;16503:47;;;6699:2;16474:18;;;22949:19;6735:29;22989:14;;;6715:50;6784:12;;;16460:245::o;16712:416::-;16912:2;16926:47;;;7035:2;16897:18;;;22949:19;7071:34;22989:14;;;7051:55;-1:-1;;;7126:12;;;7119:29;7167:12;;;16883:245::o;17135:416::-;17335:2;17349:47;;;7418:2;17320:18;;;22949:19;7454:34;22989:14;;;7434:55;-1:-1;;;7509:12;;;7502:29;7550:12;;;17306:245::o;17558:416::-;17758:2;17772:47;;;7801:2;17743:18;;;22949:19;7837:33;22989:14;;;7817:54;7890:12;;;17729:245::o;17981:416::-;18181:2;18195:47;;;18166:18;;;22949:19;8177:34;22989:14;;;8157:55;8231:12;;;18152:245::o;18404:416::-;18604:2;18618:47;;;8482:2;18589:18;;;22949:19;8518:34;22989:14;;;8498:55;-1:-1;;;8573:12;;;8566:25;8610:12;;;18575:245::o;18827:416::-;19027:2;19041:47;;;8861:2;19012:18;;;22949:19;8897:34;22989:14;;;8877:55;-1:-1;;;8952:12;;;8945:29;8993:12;;;18998:245::o;19250:416::-;19450:2;19464:47;;;9244:2;19435:18;;;22949:19;9280:34;22989:14;;;9260:55;-1:-1;;;9335:12;;;9328:28;9375:12;;;19421:245::o;19673:416::-;19873:2;19887:47;;;9626:2;19858:18;;;22949:19;9662:34;22989:14;;;9642:55;-1:-1;;;9717:12;;;9710:36;9765:12;;;19844:245::o;20096:416::-;20296:2;20310:47;;;10016:2;20281:18;;;22949:19;10052:34;22989:14;;;10032:55;-1:-1;;;10107:12;;;10100:32;10151:12;;;20267:245::o;20519:416::-;20719:2;20733:47;;;10402:2;20704:18;;;22949:19;10438:33;22989:14;;;10418:54;10491:12;;;20690:245::o;20942:416::-;21142:2;21156:47;;;10742:2;21127:18;;;22949:19;10778:34;22989:14;;;10758:55;-1:-1;;;10833:12;;;10826:36;10881:12;;;21113:245::o;21594:333::-;3969:37;;;21913:2;21898:18;;3969:37;21749:2;21734:18;;21720:207::o;21934:218::-;23719:10;23708:22;;;;11096:36;;22059:2;22044:18;;22030:122::o;22159:329::-;23719:10;23708:22;;;;11096:36;;22474:2;22459:18;;3969:37;22312:2;22297:18;;22283:205::o;22495:214::-;23813:4;23802:16;;;;11211:35;;22618:2;22603:18;;22589:120::o;24293:117::-;-1:-1;;;;;23502:54;;24352:35;;24342:2;;24401:1;;24391:12
Swarm Source
ipfs://0253eaac4fb4027a8baeea687cf4d9a59b16f3e0ef465c54a24badc50ef7d5bc
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.